commit

Dependencies:   MPU6050_SIM5320_TEST

Fork of MPU_SDCARD by Suad Suljic

Revision:
1:75966605a6a3
diff -r 203cf529f52a -r 75966605a6a3 MotionFSM/include/Moving.h
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/MotionFSM/include/Moving.h	Fri Nov 10 15:35:26 2017 +0000
@@ -0,0 +1,17 @@
+#ifndef FSM_MOVING_H_
+#define FSM_MOVING_H_
+
+#include <State.h>
+struct Stop;
+class FsmStates;
+
+class Moving : public State {
+  public:
+  Moving(FsmStates& states, Timer& timer);
+  State* handle(Stop& event);
+
+  private:
+  unsigned timeForLongPress_;
+};
+
+#endif /* ifndef FSM_CONNECTED_TRANSIOTION_H_ */