Black Box
BBThermostatStatus.cs
1 /*
2 * FILE : BBThermostatStatus.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 thermostat.
8 */
9 
11 {
12  public class BBThermostatStatus
13  {
16  public static bool isRunning = false;
17 
18  public static bool isPRunning = false;
19 
20  public static string thermostatNames = "";
21 
26  public static void SensorStatus(bool Status)
27  {
28  isRunning = Status;
29  }
30 
34  public static void SensorPStatus(bool Status)
35  {
36  isPRunning = Status;
37  }
38 
43  public string SensorNames(string names)
44  {
45  return names;
46  }
47  }
48 }