init

Dependencies:   MPU6050 PinDetect circular_buffer

MotionFSM/include/Stacionary.h

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

File content as of revision 0:b416214256cd:

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