CanSat-D-2019 / Mbed 2 deprecated mbed_tmp102

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers tmp.cpp Source File

tmp.cpp

00001 #include "mbed.h"
00002 #include "TMP102.h"
00003  
00004 TMP102 temp(p9, p10, 0x91);
00005  
00006 int main() {
00007     
00008         printf("Temp: %f\n\r", temp.read());
00009     
00010 }