commit

Dependencies:   MPU6050_SIM5320_TEST

Fork of MPU_SDCARD by Suad Suljic

MotionFSM/Moving.cpp

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

File content as of revision 1:75966605a6a3:

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

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

State* Moving::handle(Stop& event)
{
    printf("Odoh u ********************************** STACIONARY STATE\r\n");
    return states_.stacionaryState();
}