mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2026-02-20 00:31:35 +01:00
🐛 Fix Controller Fan Soft PWM speed
Co-Authored-By: wrathernaut <97267123+wrathernaut@users.noreply.github.com>
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user