‪Black Box
BBFitnessStatus.cs
Go to the documentation of this file.
1 /*
2 * FILE : BBFitnessStatus.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 and relay it to the BBTasker.
8 */
9 
11 {
12  public class ‪BBFitnessStatus
13  {
16  public bool ‪isRunning = false;
17 
18  public int ‪sensorCount = 0;
19  public string ‪sensorNames = "";
20 
25  public bool ‪SensorStatus(bool Status)
26  {
27  return Status;
28  }
29  }
30 }