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