kiban honpo
/
TEMP_XBEE
温度センサ値 XBee送信
Fork of TEMP_XBEE by
Diff: main.cpp
- Revision:
- 0:0d5de68f4483
- Child:
- 1:8cbb7db0ff4b
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/main.cpp Thu May 23 09:40:59 2013 +0000 @@ -0,0 +1,23 @@ +#include "mbed.h" +#include "TextLCD.h" + +AnalogIn LM60(p15); +TextLCD lcd(p24, p26, p27, p28, p29, p30); + +///////////////////////////////////////////////////// +// main +///////////////////////////////////////////////////// +int main(void) { + float a_in , tempC ; + lcd.cls(); + + while(1) { + a_in = (LM60); + tempC = ( ( a_in * 3.3 ) - 0.424 ) * 160.0 ; + lcd.locate(0,0); + lcd.printf("%5.2F C %5.3F V ", tempC, a_in); + wait(.5); + } + + return 0; +} \ No newline at end of file