Viswanath Gowda
/
Temp_Humid
HUMIDITY TEMPERATURE HDC1080 NUCLEO
Diff: main.cpp
- Revision:
- 7:fbe99e580885
- Parent:
- 2:b60cb847489c
--- a/main.cpp Wed Sep 13 11:30:50 2017 +0000 +++ b/main.cpp Thu Oct 25 10:18:23 2018 +0000 @@ -1,12 +1,13 @@ #include "mbed.h" - -DigitalOut myled(LED1); - -int main() { - while(1) { - myled = 1; // LED is ON - wait(0.2); // 200 ms - myled = 0; // LED is OFF - wait(1.0); // 1 sec - } -} +#include "HDC1080.h" + Serial pc(USBTX,USBRX); +HDC1080 sensor(PB_9,PB_8); +int main() +{ + float Tval=sensor.readTemperature(); + pc.printf("Temperature is :%f",Tval); + + Tval=sensor.readHumidity(); + pc.printf("Humidity is :%f",Tval); + + } \ No newline at end of file