當前位置: 首頁>>代碼示例>>Java>>正文


Java RobotDrive.arcadeDrive方法代碼示例

本文整理匯總了Java中edu.wpi.first.wpilibj.RobotDrive.arcadeDrive方法的典型用法代碼示例。如果您正苦於以下問題:Java RobotDrive.arcadeDrive方法的具體用法?Java RobotDrive.arcadeDrive怎麽用?Java RobotDrive.arcadeDrive使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在edu.wpi.first.wpilibj.RobotDrive的用法示例。


在下文中一共展示了RobotDrive.arcadeDrive方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: drive

import edu.wpi.first.wpilibj.RobotDrive; //導入方法依賴的package包/類
/**
 * Call the appropriate {@link RobotDrive} drive method based upon the #
 * 
 * @param robotDrive
 */
public void drive( RobotDrive robotDrive ) {
    if (Mode.X.equals(mode)) {
        // X-mode ...
        if (DriveStyle.TANK.equals(style)) {
            robotDrive.tankDrive(this, XModeAxes.LEFT_JOYSTICK_VERTICAL, this, XModeAxes.RIGHT_JOYSTICK_VERTICAL);
        } else if (DriveStyle.ARCADE_LEFT.equals(style)) {
            robotDrive.arcadeDrive(this, XModeAxes.LEFT_JOYSTICK_VERTICAL, this, XModeAxes.LEFT_JOYSTICK_HORIZONTAL);
        } else if (DriveStyle.ARCADE_RIGHT.equals(style)) {
            robotDrive.arcadeDrive(this, XModeAxes.RIGHT_JOYSTICK_VERTICAL, this, XModeAxes.RIGHT_JOYSTICK_HORIZONTAL);
        } else {
            System.out.println("Unknown Logitech Controller drive style: " + style);
        }
    } else if (Mode.D.equals(mode)) {
        // D-mode ...
        if (DriveStyle.TANK.equals(style)) {
            robotDrive.tankDrive(this, DModeAxes.LEFT_JOYSTICK_VERTICAL, this, DModeAxes.RIGHT_JOYSTICK_VERTICAL);
        } else if (DriveStyle.ARCADE_LEFT.equals(style)) {
            robotDrive.arcadeDrive(this, DModeAxes.LEFT_JOYSTICK_VERTICAL, this, DModeAxes.LEFT_JOYSTICK_HORIZONTAL);
        } else if (DriveStyle.ARCADE_RIGHT.equals(style)) {
            robotDrive.arcadeDrive(this, DModeAxes.RIGHT_JOYSTICK_VERTICAL, this, DModeAxes.RIGHT_JOYSTICK_HORIZONTAL);
        } else {
            System.out.println("Unknown Logitech Controller drive style: " + style);
        }
    } else {
        System.out.println("Unknown Logitech Controller mode: " + mode);
    }
}
 
開發者ID:frc-4931,項目名稱:2014-Robot,代碼行數:33,代碼來源:LogitechController.java

示例2: drive

import edu.wpi.first.wpilibj.RobotDrive; //導入方法依賴的package包/類
public void drive( RobotDrive robotDrive ) {
    double move = ctrl().getRawAxis(DMode.Axes.LEFT_JOYSTICK_VERTICAL);
    double turn = ctrl().getRawAxis(DMode.Axes.LEFT_JOYSTICK_HORIZONTAL);
    robotDrive.arcadeDrive(move, turn, true);
}
 
開發者ID:frc-4931,項目名稱:2014-Robot,代碼行數:6,代碼來源:LogitechController.java


注:本文中的edu.wpi.first.wpilibj.RobotDrive.arcadeDrive方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。