init

Dependencies:   MPU6050 PinDetect circular_buffer

MotionFSM/include/Moving.h

Committer:
OsmanKameric
Date:
2017-11-07
Revision:
0:b416214256cd

File content as of revision 0:b416214256cd:

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