Initial commit

This commit is contained in:
Michael Mikovsky
2024-12-12 20:42:40 -08:00
committed by GitHub
commit 6e578b891a
70 changed files with 5542 additions and 0 deletions
@@ -0,0 +1,21 @@
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();
}