Print fan automatically turns off after stop print

This commit is contained in:
michalprusa 2016-10-19 15:54:48 +02:00
parent d0e678e1d1
commit ea197360ac
1 changed files with 5 additions and 0 deletions

View File

@ -2720,6 +2720,11 @@ void lcd_sdcard_stop()
lcd_return_to_status();
lcd_ignore_click(true);
lcd_commands_type = LCD_COMMAND_STOP_PRINT;
// Turn off the print fan
SET_OUTPUT(FAN_PIN);
WRITE(FAN_PIN, 0);
fanSpeed=0;
}
}