View Single Post
  #5   Spotlight this post!  
Unread 06-11-2012, 17:34
y-aji y-aji is offline
Registered User
FRC #3734
 
Join Date: Dec 2011
Location: Lake Forest
Posts: 38
y-aji is an unknown quantity at this point
Re: Lost our last programmer

Cool. I threw this in and am testing it now:

Code:
    public void operatorControl() {
        while (true && isOperatorControl() && isEnabled()) // loop until change
        {
            drive.tankDrive(leftStick, rightStick); // drive w/ joysticks
            Timer.delay(0.005);
            System.out.print("Left:");
            System.out.println(leftStick);
            System.out.print("right:");
            System.out.println(rightStick);
        }
I'll update this thread when I get results.
Reply With Quote