mirror of
https://github.com/Astatin3/Vision-Minibot.git
synced 2026-06-08 16:18:02 -06:00
22 lines
342 B
Java
22 lines
342 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();
|
||
|
|
}
|