What are some ways to make driving smooth and easier? Right now we have a fast drive and the small joystick inputs in our code make the bot go from stand still to whipping around very fast with little in between. This makes it hard to drive into rollers/accurately pick up disks.
Can you post your drive code? Typically you set the drive power to the position of the joystick which allows for the robot to be controlled at multiple different speeds.
the easiest solution would be to set drivetrain motorâs motor stopping to âcoastâ. Try it and see.
One thing you can do is compare the commanded speed (joystick setting) against the motorsâ current velocity, and if itâs too large a difference, limit what youâre sending as an increase. For instance, joystick in one direction is commanding 100%, each time it comes into the loop, add something like 5% to the velocity youâre sending to the motors until you get to the commanded velocity. This will decrease the âjerkâ of the robot trying to rapidly accelerate and give you a smoother feel. Play around with the value you add to get to what youâre trying to get to.
This is effectively adding a âP loopâ into your driver control, and there are advantages and disadvantages to this approach. It could also be the first step of going to a full PID driver control (again, pros and cons to everything).
This may not apply to you, but make sure the drivers are using some finesse on the joysticks. I see way too many people mash the joysticks to full deflection⌠basically romping on the brake and gas with no in between.
If they are using some finesse on the controls, then you could modify the signals sent to to motors so they are not linearly proportional to joystick deflection. A simple version of this for VEXcode might look like thisâŚ
Here is how it would modify the motor signalsâŚ
This gives you more precision for small joystick deflections, but lets you have full power too.
You might also want to look up slew rates and figure out how to limit the rate of change for the motor signals.
HERE IS THE CODE: https://github.com/sohamsolanki/VEX-1526A-2023/blob/main/ChristmasCode/src/robot-config.cpp
The code doesnât drive unless the speed is more (or less) than 5 (or -5), meaning your deadband zone may be a small factor in causing the jumpiness
Usually if the robot is âwhipping around very fastâ itâs not only a problem with the code. Whatâs your RPM and wheel size?
Sorry for reviving this, but I have an immediate question.
Is this for tank drive?
Yes, that snippet of code would be for a simple 2 motor drive with tank drive control.
The principal of modifying the drive signals could be applied to any drivetrain train with any control layout (arcade, etc). You could even include dead bands and speed cuts if you like.
How would I make this into a split or left arcade code?
Also, what is a deadband and speed cuts? How would I make code for it?