This demo uses the application board’s I2C temperature sensor to measure the board’s temperature. Pot 1 (blue dial near LCD) is used to adjust a temperature alarm setting. Alarm uses speaker and RGB LED.

Dependencies:   C12832_lcd LM75B mbed

Fork of app-board-LM75B by Chris Styles

main.cpp

Committer:
chris
Date:
2012-10-26
Revision:
3:4d612f16ad84
Parent:
2:9e757151de9b
Child:
4:d9371152f77a

File content as of revision 3:4d612f16ad84:

#include "mbed.h"
#include "LM75B.h"
#include "C12832_lcd.h"

C12832_LCD lcd;
LM75B tmp(p28,p27);

int main ()
{

    while (1) {
        lcd.cls();
        lcd.locate(0,3);
        lcd.printf("%.2f\n",tmp.read());
        wait(1.0);
    }

}