init
Dependencies: MPU6050 PinDetect circular_buffer
Diff: CaseFSM/include/DeviceFull.h
- Revision:
- 0:b416214256cd
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/CaseFSM/include/DeviceFull.h Tue Nov 07 16:35:14 2017 +0000 @@ -0,0 +1,18 @@ +#ifndef CASEFSM_DEVICEFULL_H_ +#define CASEFSM_DEVICEFULL_H_ + +#include <CaseState.h> + +class CaseFsmStates; + +class DeviceFull : public CaseState +{ +public: + DeviceFull(CaseFsmStates& states, Timer& timer); + CaseState* handle(SwitchPosition& event); + CaseState* handle(RFIDEvent& event); + CaseState* handle(TimerEnd& event); + + +}; +#endif /* ifndef CASEFSM_DEVICEFULL_H_ */