private void selectSpeedButton(int index) {

    for (ControlButtonView s : this.control_buttons) {
      s.fade();
    }

    this.control_buttons[index].shine();

    this.prefs.setSelectedDriveControlPref(index);
  }