/**
   * When the user clicks a ControlButtonView, set the drive control to that style
   *
   * @param v
   */
  public void onControlButtonClick(View v) {

    if (v instanceof ControlButtonView) {
      ControlButtonView b = (ControlButtonView) v;

      b.checkForDoubleClick();

      this.selectSpeedButton(b.getDriveControlPref().index);

      SoundManager.playSound(MainActivity.SOUND_BUTTON_PRESS);
    }
  }