Browse Source

🩹 Add'l ProUI fixes (#24500, #24508)

FB4S_WIFI
GHGiampy 2 years ago
committed by Scott Lahteine
parent
commit
c72fe1a2f9
  1. 18
      Marlin/src/lcd/e3v2/proui/dwin.cpp
  2. 4
      Marlin/src/lcd/e3v2/proui/dwin_defines.h

18
Marlin/src/lcd/e3v2/proui/dwin.cpp

@ -99,7 +99,7 @@
#define HAS_ONESTEP_LEVELING 1
#endif
#if HAS_MESH || HAS_ONESTEP_LEVELING
#if HAS_MESH || (HAS_LEVELING && HAS_ZOFFSET_ITEM)
#include "../../../feature/bedlevel/bedlevel.h"
#include "bedlevel_tools.h"
#endif
@ -1825,7 +1825,7 @@ void DWIN_SetDataDefaults() {
#endif
TERN_(BAUD_RATE_GCODE, SetBaud250K());
#if BOTH(LED_CONTROL_MENU, HAS_COLOR_LEDS)
leds.set_default();
TERN_(LED_COLOR_PRESETS, leds.set_default());
ApplyLEDColor();
#endif
}
@ -2138,7 +2138,7 @@ void HomeZ() { queue.inject(F("G28Z")); }
);
gcode.process_subcommands_now(cmd);
#else
set_bed_leveling_enabled(false);
TERN_(HAS_LEVELING, set_bed_leveling_enabled(false));
gcode.process_subcommands_now(F("G28O\nG0Z0F300\nM400"));
#endif
ui.reset_status();
@ -2226,10 +2226,9 @@ void SetPID(celsius_t t, heater_id_t h) {
#endif
#if ENABLED(BAUD_RATE_GCODE)
void HMI_SetBaudRate() {
if (HMI_data.Baud115K) SetBaud115K(); else SetBaud250K();
}
void HMI_SetBaudRate() { HMI_data.Baud115K ? SetBaud115K() : SetBaud250K(); }
void SetBaudRate() {
HMI_data.Baud115K ^= true;
HMI_SetBaudRate();
Draw_Chkb_Line(CurrentMenu->line(), HMI_data.Baud115K);
DWIN_UpdateLCD();
@ -2268,9 +2267,7 @@ void SetPID(celsius_t t, heater_id_t h) {
#endif
#if HAS_COLOR_LEDS
void ApplyLEDColor() {
HMI_data.Led_Color = LEDColor(
TERN(HAS_WHITE_LED, { 0, 0, 0, leds.color.w }, { leds.color.r, leds.color.g, leds.color.b })
);
HMI_data.Led_Color = LEDColor( {leds.color.r, leds.color.g, leds.color.b OPTARG(HAS_WHITE_LED, HMI_data.Led_Color.w) } );
}
void LiveLEDColor(uint8_t *color) { *color = MenuData.Value; leds.update(); }
void LiveLEDColorR() { LiveLEDColor(&leds.color.r); }
@ -3415,7 +3412,7 @@ void Draw_GetColor_Menu() {
EDIT_ITEM_F(ICON_LedControl, MSG_COLORS_GREEN, onDrawPInt8Menu, SetLEDColorG, &leds.color.g);
EDIT_ITEM_F(ICON_LedControl, MSG_COLORS_BLUE, onDrawPInt8Menu, SetLEDColorB, &leds.color.b);
#if ENABLED(HAS_WHITE_LED)
EDIT_ITEM_F(ICON_LedControl, MSG_COLORS_WHITE, onDrawPInt8Menu, SetLedColorW, &leds.color.w);
EDIT_ITEM_F(ICON_LedControl, MSG_COLORS_WHITE, onDrawPInt8Menu, SetLEDColorW, &leds.color.w);
#endif
#endif
#endif
@ -3828,6 +3825,7 @@ void Draw_Steps_Menu() {
#endif // AUTO_BED_LEVELING_UBL
#if HAS_MESH
void Draw_MeshSet_Menu() {
checkkey = Menu;
if (SetMenu(MeshMenu, GET_TEXT_F(MSG_MESH_LEVELING), 15)) {

4
Marlin/src/lcd/e3v2/proui/dwin_defines.h

@ -37,13 +37,15 @@
#include "../../../inc/MarlinConfigPre.h"
#include "../common/dwin_color.h"
#if ENABLED(LED_CONTROL_MENU)
#include "../../../feature/leds/leds.h"
#endif
#include <stddef.h>
#if defined(__STM32F1__) || defined(STM32F1)
#define DASH_REDRAW 1
#endif
#define Def_Background_Color RGB( 1, 12, 8)
#define Def_Cursor_color RGB(20, 49, 31)
#define Def_TitleBg_color RGB( 0, 23, 16)

Loading…
Cancel
Save