Print fan automatically turns off after stop print
This commit is contained in:
parent
d0e678e1d1
commit
ea197360ac
|
|
@ -2720,6 +2720,11 @@ void lcd_sdcard_stop()
|
||||||
lcd_return_to_status();
|
lcd_return_to_status();
|
||||||
lcd_ignore_click(true);
|
lcd_ignore_click(true);
|
||||||
lcd_commands_type = LCD_COMMAND_STOP_PRINT;
|
lcd_commands_type = LCD_COMMAND_STOP_PRINT;
|
||||||
|
|
||||||
|
// Turn off the print fan
|
||||||
|
SET_OUTPUT(FAN_PIN);
|
||||||
|
WRITE(FAN_PIN, 0);
|
||||||
|
fanSpeed=0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue