View Single Post
  #1   Spotlight this post!  
Unread 29-01-2013, 02:15
M15onebillion M15onebillion is offline
Registered User
FRC #4619
 
Join Date: Jan 2013
Location: Huntington Beach
Posts: 3
M15onebillion is an unknown quantity at this point
Exclamation Robot Not Turning While in Autonomous Mode

Hi, we are having problem with our Autonomous mode. Using the code below the robot seems to stop after going forward for 5 seconds, and does nothing afterwards.

public void autonomous() {
Chassidy.setSafetyEnabled(false);
Chassidy.drive(0.5, 0.0);
Timer.delay(5.0);
Chassidy.drive(0.0, 0.25);
Timer.delay(2.0);
Chassidy.drive(0.0, 0.0);
}


Does anyone know what is wrong with this code?
Much appreciated!

Last edited by M15onebillion : 29-01-2013 at 02:19.
Reply With Quote