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
MockSensorController.h
- Committer:
- sbouber1
- Date:
- 2016-06-24
- Revision:
- 80:38e274c4dafa
- Parent:
- 66:133398875949
File content as of revision 80:38e274c4dafa:
#ifndef __MOCKSENSORCONTROLLER_H__
#define __MOCKSENSORCONTROLLER_H__
#include "mbed.h"
#include "SensorController.h"
class MockSensorController : public SensorController {
public:
MockSensorController(bool threaded, int interval_ms, float (*func)(int, int)) : SensorController(threaded, interval_ms) {
this->func = func;
t.start();
}
virtual void update();
virtual float getValue();
virtual std::string getName();
virtual void setLed(bool);
private:
int i;
Timer t;
long int sum_t;
float (*func)(int, int);
};
#endif