commit

Dependencies:   MPU6050_SIM5320_TEST

Fork of MPU_SDCARD by Suad Suljic

CaseFSM/PhoneUndetected.cpp

Committer:
suads
Date:
2017-11-10
Revision:
1:75966605a6a3

File content as of revision 1:75966605a6a3:

#include <PhoneUndetected.h>
#include <DeviceEmpty.h>
#include <CaseEvents.h>
#include <CaseFsm.h>

PhoneUndetected::PhoneUndetected(CaseFsmStates& states, Timer& timer): CaseState(states,timer) {}

CaseState* PhoneUndetected::handle(SwitchPosition& event)
{

    printf("Odoh u DEVICE EMPTY STATE\r\n");
    return states_.deviceEmptyState();
}