commit

Dependencies:   MPU6050_SIM5320_TEST

Fork of MPU_SDCARD by Suad Suljic

Revision:
1:75966605a6a3
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/CaseFSM/include/DeviceFull.h	Fri Nov 10 15:35:26 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_ */