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

Stacionary.cpp

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