forked from MarlinFirmware/Marlin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨ DOGM Display Sleep (MarlinFirmware#23992)
Co-authored-by: borland1 <[email protected]>
- Loading branch information
1 parent
f22307a
commit 32e6767
Showing
13 changed files
with
141 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
/** | ||
* Marlin 3D Printer Firmware | ||
* Copyright (c) 2022 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] | ||
* | ||
* Based on Sprinter and grbl. | ||
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
* | ||
*/ | ||
#include "../../inc/MarlinConfig.h" | ||
|
||
#if HAS_GCODE_M255 | ||
|
||
#include "../gcode.h" | ||
#include "../../lcd/marlinui.h" | ||
|
||
/** | ||
* M255: Set the LCD sleep timeout (in minutes) | ||
* S<minutes> - Period of inactivity required for display / backlight sleep | ||
*/ | ||
void GcodeSuite::M255() { | ||
if (parser.seenval('S')) { | ||
#if HAS_DISPLAY_SLEEP | ||
const int m = parser.value_int(); | ||
ui.sleep_timeout_minutes = constrain(m, SLEEP_TIMEOUT_MIN, SLEEP_TIMEOUT_MAX); | ||
#else | ||
const int s = parser.value_int() * 60; | ||
ui.lcd_backlight_timeout = constrain(s, LCD_BKL_TIMEOUT_MIN, LCD_BKL_TIMEOUT_MAX); | ||
#endif | ||
} | ||
else | ||
M255_report(); | ||
} | ||
|
||
void GcodeSuite::M255_report(const bool forReplay/*=true*/) { | ||
report_heading_etc(forReplay, F(STR_DISPLAY_SLEEP)); | ||
SERIAL_ECHOLNPGM(" M255 S", | ||
#if HAS_DISPLAY_SLEEP | ||
ui.sleep_timeout_minutes, " ; (minutes)" | ||
#else | ||
ui.lcd_backlight_timeout, " ; (seconds)" | ||
#endif | ||
); | ||
} | ||
|
||
#endif // HAS_GCODE_M255 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,7 +37,7 @@ USES_LIQUIDCRYSTAL_I2C = marcoschwartz/[email protected] | |
USES_LIQUIDTWI2 = [email protected] | ||
HAS_LCDPRINT = src_filter=+<src/lcd/lcdprint.cpp> | ||
HAS_MARLINUI_HD44780 = src_filter=+<src/lcd/HD44780> | ||
HAS_MARLINUI_U8GLIB = U8glib-HAL@~0.5.0 | ||
HAS_MARLINUI_U8GLIB = U8glib-HAL@~0.5.2 | ||
src_filter=+<src/lcd/dogm> | ||
HAS_(FSMC|SPI|LTDC)_TFT = src_filter=+<src/HAL/STM32/tft> +<src/HAL/STM32F1/tft> +<src/lcd/tft_io> | ||
HAS_FSMC_TFT = src_filter=+<src/HAL/STM32/tft/tft_fsmc.cpp> +<src/HAL/STM32F1/tft/tft_fsmc.cpp> | ||
|
@@ -202,6 +202,7 @@ HAS_RESUME_CONTINUE = src_filter=+<src/gcode/lcd/M0_M1.cpp> | |
LCD_SET_PROGRESS_MANUALLY = src_filter=+<src/gcode/lcd/M73.cpp> | ||
HAS_STATUS_MESSAGE = src_filter=+<src/gcode/lcd/M117.cpp> | ||
HAS_LCD_CONTRAST = src_filter=+<src/gcode/lcd/M250.cpp> | ||
HAS_GCODE_M255 = src_filter=+<src/gcode/lcd/M255.cpp> | ||
HAS_LCD_BRIGHTNESS = src_filter=+<src/gcode/lcd/M256.cpp> | ||
HAS_BUZZER = src_filter=+<src/gcode/lcd/M300.cpp> | ||
TOUCH_SCREEN_CALIBRATION = src_filter=+<src/gcode/lcd/M995.cpp> | ||
|