init

Dependencies:   MPU6050 PinDetect circular_buffer

CaseFSM/include/DeviceEmpty.h

Committer:
OsmanKameric
Date:
2017-11-07
Revision:
0:b416214256cd

File content as of revision 0:b416214256cd:

#ifndef CASEFSM_DEVICEEMPTY_H_
#define CASEFSM_DEVICEEMPTY_H_

#include <CaseState.h>
#include "mbed.h"

class CaseFsmStates;

class DeviceEmpty : public CaseState {
  public:
  DeviceEmpty(CaseFsmStates& states, Timer& timer);
  CaseState* handle(SwitchPosition& event);
};
#endif /* ifndef CASEFSM_DEVICEEMPTY_H_ */