Dallas DS18B20 OneWire sensor library

Dependencies:   LinkedList

Dependents:   B-SMART_V15_release

Fork of DS1820 by Erik -

Revision:
14:4760669f5f5e
Parent:
11:1a3c3002b50c
--- a/DS1820.h	Mon Mar 09 20:41:08 2015 +0000
+++ b/DS1820.h	Sun Jan 10 22:35:20 2016 +0000
@@ -105,8 +105,11 @@
       * @param a number between 9 and 12 to specify resolution
       * @returns true if successful
       */ 
-    bool setResolution(unsigned int resolution);       
-
+    bool setResolution(unsigned int resolution);
+    
+    char *getAddress();
+    
+    static LinkedList<node> probes;
 private:
     bool _parasite_power;
     bool _power_mosfet;
@@ -134,7 +137,7 @@
     char _ROM[8];
     char RAM[9];
     
-    static LinkedList<node> probes;
+//    static LinkedList<node> probes;
 };