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:
Fri Jun 10 22:21:04 2016 +0000
Revision:
10:fd4670ec0806
Parent:
6:067e999b9c6e
Child:
35:c9261391a995
Optional threading

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 6:067e999b9c6e 8 #endif
joran 6:067e999b9c6e 9
joran 6:067e999b9c6e 10 class LCDController {
joran 6:067e999b9c6e 11
joran 6:067e999b9c6e 12
joran 6:067e999b9c6e 13 public:
joran 6:067e999b9c6e 14 LCDController();
joran 6:067e999b9c6e 15
joran 6:067e999b9c6e 16
joran 6:067e999b9c6e 17 static void updateScreen(float, float);
sbouber1 10:fd4670ec0806 18 static void updateScreen(float);
joran 6:067e999b9c6e 19 static void splash();
sbouber1 10:fd4670ec0806 20 static void error(const char *msg);
joran 6:067e999b9c6e 21
joran 6:067e999b9c6e 22 private:
joran 6:067e999b9c6e 23
joran 6:067e999b9c6e 24
joran 6:067e999b9c6e 25
joran 6:067e999b9c6e 26 };