Saltware / Mbed 2 deprecated Water Play

Dependencies:   mbed DRV88255 TextLCD Ping mbed-rtos

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers SensorController.h Source File

SensorController.h

00001 #ifndef __SENSORCONTROLLER_H__
00002 #define __SENSORCONTROLLER_H__
00003 
00004 #include "Controller.h"
00005 
00006 class SensorController : public Controller {
00007     public:
00008         SensorController(bool threaded, int interval_ms) : Controller(threaded, interval_ms) {}
00009         
00010         virtual float getValue() = 0;
00011         
00012         virtual void setLed(bool) = 0;
00013 };
00014 
00015 #endif