Temperature display using FRDM KL25Z and Mbed Application Shield

Dependencies:   C12832 LM75B mbed

Fork of app-shield-LM75B by Chris Styles

Files at this revision

API Documentation at this revision

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
--- 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);
     }
 }