mirror of
https://github.com/Team4388/RiseOfRidgebotics2020.git
synced 2026-06-09 00:38:00 -06:00
21 lines
813 B
Java
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;
|
|
}
|