first

Dependencies:   MPU6050_SIM5320_TEST

CaseFSM/PhoneUndetected.cpp

Committer:
suads
Date:
2017-11-09
Revision:
0:79959cf2cc3e

File content as of revision 0:79959cf2cc3e:

#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();
}