init
Dependencies: MPU6050 PinDetect circular_buffer
MotionFSM/include/Stacionary.h@0:b416214256cd, 2017-11-07 (annotated)
- Committer:
- OsmanKameric
- Date:
- Tue Nov 07 16:35:14 2017 +0000
- Revision:
- 0:b416214256cd
FIRST
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
OsmanKameric | 0:b416214256cd | 1 | #ifndef FSM_STACIONARY_H_ |
OsmanKameric | 0:b416214256cd | 2 | #define FSM_STACIONARY_H_ |
OsmanKameric | 0:b416214256cd | 3 | |
OsmanKameric | 0:b416214256cd | 4 | #include <State.h> |
OsmanKameric | 0:b416214256cd | 5 | #include "mbed.h" |
OsmanKameric | 0:b416214256cd | 6 | |
OsmanKameric | 0:b416214256cd | 7 | struct Move; |
OsmanKameric | 0:b416214256cd | 8 | class FsmStates; |
OsmanKameric | 0:b416214256cd | 9 | |
OsmanKameric | 0:b416214256cd | 10 | class Stacionary : public State { |
OsmanKameric | 0:b416214256cd | 11 | public: |
OsmanKameric | 0:b416214256cd | 12 | Stacionary(FsmStates& states, Timer& timer); |
OsmanKameric | 0:b416214256cd | 13 | State* handle(Move& event); |
OsmanKameric | 0:b416214256cd | 14 | }; |
OsmanKameric | 0:b416214256cd | 15 | #endif /* ifndef FSM_DISCONNECTED_H_ */ |