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

PhoneUndetected.cpp

00001 #include <PhoneUndetected.h>
00002 #include <DeviceEmpty.h>
00003 #include <CaseEvents.h>
00004 #include <CaseFsm.h>
00005 
00006 PhoneUndetected::PhoneUndetected(CaseFsmStates& states, Timer& timer): CaseState(states,timer) {}
00007 
00008 CaseState* PhoneUndetected::handle(SwitchPosition& event)
00009 {
00010 
00011     printf("Odoh u DEVICE EMPTY STATE\r\n");
00012     return states_.deviceEmptyState();
00013 }
00014 
00015 
00016