Donatien Garnier / Mbed 2 deprecated TMP102HelloWorld

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 #include "mbed.h"
00002 
00003 #include "TMP102.h"
00004 
00005 TMP102 temperature(p9, p10, 0x90); //A0 pin is connected to ground
00006 
00007 int main()
00008 {
00009   printf("Temperature: %f\n", temperature.read());
00010   return 0;
00011 }