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.
main.cpp
00001 #include "mbed.h" 00002 #include "HDC1080.h" 00003 Serial pc(USBTX,USBRX); 00004 HDC1080 sensor(PB_9,PB_8); 00005 int main() 00006 { 00007 float Tval=sensor.readTemperature(); 00008 pc.printf("Temperature is :%f",Tval); 00009 00010 Tval=sensor.readHumidity(); 00011 pc.printf("Humidity is :%f",Tval); 00012 00013 }
Generated on Tue Jul 12 2022 23:03:10 by
1.7.2