|
Re: PID Gain Scheduling/Deadband Filtering For a Non-Linear Output
we typically square the joystick inputs, not the PID outputs. PID is a linear system, which you violate with the squaring. Squaring the joystick (PID setpoint) before the PID changes the driver responsiveness but does not change the PID math. BTW: to square use newjoy= joy * abs(joy) to preserve the sign.
|