Program for the water play project for the course Software Testing Practical 2016 given at the VU University

Dependencies:   mbed DRV88255 TextLCD Ping mbed-rtos

Revision:
35:c9261391a995
Parent:
13:1323e2c0b697
Child:
53:4e3ee54157ad
--- a/TemperatureController.h	Tue Jun 14 11:17:06 2016 +0000
+++ b/TemperatureController.h	Tue Jun 14 15:31:30 2016 +0000
@@ -2,7 +2,6 @@
 #define __TEMPERATURECONTROLLER_H__
 
 #include "mbed.h"
-#include "stdio.h"
 
 #include "SensorController.h"
 
@@ -17,25 +16,16 @@
         virtual void update();
         
         virtual std::string get_name();
-        
-        bool is_heating();
-        
-        void set_heating(bool enabled);
     
     private:
         float temperature;
         
-        bool heating;
-    
         static float readSensor();
         
         static float analoginToCelsius(float);
         
-        void controlHeater();
-        
         static float getOffset(float);
         
-        static void displayTemperature();
 };
 
 #endif
\ No newline at end of file