Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
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 );
}
}