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.
Fork of Nucleo_DHT11_Example by
Diff: main.cpp
- Revision:
- 0:dbffab632178
- Child:
- 1:85754e990223
diff -r 000000000000 -r dbffab632178 main.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/main.cpp Wed Apr 05 14:04:25 2017 +0000 @@ -0,0 +1,26 @@ +#include "mbed.h" +#include "DHT11.h" + +//Tested with success on STM32 Nucleo L476 + +DigitalIn mybutton(USER_BUTTON); +Serial pc(SERIAL_TX, SERIAL_RX); + +DHT11 dht(A1); + + +int main() { + pc.printf("DHT11 Reader example\n"); + while(1) { + if(mybutton == 0){ + if(dht.readData() < 0){ + pc.printf("Error while reading\n\r"); + } + else{ + pc.printf("Temperature:%d\n\r",dht.getTemperature()); + pc.printf("Humidity:%d\n\r",dht.getHumidity()); + } + + } + } +}