mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-12-29 02:40:41 -07:00
🐛 Fix Controller Fan Soft PWM speed
Co-Authored-By: wrathernaut <97267123+wrathernaut@users.noreply.github.com>
This commit is contained in:
parent
938d3db36f
commit
d23ac65dd4
1 changed files with 1 additions and 1 deletions
|
|
@ -134,7 +134,7 @@ void ControllerFan::update() {
|
|||
} while (0)
|
||||
|
||||
#if ENABLED(FAN_SOFT_PWM)
|
||||
soft_pwm_speed = speed;
|
||||
soft_pwm_speed = speed >> 1; // Controller Fan Soft PWM uses 0-127 as 0-100% so cut the 0-255 range in half.
|
||||
#else
|
||||
SET_CONTROLLER_FAN();
|
||||
#if PIN_EXISTS(CONTROLLER_FAN2)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue