|
|
|
![]() |
|
|||||||
|
||||||||
|
|
Thread Tools | Rate Thread | Display Modes |
|
#4
|
|||
|
|||
|
Re: Output not updated often enough error
In your robotInit instead of:
Code:
Joystick left = new Joystick(1);
Joystick right = new Joystick(2);
RobotDrive robot = new RobotDrive(1,2,3,4);
Code:
left = new Joystick(1);
right = new Joystick(2);
robot = new RobotDrive(1,2,3,4);
|
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|