init

Dependencies:   MPU6050 PinDetect circular_buffer

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers DeviceFull.h Source File

DeviceFull.h

00001 #ifndef CASEFSM_DEVICEFULL_H_
00002 #define CASEFSM_DEVICEFULL_H_
00003 
00004 #include <CaseState.h>
00005 
00006 class CaseFsmStates;
00007 
00008 class DeviceFull : public CaseState
00009 {
00010 public:
00011     DeviceFull(CaseFsmStates& states, Timer& timer);
00012     CaseState* handle(SwitchPosition& event);
00013     CaseState* handle(RFIDEvent& event);
00014     CaseState* handle(TimerEnd& event);
00015 
00016     
00017 };
00018 #endif /* ifndef CASEFSM_DEVICEFULL_H_ */