commit

Dependencies:   MPU6050_SIM5320_TEST

Fork of MPU_SDCARD by Suad Suljic

MotionFSM/include/Moving.h

Committer:
suads
Date:
2017-11-10
Revision:
1:75966605a6a3

File content as of revision 1:75966605a6a3:

#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_ */