View Single Post
  #1   Spotlight this post!  
Unread 02-16-2016, 01:01 PM
Beeker's Avatar
Beeker Beeker is offline
Registered User
AKA: Joe
FRC #4377 (BC. Blaze)
Team Role: Mentor
 
Join Date: Jan 2015
Rookie Year: 2015
Location: Michigan
Posts: 7
Beeker is an unknown quantity at this point
Re: How do i make my robot drive without the robot drive class

public void teleopPeriodic() {
while (isOperatorControl() && isEnabled()) {

// tank drive xbox controller no robotdrive class
frontRight.set(mXboxController.getRawAxis(5);
rearRight.set(mXboxController.getRawAxis(5);
frontLeft.set(mXboxController.getRawAxis(2);
rearLeft.set(mXboxController.getRawAxis(2);

Timer.delay(0.01);
}
}
Reply With Quote