//-------------------------------------------------------------------------------------------------------------------------- // Internal Calibration Algorithms #region InternalCalibration /// <summary> Reset the Calibration of the glove if, for instance, something went wrong, or if we are shutting down. </summary> public void CancelCalibration() { if (linkedGlove != null) { linkedGlove.StopCalibration(); SenseGlove_Debugger.Log("Canceled Calibration"); } }
/// <summary> Reset the Calibration of the glove if, for instance, something went wrong. </summary> public void CancelCalibration() { if (glove != null) { glove.StopCalibration(); this.calSteps = 0; this.calibrating = false; SenseGlove_Debugger.Log("Canceled Calibration"); } }