View Single Post
  #7   Spotlight this post!  
Unread 07-02-2014, 07:55
notmattlythgoe's Avatar
notmattlythgoe notmattlythgoe is offline
Flywheel Police
AKA: Matthew Lythgoe
FRC #2363 (Triple Helix)
Team Role: Mentor
 
Join Date: Feb 2010
Rookie Year: 2009
Location: Newport News, VA
Posts: 1,715
notmattlythgoe has a reputation beyond reputenotmattlythgoe has a reputation beyond reputenotmattlythgoe has a reputation beyond reputenotmattlythgoe has a reputation beyond reputenotmattlythgoe has a reputation beyond reputenotmattlythgoe has a reputation beyond reputenotmattlythgoe has a reputation beyond reputenotmattlythgoe has a reputation beyond reputenotmattlythgoe has a reputation beyond reputenotmattlythgoe has a reputation beyond reputenotmattlythgoe has a reputation beyond repute
Re: Autonomous with Mechanum Wheels

Quote:
Originally Posted by jls667 View Post
Public void automous() {
myDrive.setSafetyEnabled(false);
myDrive.mecanumDrive_Polar(.5,0,0);
Timer.delay(1.0);
}
You have autonomous spelled wrong.

Is this what your code looks like, or is it spelled wrong in your code also?

Code:
public void autonomous() {
     myDrive.setSafetyEnabled(false);
     myDrive.mecanumDrive_Polar(.5,0,0);
     Timer.delay(1.0);
}
Reply With Quote