init

Dependencies:   MPU6050 PinDetect circular_buffer

Committer:
OsmanKameric
Date:
Tue Nov 07 16:35:14 2017 +0000
Revision:
0:b416214256cd
FIRST

Who changed what in which revision?

UserRevisionLine numberNew contents of line
OsmanKameric 0:b416214256cd 1 #include <PhoneUndetected.h>
OsmanKameric 0:b416214256cd 2 #include <DeviceEmpty.h>
OsmanKameric 0:b416214256cd 3 #include <CaseEvents.h>
OsmanKameric 0:b416214256cd 4 #include <CaseFsm.h>
OsmanKameric 0:b416214256cd 5
OsmanKameric 0:b416214256cd 6 PhoneUndetected::PhoneUndetected(CaseFsmStates& states, Timer& timer): CaseState(states,timer) {}
OsmanKameric 0:b416214256cd 7
OsmanKameric 0:b416214256cd 8 CaseState* PhoneUndetected::handle(SwitchPosition& event)
OsmanKameric 0:b416214256cd 9 {
OsmanKameric 0:b416214256cd 10
OsmanKameric 0:b416214256cd 11 printf("Odoh u DEVICE EMPTY STATE\r\n");
OsmanKameric 0:b416214256cd 12 return states_.deviceEmptyState();
OsmanKameric 0:b416214256cd 13 }
OsmanKameric 0:b416214256cd 14
OsmanKameric 0:b416214256cd 15
OsmanKameric 0:b416214256cd 16