Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed DRV88255 TextLCD Ping mbed-rtos
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
Generated on Tue Jul 12 2022 18:59:29 by
1.7.2