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
Diff: SensorController.h
- Revision:
- 10:fd4670ec0806
- Child:
- 66:133398875949
diff -r b3674516729d -r fd4670ec0806 SensorController.h
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/SensorController.h Fri Jun 10 22:21:04 2016 +0000
@@ -0,0 +1,13 @@
+#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;
+};
+
+#endif
\ No newline at end of file