Steven Vlach / 1-WireLib
Revision:
1:dcf2f8359398
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Headers/owTemp.h	Wed Dec 08 21:23:21 2010 +0000
@@ -0,0 +1,43 @@
+
+
+
+#ifndef MBED_1WIRETEMP_H
+#define MBED_1WIRETEMP_H
+
+
+
+/** An interface for the Dallas 1-wire temperature buttons, the DS1920
+ *
+ * @code
+ * #include "mbed.h"
+ * #include "1-wiretemp.h"
+ *
+ * //  TODO  NokiaLCD lcd(p5, p7, p8, p9); // mosi, sclk, cs, rst
+ *
+ * int main() {
+ *     lcd.printf("Hello World!");
+ * }
+ * @endcode
+ */
+class owTemp {
+
+
+
+public:
+
+    owTemp ( );
+
+
+    void Maingettemp( void );
+
+   
+protected:
+
+private:
+
+ 
+};
+
+#endif
+
+