Fix / complete USE_CONTROLLER_FAN (#9666)

This commit is contained in:
Bob-the-Kuhn
2018-02-16 02:18:50 -06:00
committed by Scott Lahteine
parent 08d685c97a
commit 2d749d490b
3 changed files with 8 additions and 1 deletions

View File

@@ -46,7 +46,7 @@ bool Power::is_power_needed() {
HOTEND_LOOP() if (thermalManager.autofan_speed[e] > 0) return true;
#endif
#if ENABLED(AUTO_POWER_CONTROLLERFAN) && HAS_CONTROLLER_FAN
#if ENABLED(AUTO_POWER_CONTROLLERFAN) && HAS_CONTROLLER_FAN && ENABLED(USE_CONTROLLER_FAN)
if (controllerFanSpeed > 0) return true;
#endif