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:
joran
Date:
Wed Jun 08 13:37:18 2016 +0000
Revision:
5:44ce56378b65
Child:
10:fd4670ec0806
Added proximitycontroller

Who changed what in which revision?

UserRevisionLine numberNew contents of line
joran 5:44ce56378b65 1 #ifndef __PROXIMITYCONTROLLER_H__
joran 5:44ce56378b65 2 #define __PROXIMITYCONTROLLER_H__
joran 5:44ce56378b65 3
joran 5:44ce56378b65 4 #include "stdio.h"
joran 5:44ce56378b65 5 #include "Ping.h"
joran 5:44ce56378b65 6 #include "mbed.h"
joran 5:44ce56378b65 7
joran 5:44ce56378b65 8
joran 5:44ce56378b65 9 class ProximityController {
joran 5:44ce56378b65 10 public:
joran 5:44ce56378b65 11 ProximityController();
joran 5:44ce56378b65 12
joran 5:44ce56378b65 13 static int readDistance();
joran 5:44ce56378b65 14
joran 5:44ce56378b65 15 };
joran 5:44ce56378b65 16
joran 5:44ce56378b65 17
joran 5:44ce56378b65 18 #endif