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: DS1820 libmDot mbed-rtos mbed
EasyLube.h@2:26ffaed90e4f, 2016-08-31 (annotated)
- Committer:
- TataLora
- Date:
- Wed Aug 31 21:01:30 2016 +0000
- Revision:
- 2:26ffaed90e4f
Refactoren van applicatie -> Message prefix + temperatuur meting toegevoegd
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| TataLora | 2:26ffaed90e4f | 1 | |
| TataLora | 2:26ffaed90e4f | 2 | #ifndef C_EASYLUBE |
| TataLora | 2:26ffaed90e4f | 3 | #define C_EASYLUBE |
| TataLora | 2:26ffaed90e4f | 4 | |
| TataLora | 2:26ffaed90e4f | 5 | class EasyLube { |
| TataLora | 2:26ffaed90e4f | 6 | public: |
| TataLora | 2:26ffaed90e4f | 7 | enum Activity { |
| TataLora | 2:26ffaed90e4f | 8 | NONE, |
| TataLora | 2:26ffaed90e4f | 9 | STARTING, |
| TataLora | 2:26ffaed90e4f | 10 | DOSAGE, |
| TataLora | 2:26ffaed90e4f | 11 | ERROR, |
| TataLora | 2:26ffaed90e4f | 12 | ALIVE, |
| TataLora | 2:26ffaed90e4f | 13 | NO_SIGNAL, |
| TataLora | 2:26ffaed90e4f | 14 | POWER_UP |
| TataLora | 2:26ffaed90e4f | 15 | }; |
| TataLora | 2:26ffaed90e4f | 16 | |
| TataLora | 2:26ffaed90e4f | 17 | Activity getActivity(void); |
| TataLora | 2:26ffaed90e4f | 18 | }; |
| TataLora | 2:26ffaed90e4f | 19 | |
| TataLora | 2:26ffaed90e4f | 20 | #endif |