Initial commit

This commit is contained in:
C4llSqin
2024-01-08 11:38:08 -07:00
committed by GitHub
commit 1ad5464df5
62 changed files with 4618 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();
}