init

Dependencies:   MPU6050 PinDetect circular_buffer

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers DeviceEmpty.cpp Source File

DeviceEmpty.cpp

00001 #include <DeviceEmpty.h>
00002 #include <CaseEvents.h>
00003 #include <CaseFsm.h>
00004 
00005 DeviceEmpty::DeviceEmpty(CaseFsmStates& states, Timer& timer): CaseState(states, timer)
00006 {
00007 
00008 
00009 }
00010 
00011 CaseState* DeviceEmpty::handle(SwitchPosition& event)
00012 {
00013     printf("Odoh u DEVICE FULL STATE\r\n");
00014     
00015     return states_.deviceFullState();
00016 }
00017 
00018