public void StartToiletStateMachine()
 {
     if (!mStateMachineIsRunning)
     {
         ResetTempFlushCount();
         mStateMachineIsRunning = true;
         mToiletStateMachine.Fire(ToiletEvents.StartStateMachine);
         mManDetection.StartManDetection();
     }
 }
Exemplo n.º 2
0
 public void StartManDetection()
 {
     mManDetectionService.StartManDetection();
 }