commit_cell_locker

Dependencies:   MPU6050_SIM5320_TEST

Fork of KOPIRANO_cell_locker by Suad Suljic

CaseFSM/include/PhoneUndetected.h

Committer:
suads
Date:
2017-11-13
Revision:
2:aabc92901e25
Parent:
1:75966605a6a3

File content as of revision 2:aabc92901e25:

#ifndef CASEFSM_PHONEUNDETECTED_H_
#define CASEFSM_PHONEUNDETECTED_H_

#include <CaseState.h>

class CaseFsmStates;

class PhoneUndetected : public CaseState {
  public:
  PhoneUndetected(CaseFsmStates& states, Timer& timer);
  CaseState* handle(SwitchPosition& event);

  private:
  unsigned timeForLongPress_;
  
};

#endif /* ifndef CASEFSM_PHONEUNDETECTED_H_ */