init

Dependencies:   MPU6050 PinDetect circular_buffer

Revision:
0:b416214256cd
diff -r 000000000000 -r b416214256cd CaseFSM/DeviceEmpty.cpp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/CaseFSM/DeviceEmpty.cpp	Tue Nov 07 16:35:14 2017 +0000
@@ -0,0 +1,18 @@
+#include <DeviceEmpty.h>
+#include <CaseEvents.h>
+#include <CaseFsm.h>
+
+DeviceEmpty::DeviceEmpty(CaseFsmStates& states, Timer& timer): CaseState(states, timer)
+{
+
+
+}
+
+CaseState* DeviceEmpty::handle(SwitchPosition& event)
+{
+    printf("Odoh u DEVICE FULL STATE\r\n");
+    
+    return states_.deviceFullState();
+}
+
+