2
0
mirror of https://github.com/team2059/Dent synced 2024-12-18 20:52:29 -05:00
dent/RobotMap.h

26 lines
464 B
C
Raw Normal View History

#ifndef ROBOTMAP_H
#define ROBOTMAP_H
#include "WPILib.h"
2015-02-02 19:56:27 -05:00
// Elevator
2015-02-03 15:20:10 -05:00
#define ELEVATOR_CAN 1
2015-02-02 19:56:27 -05:00
// Drivetrain
2015-02-03 15:20:10 -05:00
#define DRIVE_FRONT_LEFT_CAN 2
#define DRIVE_BACK_LEFT_CAN 3
#define DRIVE_FRONT_RIGHT_CAN 4
#define DRIVE_BACK_RIGHT_CAN 5
2015-02-02 19:56:27 -05:00
// Collector
2015-02-03 15:20:10 -05:00
#define COLLECTOR_WINDOW_LEFT_CAN 6
#define COLLECTOR_WINDOW_RIGHT_CAN 7
#define COLLECTOR_LEFT_CAN 8
#define COLLECTOR_RIGHT_CAN 9
2015-02-06 22:44:16 -05:00
#define COLLECTOR_CALIBRATOR_DIO 0
2015-02-02 19:56:27 -05:00
// Compressor
2015-02-03 15:20:10 -05:00
#define COMPRESSOR_CAN 10
2015-02-02 19:56:27 -05:00
#endif