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
Controller.h@9:b3674516729d, 2016-06-10 (annotated)
- Committer:
- sbouber1
- Date:
- Fri Jun 10 12:56:53 2016 +0000
- Revision:
- 9:b3674516729d
- Child:
- 10:fd4670ec0806
Started threading stuff
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| sbouber1 | 9:b3674516729d | 1 | #ifndef __CONTROLLER_H__ |
| sbouber1 | 9:b3674516729d | 2 | #define __CONTROLLER_H__ |
| sbouber1 | 9:b3674516729d | 3 | |
| sbouber1 | 9:b3674516729d | 4 | class Controller { |
| sbouber1 | 9:b3674516729d | 5 | public: |
| sbouber1 | 9:b3674516729d | 6 | virtual void update() = 0; |
| sbouber1 | 9:b3674516729d | 7 | virtual float getValue() = 0; |
| sbouber1 | 9:b3674516729d | 8 | }; |
| sbouber1 | 9:b3674516729d | 9 | |
| sbouber1 | 9:b3674516729d | 10 | #endif |