A simple serial test program for the LM75B library.

Dependencies:   LM75B mbed

main.cpp

Committer:
neilt6
Date:
2013-08-28
Revision:
1:94af70628683
Parent:
0:578bc3c56500
Child:
2:a427f29fdfa0

File content as of revision 1:94af70628683:

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

LM75B sensor(p28, p27, LM75B::ADDRESS_0);

int main()
{
    //Try to open the LM75B
    if (sensor.open()) {
        printf("Device detected!\n");

        while (1) {
            //Read the temperature
            float temp = sensor.temp();

            //Print the temperature
            printf("Temp = %.3f\n", temp);

            //Sleep for 0.5 seconds
            wait(0.5);
        }
    } else {
        printf("Device not detected!\n");
    }
}