Add filament runout sensor menu item (#11971)
This commit is contained in:
committed by
Scott Lahteine
parent
8489673cea
commit
4d5566a6b7
@ -71,6 +71,10 @@
|
||||
#include "../feature/leds/leds.h"
|
||||
#endif
|
||||
|
||||
#if ENABLED(FILAMENT_RUNOUT_SENSOR)
|
||||
#include "../feature/runout.h"
|
||||
#endif
|
||||
|
||||
#if DISABLED(LCD_USE_I2C_BUZZER)
|
||||
#include "../libs/buzzer.h"
|
||||
#endif
|
||||
@ -3428,6 +3432,10 @@ void lcd_quick_feedback(const bool clear_buttons) {
|
||||
MENU_ITEM(submenu, MSG_BLTOUCH, bltouch_menu);
|
||||
#endif
|
||||
|
||||
#if ENABLED(FILAMENT_RUNOUT_SENSOR)
|
||||
MENU_ITEM_EDIT(bool, MSG_RUNOUT_SENSOR_ENABLE, &runout.enabled);
|
||||
#endif
|
||||
|
||||
#if DISABLED(SLIM_LCD_MENUS)
|
||||
// Preheat configurations
|
||||
MENU_ITEM(submenu, MSG_PREHEAT_1_SETTINGS, lcd_configuration_temperature_preheat_material1_settings_menu);
|
||||
|
Reference in New Issue
Block a user