-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrobotconfig.py
51 lines (50 loc) · 2.45 KB
/
robotconfig.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
# Set to True if the spark max will be brushed
# ** WARNING: Improperly setting this can break things **
"brushed": False,
# Ports for motors
# If doing drive test, treat this as the left side of the drivetrain
"motorPorts": [4,5],
# Only if you are doing drive (leave empty "[]" if not)
"rightMotorPorts": [2,3],
# Set motors to inverted or not
# If doing drive test, treat this as the left side of the drivetrain
"motorsInverted": [False,False],
# Only if you are doing drive (leave empty "[]" if not)
"rightMotorsInverted": [True,True],
# Encoder edges-per-revolution (*NOT* cycles per revolution!)
# **Note pass an EPR of 1 for the NEO Integrated encoder as the SparkMax
# already handles this conversion**
# For the REV Through Bore Encoder, use 8192 (2048 * 4)
"encoderEPR": 1,
# Gearing accounts for the gearing between the encoder and the output shaft
"gearing": 1,
# Set this to True if you would like to use the SparkMax Data Port
# Note that the Data Port is the 10 pin port on the top of the SparkMax
# Setting this to False indicates you want to use the 6 pin encoder port
# which is located in the front of the SparkMax
"useDataPort": False,
# Encoder ports (leave empty "[]" if not needed)
# Specifying encoder ports indicates you want to use Rio-side encoders
# If doing drive test, treat this as the left side of the drivetrain
"encoderPorts": [],
# Only if you are doing drive (leave empty "[]" if not)
"rightEncoderPorts": [],
# Set to True if encoders need to be inverted
# If doing drive test, treat this as the left side of the drivetrain
"encoderInverted": False,
# Only if you are doing drive (set to False if not needed)
"rightEncoderInverted": True,
# ** The following is only if you are using a gyro for the DriveTrain test**
# Gyro type (one of "NavX", "Pigeon", "ADXRS450", "AnalogGyro", or "None")
"gyroType": "NavX",
# Whatever you put into the constructor of your gyro
# Could be:
# "SPI.Port.kMXP" (MXP SPI port for NavX or ADXRS450),
# "SerialPort.Port.kMXP" (MXP Serial port for NavX),
# "I2C.Port.kOnboard" (Onboard I2C port for NavX),
# "0" (Pigeon CAN ID or AnalogGyro channel),
# "new WPI_TalonSRX(3)" (Pigeon on a Talon SRX),
# "" (NavX using default SPI, ADXRS450 using onboard CS0, or no gyro)
"gyroPort": "SPI.Port.kMXP",
}