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