Added Storage Manual and ButtonFox.java

This commit is contained in:
ryan123rudder
2020-03-10 19:37:34 -06:00
parent 6cc3e63b86
commit 69657ace52
3 changed files with 80 additions and 1 deletions
@@ -0,0 +1,20 @@
/*----------------------------------------------------------------------------*/
/* Copyright (c) 2018-2019 FIRST. All Rights Reserved. */
/* Open Source Software - may be modified and shared by FRC teams. The code */
/* must be accompanied by the FIRST BSD license file in the root directory of */
/* the project. */
/*----------------------------------------------------------------------------*/
package frc4388.utility.controller;
/**
* button fox
* @author Ryan Manley
*/
public class ButtonFox {
public static final int RIGHT_SWITCH = 1;
public static final int MIDDLE_SWITCH = 2;
public static final int LEFT_SWITCH = 3;
public static final int RIGHT_BUTTON = 4;
public static final int LEFT_BUTTON = 5;
}