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