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

Revision:
0:521ba375aa0f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mylib/ThermistorPack/ThermistorLM60.h	Mon Aug 06 12:37:59 2012 +0000
@@ -0,0 +1,24 @@
+/**
+ * Thermistor interface driver. (Version 0.0.1)
+ *
+ * Copyright (C) 2010 Shinichiro Nakamura (CuBeatSystems)
+ * http://shinta.main.jp/
+ */
+
+#ifndef _THERMISTOR_LM60_H_
+#define _THERMISTOR_LM60_H_
+
+#include <mbed.h>
+
+#include "Thermistor.h"
+
+class ThermistorLM60 : public Thermistor {
+public:
+    explicit ThermistorLM60(PinName pin);
+    virtual ~ThermistorLM60();
+    virtual double read();
+private:
+    AnalogIn analogInput;
+};
+
+#endif