Viswanath Gowda
/
Temp_Humid
HUMIDITY TEMPERATURE HDC1080 NUCLEO
Revision 7:fbe99e580885, committed 2018-10-25
- Comitter:
- Viswanath
- Date:
- Thu Oct 25 10:18:23 2018 +0000
- Parent:
- 6:4e6ec83d3c83
- Commit message:
- Temperature Humidity Using HDC1080
Changed in this revision
HDC1080.lib | Show annotated file Show diff for this revision Revisions of this file |
main.cpp | Show annotated file Show diff for this revision Revisions of this file |
diff -r 4e6ec83d3c83 -r fbe99e580885 HDC1080.lib --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/HDC1080.lib Thu Oct 25 10:18:23 2018 +0000 @@ -0,0 +1,1 @@ +http://os.mbed.com/users/shivanandgowdakr/code/HDC1080/#fdb750cc9ca8
diff -r 4e6ec83d3c83 -r fbe99e580885 main.cpp --- 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