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:
2:482581f76a1d
Parent:
1:3c29c04cfeb2
Child:
3:863cf79582a4
Child:
5:a1251609ee7f

File content as of revision 2:482581f76a1d:

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

test_LM75B  temp( p28, p27 );

int main()
{
    float   t;

    while(1) {
        t   = temp;
        printf( "temp = %7.3f\r\n", t );
        wait( 1 );
    }
}