Ejemplo n.º 1
0
 /** Calibrates the drive. Should be facing forward when called. */
 public void calibrateDrive() {
   m_drive.calibrate();
 }
Ejemplo n.º 2
0
 /** Changes the drive into Field Centric */
 public void fieldCentric() {
   m_drive.fieldCentric();
 }
Ejemplo n.º 3
0
 /** Changes the drive into robot centric */
 public void robotCentric() {
   m_drive.robotCentric();
 }
Ejemplo n.º 4
0
 /** Enables the drivebase */
 public void enableDrive() {
   m_drive.enable();
 }
Ejemplo n.º 5
0
 /** Disables the drivebase */
 public void disableDrive() {
   m_drive.disable();
 }
Ejemplo n.º 6
0
 /** Runs the robot. Should be called every iteration */
 public void run() {
   m_drive.run();
   m_elevator.run();
   m_intake.run();
 }