|
Re: problem with passing doubles back into the "TeleOp Execute" loop
The code is currently set to run in parallel loops. Because they are set to never "stop" executing, the loop never really ends and thus will not pass values outside of the loop.
To get around this, either move the traction control code to inside the teleop loop or set up global variables. Write to the globals in the traction control loop and read it in the teleop loop.
|