Skip to content

Commit f32462e

Browse files
committed
fix: CAN bus names are case sensitive
Signed-off-by: Dasun Abeykoon <[email protected]>
1 parent 77a5d5e commit f32462e

File tree

1 file changed

+1
-1
lines changed
  • src/main/java/org/frc6423/robot/subsystems/superstructure/elevator

1 file changed

+1
-1
lines changed

src/main/java/org/frc6423/robot/subsystems/superstructure/elevator/Elevator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
/** Elevator Subsystem */
3131
public class Elevator extends SubsystemBase implements AutoCloseable {
3232
/** Name of the CAN bus hardware is on */
33-
public static final String CANBUS = "CANCHAN";
33+
public static final String CANBUS = "CANchan";
3434

3535
/** Parent motor CAN ID */
3636
public static final int PARENT_MOTOR_ID = 14;

0 commit comments

Comments
 (0)