mirror of
https://github.com/Team4388/RiseOfRidgebotics2020.git
synced 2026-06-09 00:38:00 -06:00
22 lines
364 B
Java
22 lines
364 B
Java
package frc4388.utility.controller;
|
|
|
|
/**
|
|
* Interface for the {@link XboxController}.
|
|
*/
|
|
public interface IHandController {
|
|
|
|
public double getLeftXAxis();
|
|
|
|
public double getLeftYAxis();
|
|
|
|
public double getRightXAxis();
|
|
|
|
public double getRightYAxis();
|
|
|
|
public double getLeftTriggerAxis();
|
|
|
|
public double getRightTriggerAxis();
|
|
|
|
public int getDpadAngle();
|
|
}
|