based on existing code, added support for max31855 and i2c display

Dependencies:   MAX31855 mbed

Revision:
1:e7ce82863fe9
Parent:
0:1f9875adab5d
--- a/main.cpp	Thu Jan 16 21:48:38 2014 +0000
+++ b/main.cpp	Fri Jan 17 15:58:39 2014 +0000
@@ -86,11 +86,11 @@
 #define COOLING         7
 
 void heater_off(void) {
-    HeaterOutput = 0;
+    HeaterOutput.write(0);
 }
 
 void heater_on(void) {
-    HeaterOutput = 1;
+    HeaterOutput.write(1);
 }
 
 //=======================================================================