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

Committer:
sbouber1
Date:
Wed Jun 15 10:55:44 2016 +0000
Revision:
46:7e4c1f2ab76c
Parent:
41:dce2c29f49cd
Child:
52:eaddbde192f1
update

Who changed what in which revision?

UserRevisionLine numberNew contents of line
joran 3:d7ce3a1a34fb 1 #ifndef __LCDCONTROLLER_H__
joran 3:d7ce3a1a34fb 2 #define __LCDCONTROLLER_H__
joran 3:d7ce3a1a34fb 3
joran 3:d7ce3a1a34fb 4 #include "mbed.h"
joran 3:d7ce3a1a34fb 5 #include "stdio.h"
joran 3:d7ce3a1a34fb 6 #include "TextLCD.h"
joran 3:d7ce3a1a34fb 7
joran 41:dce2c29f49cd 8 #include "PIDController.h"
joran 41:dce2c29f49cd 9
joran 41:dce2c29f49cd 10
joran 6:067e999b9c6e 11 class LCDController {
joran 6:067e999b9c6e 12
joran 6:067e999b9c6e 13
joran 6:067e999b9c6e 14 public:
joran 6:067e999b9c6e 15 LCDController();
joran 6:067e999b9c6e 16
joran 6:067e999b9c6e 17
joran 41:dce2c29f49cd 18 static void updateScreen(float, float, PIDController *pidc);
sbouber1 10:fd4670ec0806 19 static void updateScreen(float);
joran 6:067e999b9c6e 20 static void splash();
sbouber1 10:fd4670ec0806 21 static void error(const char *msg);
sbouber1 46:7e4c1f2ab76c 22 static void showPumping();
joran 6:067e999b9c6e 23
joran 6:067e999b9c6e 24 private:
joran 6:067e999b9c6e 25
joran 6:067e999b9c6e 26
joran 6:067e999b9c6e 27
sbouber1 35:c9261391a995 28 };
sbouber1 35:c9261391a995 29
sbouber1 35:c9261391a995 30 #endif