Example #1
0
 public CSAFE_Device(ref CSAFE_Session Session, HidDevice NewDevice)
 {
     Debug.WriteLine("[CSAFE] Creating New Device");
     ConfigData = new CSAFE_ConfigurationDataManager(ref Session);
     Device     = NewDevice;
     Debug.WriteLine("   DONE!");
 }
Example #2
0
 public CSAFE_Request_Workout_Data(ref CSAFE_Session Session)
 {
     _Session = Session;
 }
Example #3
0
 public CSAFE_Configure_Workout_Commands(ref CSAFE_Session Session)
 {
     _Session = Session;
 }
Example #4
0
 public CSAFE_Configuration_Commands(ref CSAFE_Session Session)
 {
     _Session = Session;
 }
Example #5
0
 public CSAFE_Control_Commands(ref CSAFE_Session Session)
 {
     _Session = Session;
 }
Example #6
0
 //-------------------------------------------------------------------------------------------------------------------------
 // Constructor
 //-------------------------------------------------------------------------------------------------------------------------
 public CSAFE_ConfigurationDataManager(ref CSAFE_Session Session)
 {
     CSAFE_ParseResp = new CSAFE_Parse_Response(ref Session);
 }
Example #7
0
 public CSAFE_Parse_Response(ref CSAFE_Session Session)
 {
     _Session = Session;
 }