init

Dependencies:   MPU6050 PinDetect circular_buffer

Revision:
0:b416214256cd
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/MotionFSM/Stacionary.cpp	Tue Nov 07 16:35:14 2017 +0000
@@ -0,0 +1,13 @@
+#include <Stacionary.h>
+#include <Events.h>
+#include <Fsm.h>
+
+Stacionary::Stacionary(FsmStates& states, Timer& timer): State(states, timer) {}
+
+State* Stacionary::handle(Move& event)
+{
+    printf("Odoh u ********************************** MOVING STATE\r\n");
+    return states_.movingState();
+}
+
+