commit

Dependencies:   MPU6050_SIM5320_TEST

Fork of MPU_SDCARD by Suad Suljic

Revision:
1:75966605a6a3
diff -r 203cf529f52a -r 75966605a6a3 MotionFSM/Moving.cpp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/MotionFSM/Moving.cpp	Fri Nov 10 15:35:26 2017 +0000
@@ -0,0 +1,14 @@
+#include <Moving.h>
+#include <Events.h>
+#include <Fsm.h>
+
+Moving::Moving(FsmStates& states, Timer& timer): State(states,timer) {}
+
+State* Moving::handle(Stop& event)
+{
+    printf("Odoh u ********************************** STACIONARY STATE\r\n");
+    return states_.stacionaryState();
+}
+
+
+