d62a2f72c8c2bd07f88d3e8a6bb2a5ce7a67f436
[3501/2017steamworks] / src / org / usfirst / frc / team3501 / robot / RobotMap.java
1 package org.usfirst.frc.team3501.robot;
2
3 /**
4 * The RobotMap is a mapping from the ports sensors and actuators are wired into
5 * to a variable name. This provides flexibility changing wiring, makes checking
6 * the wiring easier and significantly reduces the number of magic numbers
7 * floating around.
8 */
9 public class RobotMap {
10 // For example to map the left and right motors, you could define the
11 // following variables to use with your drivetrain subsystem.
12 // public static int leftMotor = 1;
13 // public static int rightMotor = 2;
14
15 // If you are using multiple modules, make sure to define both the port
16 // number and the module. For example you with a rangefinder:
17 // public static int rangefinderPort = 1;
18 // public static int rangefinderModule = 1;
19 }