StarBoard Orange - Example application No.1 GoogleChartLogger with StarBoard Orange

Dependencies:   EthernetNetIf mbed

Revision:
0:77d8b45a8f42
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Sensor/Sensor.h	Wed Aug 11 01:53:35 2010 +0000
@@ -0,0 +1,18 @@
+/**
+ * Sensor interface driver. (Version 0.0.1)
+ *
+ * Copyright (C) 2010 Shinichiro Nakamura (CuBeatSystems)
+ * http://shinta.main.jp/
+ */
+
+#ifndef _SENSOR_H_
+#define _SENSOR_H_
+
+class Sensor {
+public:
+    Sensor();
+    virtual ~Sensor();
+    virtual double read() = 0;
+};
+
+#endif