Hello code for "Switch Science mbed LPC824"

Dependencies:   mbed

Fork of SwitchSciencembedLPC824_test by Mako SHIMURA

main.cpp

Committer:
okano
Date:
2014-11-03
Revision:
1:3c29c04cfeb2
Parent:
0:f947ed831c67
Child:
2:482581f76a1d

File content as of revision 1:3c29c04cfeb2:

#include "mbed.h"
#include "test_LM75B.h"

test_LM75B  temp( p28, p27 );

int main()
{
    while(1) {
        printf( "temp = %7.3f\r\n", temp.read() );
        wait( 1 );
    }
}