Initial commit

This commit is contained in:
C4llSqin
2023-11-30 16:59:28 -07:00
committed by GitHub
commit a076a213b9
40 changed files with 2608 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();
}