mirror of
https://github.com/team2059/Dent
synced 2024-12-18 20:52:29 -05:00
26 lines
464 B
C
26 lines
464 B
C
#ifndef ROBOTMAP_H
|
|
#define ROBOTMAP_H
|
|
|
|
#include "WPILib.h"
|
|
|
|
// Elevator
|
|
#define ELEVATOR_CAN 1
|
|
|
|
// Drivetrain
|
|
#define DRIVE_FRONT_LEFT_CAN 2
|
|
#define DRIVE_BACK_LEFT_CAN 3
|
|
#define DRIVE_FRONT_RIGHT_CAN 4
|
|
#define DRIVE_BACK_RIGHT_CAN 5
|
|
|
|
// Collector
|
|
#define COLLECTOR_WINDOW_LEFT_CAN 6
|
|
#define COLLECTOR_WINDOW_RIGHT_CAN 7
|
|
#define COLLECTOR_LEFT_CAN 8
|
|
#define COLLECTOR_RIGHT_CAN 9
|
|
#define COLLECTOR_CALIBRATOR_DIO 0
|
|
|
|
// Compressor
|
|
#define COMPRESSOR_CAN 10
|
|
|
|
#endif
|