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
When a drive motor starts moving or changes direction it would be beneficial for the life of the motors to ramp the speed up instead of having a sudden jump from 0 to max speed. Also recommended for blade starts.
When a drive motor starts moving or changes direction it would be beneficial for the life of the motors to ramp the speed up instead of having a sudden jump from 0 to max speed. Also recommended for blade starts.
Something like:
while (speed_now < PWM_MaxSpeed)
delay(20);
analogWrite(ENAPin, speed_now );
analogWrite(ENBPin, speed_now );
speed_now =speed_now +20;
}
The text was updated successfully, but these errors were encountered: