commit

Dependencies:   MPU6050_SIM5320_TEST

Fork of MPU_SDCARD by Suad Suljic

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers PhoneUndetected.h Source File

PhoneUndetected.h

00001 #ifndef CASEFSM_PHONEUNDETECTED_H_
00002 #define CASEFSM_PHONEUNDETECTED_H_
00003 
00004 #include <CaseState.h>
00005 
00006 class CaseFsmStates;
00007 
00008 class PhoneUndetected : public CaseState {
00009   public:
00010   PhoneUndetected(CaseFsmStates& states, Timer& timer);
00011   CaseState* handle(SwitchPosition& event);
00012 
00013   private:
00014   unsigned timeForLongPress_;
00015   
00016 };
00017 
00018 #endif /* ifndef CASEFSM_PHONEUNDETECTED_H_ */