エレキジャック Web版 mbedで初めてのマイコン開発 LCDを極める!<3/5> 温度センサ(LM35)を使ってLCDに温度を表示するプログラムです。 http://www.eleki-jack.com/arm/2010/11/mbed-lcd-2.html

Dependencies:   TextLCD mbed

main.cpp

Committer:
sunifu
Date:
2011-03-02
Revision:
0:8c1e9715121a

File content as of revision 0:8c1e9715121a:

#include "mbed.h"
#include "TextLCD.h"

TextLCD lcd(p24, p26, p27, p28, p29, p30);
AnalogIn temp_in(p20);

int main() {
    float r_temp, temp;
    while(1){
        temp = temp_in ;    
        r_temp = temp *3.3 * 100.0  ;
        //r_temp =  temp_in * 55.0  ; 
        lcd.cls();
        lcd.locate(0,0);
        lcd.printf("RoomTemp %5.2f",r_temp);
        lcd.locate(14,0);
        lcd.putc(0xDf);
        lcd.putc(0x43);
        
        lcd.locate(0,1);
        lcd.printf("%5.3f %5.3f[V]",temp, temp*3.3);
        wait(5);
    }
}