温度センサ

Dependencies:   TextLCD mbed

Fork of temp_LCD by toshio masuda

main.cpp

Committer:
MasudaToshio
Date:
2013-05-23
Revision:
0:0d5de68f4483

File content as of revision 0:0d5de68f4483:

#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;
}