Initial commit

This commit is contained in:
Keenan D. Buckley
2020-01-09 23:55:46 +00:00
commit ae469b5066
27 changed files with 1626 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();
}