commit_cell_locker

Dependencies:   MPU6050_SIM5320_TEST

Fork of KOPIRANO_cell_locker by Suad Suljic

MotionFSM/Stacionary.cpp

Committer:
suads
Date:
2017-11-13
Revision:
2:aabc92901e25
Parent:
1:75966605a6a3

File content as of revision 2:aabc92901e25:

#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();
}