Temperature display using FRDM KL25Z and Mbed Application Shield

Dependencies:   C12832 LM75B mbed

Fork of app-shield-LM75B by Chris Styles

Revision:
9:1e3bf714ae86
Parent:
8:e0f3f151c3cc
--- 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);
     }
 }