Thread: Stop Driving
View Single Post
  #5   Spotlight this post!  
Unread 05-04-2013, 17:36
thecakeisalie's Avatar
thecakeisalie thecakeisalie is offline
Registered User
FRC #0293
 
Join Date: Mar 2012
Location: Pennington
Posts: 37
thecakeisalie is an unknown quantity at this point
Re: Stop Driving

Not sure if this is what you mean, but:
Code:
if(button.get()) {
    Drivetrain.tankDrive(0,0);
}
else {
    DriveTrain.tankDrive(leftJoystick.getY(), rightJoystick.getY());
}
Reply With Quote