Temperature display using FRDM KL25Z and Mbed Application Shield
Dependencies: C12832 LM75B mbed
Fork of app-shield-LM75B by
Revision 9:1e3bf714ae86, committed 2016-03-06
- Comitter:
- vinithias
- Date:
- Sun Mar 06 11:20:09 2016 +0000
- Parent:
- 8:e0f3f151c3cc
- Commit message:
- IC
Changed in this revision
main.cpp | Show annotated file Show diff for this revision Revisions of this file |
diff -r e0f3f151c3cc -r 1e3bf714ae86 main.cpp --- a/main.cpp Fri Aug 01 14:29:15 2014 +0000 +++ b/main.cpp Sun Mar 06 11:20:09 2016 +0000 @@ -11,7 +11,7 @@ while (1) { lcd.cls(); lcd.locate(0,3); - lcd.printf("Temp = %.1f\n", sensor.temp()); + lcd.printf(" Temperature = %.1f\n", sensor.temp()); wait(1.0); } }