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: C12832
Bomba.h@0:6a7df3c69564, 2016-02-10 (annotated)
- Committer:
- tbjazic
- Date:
- Wed Feb 10 11:17:49 2016 +0000
- Revision:
- 0:6a7df3c69564
Initial.
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
tbjazic | 0:6a7df3c69564 | 1 | #ifndef BOMBA_H |
tbjazic | 0:6a7df3c69564 | 2 | #define BOMBA_H |
tbjazic | 0:6a7df3c69564 | 3 | |
tbjazic | 0:6a7df3c69564 | 4 | #include "mbed.h" |
tbjazic | 0:6a7df3c69564 | 5 | #include "C12832.h" |
tbjazic | 0:6a7df3c69564 | 6 | |
tbjazic | 0:6a7df3c69564 | 7 | class Bomba { |
tbjazic | 0:6a7df3c69564 | 8 | public: |
tbjazic | 0:6a7df3c69564 | 9 | Bomba(PinName aktivirajPin); |
tbjazic | 0:6a7df3c69564 | 10 | private: |
tbjazic | 0:6a7df3c69564 | 11 | InterruptIn aktiviraj; |
tbjazic | 0:6a7df3c69564 | 12 | C12832 lcd; |
tbjazic | 0:6a7df3c69564 | 13 | Timer debounce; |
tbjazic | 0:6a7df3c69564 | 14 | Timeout detoniraj; |
tbjazic | 0:6a7df3c69564 | 15 | void aktivacija(); |
tbjazic | 0:6a7df3c69564 | 16 | void detonacija(); |
tbjazic | 0:6a7df3c69564 | 17 | bool aktiviran; |
tbjazic | 0:6a7df3c69564 | 18 | PwmOut buzz; |
tbjazic | 0:6a7df3c69564 | 19 | float x; |
tbjazic | 0:6a7df3c69564 | 20 | }; |
tbjazic | 0:6a7df3c69564 | 21 | |
tbjazic | 0:6a7df3c69564 | 22 | #endif // BOMBA_H |