You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if yaw axis != 0:
targetAngle = currentAngle;
drive at x,y,yaw
else
drive at x,y and hold yaw to targetAngle
in other words
when the driver is steering you should do nothing
when the driver stops steering you should use the code from #4 to hold the last angle the driver steered to
add a condition to the current drive command that
if yaw axis != 0:
targetAngle = currentAngle;
drive at x,y,yaw
else
drive at x,y and hold yaw to targetAngle
in other words
when the driver is steering you should do nothing
when the driver stops steering you should use the code from #4 to hold the last angle the driver steered to
this goes with issue #4
The text was updated successfully, but these errors were encountered: