DTH22, RHT03 and DTH11 sensors can be read with this code!

This DHT22 sensor reading class works with the mbed LPC1768. The code is time dependent but has been tested with mbed LPC1768 currently. I may add timing defines for other platforms if needed but i currently only use the mbed LPC1768 platform. Please feel free to import the code and modify it for other platforms if needed. BITREADTIME define and STARTTRANSBITSIZE define would be the main items to change for any other platform to operate properly. BITREADTIME is the us time value used in a basic look for a wait value to get next reading. This may work simply on other platforms at other system speeds but it may not. A more general solution maybe to add another calculation that generates these defines based on some platform speed value. At this writing the code performs very well with little to no read failures(in fact i have not seen a read failure yet in testing). The issues that i have seen with other classes and this sensor is the fact that the sensor always produces the correct Temperature and Humidity output values on the io pin but the class reading these values miss many reading causing errors. This class avoids this because it reads the output from the DTH22 sensor completely and then processes the values from a run length bit measurement perspective that i feel is far more accurate. Anyways the results speak for them self.

I have now added a member function for reading the DTH11 sensor as it is read the same way as the DTH22 sensor. The only difference is the final use of the retrieved bytes from the sensor for calculating the temperature and humidity. Note the DTH11 sensor has less range and less accuracy but it also can be found for less money!

Revision:
1:d41fcc541836
Parent:
0:92ba381d5432
Child:
2:4d307eacba27
--- a/DTH22.h	Sun Dec 01 23:21:20 2013 +0000
+++ b/DTH22.h	Mon Dec 02 08:48:29 2013 +0000
@@ -32,7 +32,7 @@
 
 #include "mbed.h"
 
-/** DTH22 Digital Temperature Humidity class 
+/** DTH22 Digital Temperature Humidity class
  *
  * Example:
  * @code
@@ -41,7 +41,7 @@
  * #include "DTH22_RHT03.h"
  * int main()
  * {
- * 
+ *
  *  int temp ;
  *  int humidity;
  *  int error ;
@@ -57,12 +57,16 @@
  * @endcode
  */
 
+#define MAXRAWDATA 1300
+#define BITREADTIME 3
+#define MAXBITCOUNT 30
+
 class DTH22
 {
 public:
     /** Create object connected to DTH22 pin ( remember io pin needs pull up resister)
         *
-        * Ensure the pull up resistors are used on this pin.  
+        * Ensure the pull up resistors are used on this pin.
         * Any pin can be used but the pin can only be used on one DTH22 sensor and nothing else.
         *
         * @param sda pin that BMP180 connected to (p9 or p28 as defined on LPC1768)
@@ -71,22 +75,24 @@
     DTH22(PinName DATAsignal );    // Constructor
 
     ~DTH22();                      // Destructor
-    
-    /** Read Temperature and Humidity 
+
+    /** Read Temperature and Humidity
     *
-    * This function will return when it has readings.  
+    * This function will return when it has readings.
     *
     * @param temp the temperature returned in this variable. Degrees celsius with one decimal so 253 is 25.3 C.
     * @param humidity the humidity is returned in this variable. Humidity is in rH with one decimal so 288 is 28.8 rH.
     * @param returns 0 for no errors.  Any other number is some type of communication error and data might not be valid!
     */
     int getTH(int *temp,int *humidity);    // get both temperature and pressure fully compensated values! Note this only returns when measurements are complete
-    void testit(bool *data);
-
+    void getraw(int *data);
+    int currentpin();
+    
 protected:
     DigitalInOut DTH22pin;
-    bool rawdata[1500]; 
-
+    bool rawdata[MAXRAWDATA];
+    
+    int transistionCount(int index);
 };
 
 #endif
\ No newline at end of file