Hi. This is the feed program for Cosm. (The previous name of the services is Pachube.)

Dependencies:   mbed ThermistorPack Pachube ConfigFile EthernetNetIf TextLCD HTTPClient_ToBeRemoved FatFileSystem SDFileSystem

mylib/ThermistorPack/ThermistorLM35.h

Committer:
shintamainjp
Date:
2012-08-06
Revision:
0:521ba375aa0f

File content as of revision 0:521ba375aa0f:

/**
 * Thermistor interface driver. (Version 0.0.1)
 *
 * Copyright (C) 2010 Shinichiro Nakamura (CuBeatSystems)
 * http://shinta.main.jp/
 */

#ifndef _THERMISTOR_LM35_H_
#define _THERMISTOR_LM35_H_

#include <mbed.h>

#include "Thermistor.h"

class ThermistorLM35 : public Thermistor {
public:
    explicit ThermistorLM35(PinName pin);
    virtual ~ThermistorLM35();
    virtual double read();
private:
    AnalogIn analogInput;
};

#endif