温度センサのプログラム(PCに表示)

Dependencies:   mbed

tmp.cpp

Committer:
MIKUNAGATA
Date:
2019-11-16
Revision:
0:4b059e3c0849

File content as of revision 0:4b059e3c0849:

#include "mbed.h"
#include "TMP102.h"
 
TMP102 temp(p9, p10, 0x91);
 
int main() {
    
        printf("Temp: %f\n\r", temp.read());
    
}