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.
Dependencies: mbed
Dht11 Class Reference
Class for the DHT11 sensor. More...
#include <Dht11.h>
Public Member Functions | |
| Dht11 (PinName const &p) | |
| Construct the sensor object. | |
| int | read () |
| Update the humidity and temp from the sensor. | |
| float | getFahrenheit () |
| Get the temp(f) from the saved object. | |
| int | getCelsius () |
| Get the temp(c) from the saved object. | |
| int | getHumidity () |
| Get the humidity from the saved object. | |
Detailed Description
Class for the DHT11 sensor.
Example:
#include "mbed.h" #include "Dht11.h" Serial pc(USBTX, USBRX); Dht11 sensor(PTD7); int main() { sensor.read() pc.printf("T: %f, H: %d\r\n", sensor.getFahrenheit(), sensor.getHumidity()); }
Definition at line 26 of file Dht11.h.
Constructor & Destructor Documentation
| Dht11 | ( | PinName const & | p ) |
Member Function Documentation
| int getCelsius | ( | ) |
| float getFahrenheit | ( | ) |
| int getHumidity | ( | ) |
Generated on Wed Jul 20 2022 17:32:05 by
1.7.2