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 Moving.cpp Source File

Moving.cpp

00001 #include <Moving.h>
00002 #include <Events.h>
00003 #include <Fsm.h>
00004 
00005 Moving::Moving(FsmStates& states, Timer& timer): State(states,timer) {}
00006 
00007 State* Moving::handle(Stop& event)
00008 {
00009     printf("Odoh u ********************************** STACIONARY STATE\r\n");
00010     return states_.stacionaryState();
00011 }
00012 
00013 
00014