init
Dependencies: MPU6050 PinDetect circular_buffer
CaseFSM/include/DeviceEmpty.h@0:b416214256cd, 2017-11-07 (annotated)
- Committer:
- OsmanKameric
- Date:
- Tue Nov 07 16:35:14 2017 +0000
- Revision:
- 0:b416214256cd
FIRST
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
OsmanKameric | 0:b416214256cd | 1 | #ifndef CASEFSM_DEVICEEMPTY_H_ |
OsmanKameric | 0:b416214256cd | 2 | #define CASEFSM_DEVICEEMPTY_H_ |
OsmanKameric | 0:b416214256cd | 3 | |
OsmanKameric | 0:b416214256cd | 4 | #include <CaseState.h> |
OsmanKameric | 0:b416214256cd | 5 | #include "mbed.h" |
OsmanKameric | 0:b416214256cd | 6 | |
OsmanKameric | 0:b416214256cd | 7 | class CaseFsmStates; |
OsmanKameric | 0:b416214256cd | 8 | |
OsmanKameric | 0:b416214256cd | 9 | class DeviceEmpty : public CaseState { |
OsmanKameric | 0:b416214256cd | 10 | public: |
OsmanKameric | 0:b416214256cd | 11 | DeviceEmpty(CaseFsmStates& states, Timer& timer); |
OsmanKameric | 0:b416214256cd | 12 | CaseState* handle(SwitchPosition& event); |
OsmanKameric | 0:b416214256cd | 13 | }; |
OsmanKameric | 0:b416214256cd | 14 | #endif /* ifndef CASEFSM_DEVICEEMPTY_H_ */ |