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

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Thermistor.h Source File

Thermistor.h

00001 /**
00002  * Thermistor interface driver. (Version 0.0.1)
00003  *
00004  * Copyright (C) 2010 Shinichiro Nakamura (CuBeatSystems)
00005  * http://shinta.main.jp/
00006  */
00007 
00008 #ifndef _THERMISTOR_H_
00009 #define _THERMISTOR_H_
00010 
00011 class Thermistor {
00012 public:
00013     Thermistor();
00014     virtual ~Thermistor();
00015     virtual double read() = 0;
00016 };
00017 
00018 #endif