first

Dependencies:   MPU6050_SIM5320_TEST

MotionFSM/Stacionary.cpp

Committer:
suads
Date:
2017-11-09
Revision:
0:79959cf2cc3e

File content as of revision 0:79959cf2cc3e:

#include <Stacionary.h>
#include <Events.h>
#include <Fsm.h>

Stacionary::Stacionary(FsmStates& states, Timer& timer): State(states, timer) {}

State* Stacionary::handle(Move& event)
{
    printf("Odoh u ********************************** MOVING STATE\r\n");
    return states_.movingState();
}