Files
RiseOfRidgebotics2020/src/main/java/frc4388/utility/controller/ButtonFox.java
T
2020-03-10 19:37:34 -06:00

21 lines
813 B
Java

/*----------------------------------------------------------------------------*/
/* 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;
}