Suad Suljic / Mbed OS Cell_lockker

Dependencies:   MPU6050_SIM5320_TEST

Revision:
0:79959cf2cc3e
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/MotionFSM/include/Stacionary.h	Thu Nov 09 15:00:04 2017 +0000
@@ -0,0 +1,15 @@
+#ifndef FSM_STACIONARY_H_
+#define FSM_STACIONARY_H_
+
+#include <State.h>
+#include "mbed.h"
+
+struct Move;
+class FsmStates;
+
+class Stacionary : public State {
+  public:
+  Stacionary(FsmStates& states, Timer& timer);
+  State* handle(Move& event);
+};
+#endif /* ifndef FSM_DISCONNECTED_H_ */