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

SensorController.h

Committer:
sbouber1
Date:
2016-06-24
Revision:
80:38e274c4dafa
Parent:
66:133398875949

File content as of revision 80:38e274c4dafa:

#ifndef __SENSORCONTROLLER_H__
#define __SENSORCONTROLLER_H__

#include "Controller.h"

class SensorController : public Controller {
    public:
        SensorController(bool threaded, int interval_ms) : Controller(threaded, interval_ms) {}
        
        virtual float getValue() = 0;
        
        virtual void setLed(bool) = 0;
};

#endif