View Single Post
  #1   Spotlight this post!  
Unread 17-01-2014, 20:11
weaversam8 weaversam8 is offline
Team Captain
AKA: Sam Weaver
FRC #4534 (Wired Wizards)
Team Role: Leadership
 
Join Date: Jan 2014
Rookie Year: 2014
Location: Wilmington, North Carolina
Posts: 137
weaversam8 is a splendid one to beholdweaversam8 is a splendid one to beholdweaversam8 is a splendid one to beholdweaversam8 is a splendid one to beholdweaversam8 is a splendid one to beholdweaversam8 is a splendid one to behold
Question Need Help With Robot Jumpyness

Hey guys!

(First post on CD, yay! )

I need some help making our robot less sensitive to the joystick, or some relative acceleration. I am using the basic tutorial code and an arcade drive.

Code:
RobotDrive chassis = new RobotDrive(1,2);
    Joystick main = new Joystick(1);
Code:
public void operatorControl() {
        chassis.setSafetyEnabled(true);
        while(isOperatorControl() && isEnabled()) {
        
          chassis.arcadeDrive(main);        
          Timer.delay(0.01);
        }
        }
Reply With Quote