Black Box
BBPresenceSensorStatus.cs
1 /*
2 * FILE : BBPresenceSensorStatus.cs
3 * PROJECT : Black Box
4 * PROGRAMMER : BRIAN HINDS
5 * FIRST VERSION : 1.0.0.0
6 * DATE : March 20, 2019
7 * DESCRIPTION : This file manages the operation status of the PIS Sensors
8 */
9 
11 {
13  {
16  public static bool isRunning = false;
17 
18  public static int sensorCount = 0;
19 
24  public static void SensorStatus(bool Status)
25  {
26  isRunning = Status;
27  }
28 
33  public static void SensorList(int amount)
34  {
35  sensorCount = amount;
36  }
37  }
38 }