Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
DHT22.h
00001 #ifndef MBED_DHT22_H 00002 #define MBED_DHT22_H 00003 00004 #include "mbed.h" 00005 00006 class DHT22 { 00007 private: 00008 int _temperature,_humidity; 00009 PinName _data_pin; 00010 public: 00011 DHT22(PinName); 00012 bool sample(); 00013 int getTemperature(); 00014 int getHumidity(); 00015 }; 00016 00017 #endif
Generated on Sun Aug 7 2022 04:19:43 by
1.7.2