Example #1
0
  /** Stop running the PIDController, this sets the output to zero before stopping. */
  public synchronized void disable() {
    m_talon.ClearIaccum();
    m_talon.disableControl();

    if (m_debugging) SmartDashboard.putBoolean(m_name + " Enabled", false);
  }