An example program for the mbed application board that uses the LM75B to measure the ambient temperature

Dependencies:   mbed C12832 LM75B

Fork of LM75B_test by Tedd OKANO

main.cpp

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

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

}