commit

Dependencies:   MPU6050_SIM5320_TEST

Fork of MPU_SDCARD by Suad Suljic

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Moving.h Source File

Moving.h

00001 #ifndef FSM_MOVING_H_
00002 #define FSM_MOVING_H_
00003 
00004 #include <State.h>
00005 struct Stop;
00006 class FsmStates;
00007 
00008 class Moving : public State {
00009   public:
00010   Moving(FsmStates& states, Timer& timer);
00011   State* handle(Stop& event);
00012 
00013   private:
00014   unsigned timeForLongPress_;
00015 };
00016 
00017 #endif /* ifndef FSM_CONNECTED_TRANSIOTION_H_ */