🩹 Status / Host Prompt followup (#25720)
Followup to #25679 Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
This commit is contained in:
@@ -1413,6 +1413,13 @@ void MarlinUI::init() {
|
|||||||
|
|
||||||
#endif // HAS_ENCODER_ACTION
|
#endif // HAS_ENCODER_ACTION
|
||||||
|
|
||||||
|
#if HAS_SOUND
|
||||||
|
void MarlinUI::completion_feedback(const bool good/*=true*/) {
|
||||||
|
TERN_(HAS_TOUCH_SLEEP, wakeup_screen()); // Wake up on rotary encoder click...
|
||||||
|
if (good) OKAY_BUZZ(); else ERR_BUZZ();
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif // HAS_WIRED_LCD
|
#endif // HAS_WIRED_LCD
|
||||||
|
|
||||||
#if HAS_STATUS_MESSAGE
|
#if HAS_STATUS_MESSAGE
|
||||||
|
@@ -492,11 +492,6 @@ public:
|
|||||||
|
|
||||||
static void status_screen();
|
static void status_screen();
|
||||||
|
|
||||||
#else
|
|
||||||
|
|
||||||
static void quick_feedback(const bool=true) {}
|
|
||||||
static void completion_feedback(const bool=true) {}
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if HAS_MARLINUI_U8GLIB
|
#if HAS_MARLINUI_U8GLIB
|
||||||
@@ -527,6 +522,11 @@ public:
|
|||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if !HAS_WIRED_LCD
|
||||||
|
static void quick_feedback(const bool=true) {}
|
||||||
|
static void completion_feedback(const bool=true) {}
|
||||||
|
#endif
|
||||||
|
|
||||||
#if ENABLED(SDSUPPORT)
|
#if ENABLED(SDSUPPORT)
|
||||||
#if BOTH(SCROLL_LONG_FILENAMES, HAS_MARLINUI_MENU)
|
#if BOTH(SCROLL_LONG_FILENAMES, HAS_MARLINUI_MENU)
|
||||||
#define MARLINUI_SCROLL_NAME 1
|
#define MARLINUI_SCROLL_NAME 1
|
||||||
|
@@ -271,13 +271,6 @@ void scroll_screen(const uint8_t limit, const bool is_menu) {
|
|||||||
encoderTopLine = encoderLine;
|
encoderTopLine = encoderLine;
|
||||||
}
|
}
|
||||||
|
|
||||||
#if HAS_SOUND
|
|
||||||
void MarlinUI::completion_feedback(const bool good/*=true*/) {
|
|
||||||
TERN_(HAS_TOUCH_SLEEP, wakeup_screen()); // Wake up on rotary encoder click...
|
|
||||||
if (good) OKAY_BUZZ(); else ERR_BUZZ();
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if HAS_LINE_TO_Z
|
#if HAS_LINE_TO_Z
|
||||||
|
|
||||||
void line_to_z(const_float_t z) {
|
void line_to_z(const_float_t z) {
|
||||||
|
Reference in New Issue
Block a user