Thread: Problems -_-
View Single Post
  #4   Spotlight this post!  
Unread 19-01-2013, 11:33
SBrosious's Avatar
SBrosious SBrosious is offline
AngelicArtist
AKA: Sebastian Brosious
FRC #4085 (Techinical Difficulties)
Team Role: Programmer
 
Join Date: Jan 2013
Rookie Year: 2012
Location: Ohio
Posts: 9
SBrosious is an unknown quantity at this point
Re: Problems -_-

is this any better
Code:
Joystick leftStick = new Joystick(1);
       Joystick rightStick = new Joystick(2);
       Joystick thirdStick = new Joystick(3);
       Button shooter1 = new JoystickButton(thirdStick,3);
       Button shooter2 = new JoystickButton(thirdStick,4);
       Button shooter3 = new JoystickButton(thirdStick,5);
       Button shooterStop = new JoystickButton(thirdStick,2);
       Jaguar leftdrive;
       Jaguar rightdrive;
       RobotDrive drive = new RobotDrive(leftdrive,rightdrive);
       Command autonomousCommand;
Reply With Quote