예제 #1
0
    //--------------------------------------------------------------------------------------------------------------------------
    // 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");
        }
    }
예제 #2
0
 /// <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");
     }
 }