Suad Suljic / Mbed OS KOPIRANO_cell_locker

Dependencies:   MPU6050_SIM5320_TEST

Fork of MPU_SDCARD by Suad Suljic

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers State.cpp Source File

State.cpp

00001 #include <Fsm.h>
00002 #include <State.h>
00003 
00004 State::State(FsmStates& states,Timer& timer): states_(states),stateTimer_(timer){}
00005 
00006 State* State::handle(Stop& event) { return states_.currentState(); }
00007 State* State::handle(Move& event) { return states_.currentState(); }
00008 
00009