mirror of
https://github.com/Team4388/2024AcrossTheRidgebotiverse.git
synced 2026-06-08 16:28:03 -06:00
22 lines
363 B
Java
22 lines
363 B
Java
package frc4388.utility.controller;
|
|
|
|
/**
|
|
* Add your docs here.
|
|
*/
|
|
public interface IHandController {
|
|
|
|
public double getLeftXAxis();
|
|
|
|
public double getLeftYAxis();
|
|
|
|
public double getRightXAxis();
|
|
|
|
public double getRightYAxis();
|
|
|
|
public double getLeftTriggerAxis();
|
|
|
|
public double getRightTriggerAxis();
|
|
|
|
public int getDpadAngle();
|
|
}
|