@@ -180,7 +180,7 @@ void DGUSScreenHandler::DGUSLCD_SendStringToDisplayPGM(DGUS_VP_Variable &var) {
 | 
			
		||||
    float valuesend = 0;
 | 
			
		||||
    switch (var.VP) {
 | 
			
		||||
      default: return;
 | 
			
		||||
      #if HOTENDS >= 1
 | 
			
		||||
      #if HAS_HOTEND
 | 
			
		||||
        case VP_E0_PID_P: valuesend = value; break;
 | 
			
		||||
        case VP_E0_PID_I: valuesend = unscalePID_i(value); break;
 | 
			
		||||
        case VP_E0_PID_D: valuesend = unscalePID_d(value); break;
 | 
			
		||||
@@ -393,7 +393,7 @@ void DGUSScreenHandler::HandleTemperatureChanged(DGUS_VP_Variable &var, void *va
 | 
			
		||||
 | 
			
		||||
  switch (var.VP) {
 | 
			
		||||
    default: return;
 | 
			
		||||
    #if HOTENDS >= 1
 | 
			
		||||
    #if HAS_HOTEND
 | 
			
		||||
      case VP_T_E0_Set:
 | 
			
		||||
        NOMORE(newvalue, HEATER_0_MAXTEMP);
 | 
			
		||||
        thermalManager.setTargetHotend(newvalue, 0);
 | 
			
		||||
@@ -427,10 +427,8 @@ void DGUSScreenHandler::HandleFlowRateChanged(DGUS_VP_Variable &var, void *val_p
 | 
			
		||||
    uint8_t target_extruder;
 | 
			
		||||
    switch (var.VP) {
 | 
			
		||||
      default: return;
 | 
			
		||||
      #if HOTENDS >= 1
 | 
			
		||||
        case VP_Flowrate_E0: target_extruder = 0; break;
 | 
			
		||||
      #endif
 | 
			
		||||
      #if HOTENDS >= 2
 | 
			
		||||
      case VP_Flowrate_E0: target_extruder = 0; break;
 | 
			
		||||
      #if HAS_MULTI_EXTRUDER
 | 
			
		||||
        case VP_Flowrate_E1: target_extruder = 1; break;
 | 
			
		||||
      #endif
 | 
			
		||||
    }
 | 
			
		||||
@@ -450,11 +448,11 @@ void DGUSScreenHandler::HandleManualExtrude(DGUS_VP_Variable &var, void *val_ptr
 | 
			
		||||
  ExtUI::extruder_t target_extruder;
 | 
			
		||||
 | 
			
		||||
  switch (var.VP) {
 | 
			
		||||
    #if HOTENDS >= 1
 | 
			
		||||
    #if HAS_HOTEND
 | 
			
		||||
      case VP_MOVE_E0: target_extruder = ExtUI::extruder_t::E0; break;
 | 
			
		||||
    #endif
 | 
			
		||||
    #if HOTENDS >= 2
 | 
			
		||||
      case VP_MOVE_E1: target_extruder = ExtUI::extruder_t::E1; break;
 | 
			
		||||
      #if HAS_MULTI_EXTRUDER
 | 
			
		||||
        case VP_MOVE_E1: target_extruder = ExtUI::extruder_t::E1; break;
 | 
			
		||||
      #endif
 | 
			
		||||
    #endif
 | 
			
		||||
    default: return;
 | 
			
		||||
  }
 | 
			
		||||
@@ -526,11 +524,11 @@ void DGUSScreenHandler::HandleStepPerMMExtruderChanged(DGUS_VP_Variable &var, vo
 | 
			
		||||
  ExtUI::extruder_t extruder;
 | 
			
		||||
  switch (var.VP) {
 | 
			
		||||
    default: return;
 | 
			
		||||
      #if HOTENDS >= 1
 | 
			
		||||
      #if HAS_EXTRUDERS
 | 
			
		||||
        case VP_E0_STEP_PER_MM: extruder = ExtUI::extruder_t::E0; break;
 | 
			
		||||
      #endif
 | 
			
		||||
      #if HOTENDS >= 2
 | 
			
		||||
        case VP_E1_STEP_PER_MM: extruder = ExtUI::extruder_t::E1; break;
 | 
			
		||||
        #if HAS_MULTI_EXTRUDER
 | 
			
		||||
          case VP_E1_STEP_PER_MM: extruder = ExtUI::extruder_t::E1; break;
 | 
			
		||||
        #endif
 | 
			
		||||
      #endif
 | 
			
		||||
  }
 | 
			
		||||
  DEBUG_ECHOLNPAIR_F("value:", value);
 | 
			
		||||
@@ -548,7 +546,7 @@ void DGUSScreenHandler::HandleStepPerMMExtruderChanged(DGUS_VP_Variable &var, vo
 | 
			
		||||
    switch (var.VP) {
 | 
			
		||||
      default: break;
 | 
			
		||||
        #if ENABLED(PIDTEMP)
 | 
			
		||||
          #if HOTENDS >= 1
 | 
			
		||||
          #if HAS_HOTEND
 | 
			
		||||
            case VP_PID_AUTOTUNE_E0: // Autotune Extruder 0
 | 
			
		||||
              sprintf_P(buf, PSTR("M303 E%d C5 S210 U1"), ExtUI::extruder_t::E0);
 | 
			
		||||
              break;
 | 
			
		||||
@@ -598,17 +596,17 @@ void DGUSScreenHandler::HandleHeaterControl(DGUS_VP_Variable &var, void *val_ptr
 | 
			
		||||
 | 
			
		||||
  uint8_t preheat_temp = 0;
 | 
			
		||||
  switch (var.VP) {
 | 
			
		||||
    #if HOTENDS >= 1
 | 
			
		||||
    #if HAS_HOTEND
 | 
			
		||||
      case VP_E0_CONTROL:
 | 
			
		||||
      #if HOTENDS >= 2
 | 
			
		||||
        case VP_E1_CONTROL:
 | 
			
		||||
        #if HOTENDS >= 3
 | 
			
		||||
          case VP_E2_CONTROL:
 | 
			
		||||
        #endif
 | 
			
		||||
      #endif
 | 
			
		||||
      preheat_temp = PREHEAT_1_TEMP_HOTEND;
 | 
			
		||||
      break;
 | 
			
		||||
    #endif
 | 
			
		||||
    #if HOTENDS >= 2
 | 
			
		||||
      case VP_E1_CONTROL:
 | 
			
		||||
    #endif
 | 
			
		||||
    #if HOTENDS >= 3
 | 
			
		||||
      case VP_E2_CONTROL:
 | 
			
		||||
    #endif
 | 
			
		||||
    preheat_temp = PREHEAT_1_TEMP_HOTEND;
 | 
			
		||||
    break;
 | 
			
		||||
 | 
			
		||||
    case VP_BED_CONTROL:
 | 
			
		||||
      preheat_temp = PREHEAT_1_TEMP_BED;
 | 
			
		||||
@@ -660,7 +658,7 @@ void DGUSScreenHandler::HandleHeaterControl(DGUS_VP_Variable &var, void *val_ptr
 | 
			
		||||
 | 
			
		||||
    switch (var.VP) {
 | 
			
		||||
      default: return;
 | 
			
		||||
        #if HOTENDS >= 1
 | 
			
		||||
        #if HAS_HOTEND
 | 
			
		||||
          case VP_E0_BED_PREHEAT:
 | 
			
		||||
            thermalManager.setTargetHotend(e_temp, 0);
 | 
			
		||||
            TERN_(HAS_HEATED_BED, thermalManager.setTargetBed(bed_temp));
 | 
			
		||||
 
 | 
			
		||||
@@ -56,3 +56,21 @@ inline uint16_t swap16(const uint16_t value) { return (value & 0xFFU) << 8U | (v
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
extern DGUSScreenHandler ScreenHandler;
 | 
			
		||||
 | 
			
		||||
// Helper to define a DGUS_VP_Variable for common use-cases.
 | 
			
		||||
#define VPHELPER(VPADR, VPADRVAR, RXFPTR, TXFPTR) { \
 | 
			
		||||
  .VP = VPADR, \
 | 
			
		||||
  .memadr = VPADRVAR, \
 | 
			
		||||
  .size = sizeof(VPADRVAR), \
 | 
			
		||||
  .set_by_display_handler = RXFPTR, \
 | 
			
		||||
  .send_to_display_handler = TXFPTR \
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Helper to define a DGUS_VP_Variable when the size of the var cannot be determined automatically (e.g., a string)
 | 
			
		||||
#define VPHELPER_STR(VPADR, VPADRVAR, STRLEN, RXFPTR, TXFPTR) { \
 | 
			
		||||
  .VP = VPADR, \
 | 
			
		||||
  .memadr = VPADRVAR, \
 | 
			
		||||
  .size = STRLEN, \
 | 
			
		||||
  .set_by_display_handler = RXFPTR, \
 | 
			
		||||
  .send_to_display_handler = TXFPTR \
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
@@ -41,14 +41,11 @@
 | 
			
		||||
  uint16_t distanceToMove = 10;
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
const uint16_t VPList_Boot[] PROGMEM = {
 | 
			
		||||
  VP_MARLIN_VERSION,
 | 
			
		||||
  0x0000
 | 
			
		||||
};
 | 
			
		||||
const uint16_t VPList_Boot[] PROGMEM = { VP_MARLIN_VERSION, 0x0000 };
 | 
			
		||||
 | 
			
		||||
const uint16_t VPList_Main[] PROGMEM = {
 | 
			
		||||
  /* VP_M117, for completeness, but it cannot be auto-uploaded. */
 | 
			
		||||
  #if HOTENDS >= 1
 | 
			
		||||
  // VP_M117, for completeness, but it cannot be auto-uploaded.
 | 
			
		||||
  #if HAS_HOTEND
 | 
			
		||||
    VP_T_E0_Is, VP_T_E0_Set, VP_E0_STATUS,
 | 
			
		||||
  #endif
 | 
			
		||||
  #if HOTENDS >= 2
 | 
			
		||||
@@ -70,7 +67,7 @@ const uint16_t VPList_Main[] PROGMEM = {
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
const uint16_t VPList_Temp[] PROGMEM = {
 | 
			
		||||
  #if HOTENDS >= 1
 | 
			
		||||
  #if HAS_HOTEND
 | 
			
		||||
    VP_T_E0_Is, VP_T_E0_Set,
 | 
			
		||||
  #endif
 | 
			
		||||
  #if HOTENDS >= 2
 | 
			
		||||
@@ -83,8 +80,8 @@ const uint16_t VPList_Temp[] PROGMEM = {
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
const uint16_t VPList_Status[] PROGMEM = {
 | 
			
		||||
  /* VP_M117, for completeness, but it cannot be auto-uploaded */
 | 
			
		||||
  #if HOTENDS >= 1
 | 
			
		||||
  // VP_M117, for completeness, but it cannot be auto-uploaded
 | 
			
		||||
  #if HAS_HOTEND
 | 
			
		||||
    VP_T_E0_Is, VP_T_E0_Set,
 | 
			
		||||
  #endif
 | 
			
		||||
  #if HOTENDS >= 2
 | 
			
		||||
@@ -105,11 +102,11 @@ const uint16_t VPList_Status[] PROGMEM = {
 | 
			
		||||
 | 
			
		||||
const uint16_t VPList_Status2[] PROGMEM = {
 | 
			
		||||
  /* VP_M117, for completeness, but it cannot be auto-uploaded */
 | 
			
		||||
  #if HOTENDS >= 1
 | 
			
		||||
  #if HAS_HOTEND
 | 
			
		||||
    VP_Flowrate_E0,
 | 
			
		||||
  #endif
 | 
			
		||||
  #if HOTENDS >= 2
 | 
			
		||||
    VP_Flowrate_E1,
 | 
			
		||||
    #if HAS_MULTI_EXTRUDER
 | 
			
		||||
      VP_Flowrate_E1,
 | 
			
		||||
    #endif
 | 
			
		||||
  #endif
 | 
			
		||||
  VP_PrintProgress_Percentage,
 | 
			
		||||
  VP_PrintTime,
 | 
			
		||||
@@ -117,7 +114,7 @@ const uint16_t VPList_Status2[] PROGMEM = {
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
const uint16_t VPList_Preheat[] PROGMEM = {
 | 
			
		||||
  #if HOTENDS >= 1
 | 
			
		||||
  #if HAS_HOTEND
 | 
			
		||||
    VP_T_E0_Is, VP_T_E0_Set,
 | 
			
		||||
  #endif
 | 
			
		||||
  #if HOTENDS >= 2
 | 
			
		||||
@@ -135,11 +132,11 @@ const uint16_t VPList_ManualMove[] PROGMEM = {
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
const uint16_t VPList_ManualExtrude[] PROGMEM = {
 | 
			
		||||
  #if HOTENDS >= 1
 | 
			
		||||
  #if HAS_HOTEND
 | 
			
		||||
    VP_T_E0_Is, VP_T_E0_Set,
 | 
			
		||||
  #endif
 | 
			
		||||
  #if HOTENDS >= 2
 | 
			
		||||
    VP_T_E1_Is, VP_T_E1_Set,
 | 
			
		||||
    #if HAS_MULTI_EXTRUDER
 | 
			
		||||
      VP_T_E1_Is, VP_T_E1_Set,
 | 
			
		||||
    #endif
 | 
			
		||||
  #endif
 | 
			
		||||
  VP_EPos,
 | 
			
		||||
  0x0000
 | 
			
		||||
@@ -156,23 +153,23 @@ const uint16_t VPList_SD_FlowRates[] PROGMEM = {
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
const uint16_t VPList_Filament_heating[] PROGMEM = {
 | 
			
		||||
  #if HOTENDS >= 1
 | 
			
		||||
  #if HAS_HOTEND
 | 
			
		||||
    VP_T_E0_Is, VP_T_E0_Set,
 | 
			
		||||
    VP_E0_FILAMENT_LOAD_UNLOAD,
 | 
			
		||||
  #endif
 | 
			
		||||
  #if HOTENDS >= 2
 | 
			
		||||
    VP_T_E1_Is, VP_T_E1_Set,
 | 
			
		||||
    VP_E1_FILAMENT_LOAD_UNLOAD,
 | 
			
		||||
    #if HAS_MULTI_EXTRUDER
 | 
			
		||||
      VP_T_E1_Is, VP_T_E1_Set,
 | 
			
		||||
      VP_E1_FILAMENT_LOAD_UNLOAD,
 | 
			
		||||
    #endif
 | 
			
		||||
  #endif
 | 
			
		||||
  0x0000
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
const uint16_t VPList_Filament_load_unload[] PROGMEM = {
 | 
			
		||||
  #if HOTENDS >= 1
 | 
			
		||||
  #if HAS_HOTEND
 | 
			
		||||
    VP_E0_FILAMENT_LOAD_UNLOAD,
 | 
			
		||||
  #endif
 | 
			
		||||
  #if HOTENDS >= 2
 | 
			
		||||
    VP_E1_FILAMENT_LOAD_UNLOAD,
 | 
			
		||||
    #if HAS_MULTI_EXTRUDER
 | 
			
		||||
      VP_E1_FILAMENT_LOAD_UNLOAD,
 | 
			
		||||
    #endif
 | 
			
		||||
  #endif
 | 
			
		||||
  0x0000
 | 
			
		||||
};
 | 
			
		||||
@@ -184,7 +181,7 @@ const uint16_t VPList_SDFileList[] PROGMEM = {
 | 
			
		||||
 | 
			
		||||
const uint16_t VPList_SD_PrintManipulation[] PROGMEM = {
 | 
			
		||||
  VP_PrintProgress_Percentage, VP_PrintTime,
 | 
			
		||||
  #if HOTENDS >= 1
 | 
			
		||||
  #if HAS_HOTEND
 | 
			
		||||
    VP_T_E0_Is, VP_T_E0_Set,
 | 
			
		||||
  #endif
 | 
			
		||||
  #if HOTENDS >= 2
 | 
			
		||||
@@ -204,11 +201,11 @@ const uint16_t VPList_SD_PrintManipulation[] PROGMEM = {
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
const uint16_t VPList_SDPrintTune[] PROGMEM = {
 | 
			
		||||
  #if HOTENDS >= 1
 | 
			
		||||
  #if HAS_HOTEND
 | 
			
		||||
    VP_T_E0_Is, VP_T_E0_Set, VP_Flowrate_E0,
 | 
			
		||||
  #endif
 | 
			
		||||
  #if HOTENDS >= 2
 | 
			
		||||
    VP_T_E1_Is, VP_T_E1_Set, VP_Flowrate_E1,
 | 
			
		||||
    #if HAS_MULTI_EXTRUDER
 | 
			
		||||
      VP_T_E1_Is, VP_T_E1_Set, VP_Flowrate_E1,  // ERROR: Flowrate is per-extruder, not per-hotend
 | 
			
		||||
    #endif
 | 
			
		||||
  #endif
 | 
			
		||||
  #if HAS_HEATED_BED
 | 
			
		||||
    VP_T_Bed_Is, VP_T_Bed_Set,
 | 
			
		||||
@@ -222,11 +219,11 @@ const uint16_t VPList_StepPerMM[] PROGMEM = {
 | 
			
		||||
  VP_X_STEP_PER_MM,
 | 
			
		||||
  VP_Y_STEP_PER_MM,
 | 
			
		||||
  VP_Z_STEP_PER_MM,
 | 
			
		||||
  #if HOTENDS >= 1
 | 
			
		||||
  #if HAS_EXTRUDERS
 | 
			
		||||
    VP_E0_STEP_PER_MM,
 | 
			
		||||
  #endif
 | 
			
		||||
  #if HOTENDS >= 2
 | 
			
		||||
    VP_E1_STEP_PER_MM,
 | 
			
		||||
    #if HAS_MULTI_EXTRUDER
 | 
			
		||||
      VP_E1_STEP_PER_MM,
 | 
			
		||||
    #endif
 | 
			
		||||
  #endif
 | 
			
		||||
  0x0000
 | 
			
		||||
};
 | 
			
		||||
@@ -265,7 +262,7 @@ const uint16_t VPList_PIDTuningWaiting[] PROGMEM = {
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
const uint16_t VPList_FLCPreheat[] PROGMEM = {
 | 
			
		||||
  #if HOTENDS >= 1
 | 
			
		||||
  #if HAS_HOTEND
 | 
			
		||||
    VP_T_E0_Is, VP_T_E0_Set,
 | 
			
		||||
  #endif
 | 
			
		||||
  #if HAS_HEATED_BED
 | 
			
		||||
@@ -275,14 +272,14 @@ const uint16_t VPList_FLCPreheat[] PROGMEM = {
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
const uint16_t VPList_FLCPrinting[] PROGMEM = {
 | 
			
		||||
  #if HOTENDS >= 1
 | 
			
		||||
  #if HAS_HOTEND
 | 
			
		||||
    VP_SD_Print_ProbeOffsetZ,
 | 
			
		||||
  #endif
 | 
			
		||||
  0x0000
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
const uint16_t VPList_Z_Offset[] PROGMEM = {
 | 
			
		||||
  #if HOTENDS >= 1
 | 
			
		||||
  #if HAS_HOTEND
 | 
			
		||||
    VP_SD_Print_ProbeOffsetZ,
 | 
			
		||||
  #endif
 | 
			
		||||
  0x0000
 | 
			
		||||
@@ -316,14 +313,6 @@ const struct VPMapping VPMap[] PROGMEM = {
 | 
			
		||||
 | 
			
		||||
const char MarlinVersion[] PROGMEM = SHORT_BUILD_VERSION;
 | 
			
		||||
 | 
			
		||||
// Helper to define a DGUS_VP_Variable for common use cases.
 | 
			
		||||
#define VPHELPER(VPADR, VPADRVAR, RXFPTR, TXFPTR ) { .VP=VPADR, .memadr=VPADRVAR, .size=sizeof(VPADRVAR), \
 | 
			
		||||
  .set_by_display_handler = RXFPTR, .send_to_display_handler = TXFPTR }
 | 
			
		||||
 | 
			
		||||
// Helper to define a DGUS_VP_Variable when the sizeo of the var cannot be determined automaticalyl (eg. a string)
 | 
			
		||||
#define VPHELPER_STR(VPADR, VPADRVAR, STRLEN, RXFPTR, TXFPTR ) { .VP=VPADR, .memadr=VPADRVAR, .size=STRLEN, \
 | 
			
		||||
  .set_by_display_handler = RXFPTR, .send_to_display_handler = TXFPTR }
 | 
			
		||||
 | 
			
		||||
const struct DGUS_VP_Variable ListOfVP[] PROGMEM = {
 | 
			
		||||
  // Helper to detect touch events
 | 
			
		||||
  VPHELPER(VP_SCREENCHANGE, nullptr, ScreenHandler.ScreenChangeHook, nullptr),
 | 
			
		||||
@@ -333,96 +322,96 @@ const struct DGUS_VP_Variable ListOfVP[] PROGMEM = {
 | 
			
		||||
  #endif
 | 
			
		||||
  VPHELPER(VP_CONFIRMED, nullptr, ScreenHandler.ScreenConfirmedOK, nullptr),
 | 
			
		||||
 | 
			
		||||
  VPHELPER(VP_TEMP_ALL_OFF, nullptr, &ScreenHandler.HandleAllHeatersOff, nullptr),
 | 
			
		||||
  VPHELPER(VP_TEMP_ALL_OFF, nullptr, ScreenHandler.HandleAllHeatersOff, nullptr),
 | 
			
		||||
  #if ENABLED(DGUS_UI_MOVE_DIS_OPTION)
 | 
			
		||||
    VPHELPER(VP_MOVE_OPTION, &distanceToMove, &ScreenHandler.HandleManualMoveOption, nullptr),
 | 
			
		||||
    VPHELPER(VP_MOVE_OPTION, &distanceToMove, ScreenHandler.HandleManualMoveOption, nullptr),
 | 
			
		||||
  #endif
 | 
			
		||||
  #if ENABLED(DGUS_UI_MOVE_DIS_OPTION)
 | 
			
		||||
    VPHELPER(VP_MOVE_X, &distanceToMove, &ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
    VPHELPER(VP_MOVE_Y, &distanceToMove, &ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
    VPHELPER(VP_MOVE_Z, &distanceToMove, &ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
    VPHELPER(VP_HOME_ALL, &distanceToMove, &ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
    VPHELPER(VP_MOVE_X, &distanceToMove, ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
    VPHELPER(VP_MOVE_Y, &distanceToMove, ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
    VPHELPER(VP_MOVE_Z, &distanceToMove, ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
    VPHELPER(VP_HOME_ALL, &distanceToMove, ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
  #else
 | 
			
		||||
    VPHELPER(VP_MOVE_X, nullptr, &ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
    VPHELPER(VP_MOVE_Y, nullptr, &ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
    VPHELPER(VP_MOVE_Z, nullptr, &ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
    VPHELPER(VP_HOME_ALL, nullptr, &ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
    VPHELPER(VP_MOVE_X, nullptr, ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
    VPHELPER(VP_MOVE_Y, nullptr, ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
    VPHELPER(VP_MOVE_Z, nullptr, ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
    VPHELPER(VP_HOME_ALL, nullptr, ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
  #endif
 | 
			
		||||
  VPHELPER(VP_MOTOR_LOCK_UNLOK, nullptr, &ScreenHandler.HandleMotorLockUnlock, nullptr),
 | 
			
		||||
  VPHELPER(VP_MOTOR_LOCK_UNLOK, nullptr, ScreenHandler.HandleMotorLockUnlock, nullptr),
 | 
			
		||||
  #if ENABLED(POWER_LOSS_RECOVERY)
 | 
			
		||||
    VPHELPER(VP_POWER_LOSS_RECOVERY, nullptr, &ScreenHandler.HandlePowerLossRecovery, nullptr),
 | 
			
		||||
    VPHELPER(VP_POWER_LOSS_RECOVERY, nullptr, ScreenHandler.HandlePowerLossRecovery, nullptr),
 | 
			
		||||
  #endif
 | 
			
		||||
  VPHELPER(VP_SETTINGS, nullptr, &ScreenHandler.HandleSettings, nullptr),
 | 
			
		||||
  VPHELPER(VP_SETTINGS, nullptr, ScreenHandler.HandleSettings, nullptr),
 | 
			
		||||
  #if ENABLED(SINGLE_Z_CALIBRATION)
 | 
			
		||||
    VPHELPER(VP_Z_CALIBRATE, nullptr, &ScreenHandler.HandleZCalibration, nullptr),
 | 
			
		||||
    VPHELPER(VP_Z_CALIBRATE, nullptr, ScreenHandler.HandleZCalibration, nullptr),
 | 
			
		||||
  #endif
 | 
			
		||||
 | 
			
		||||
  #if ENABLED(FIRST_LAYER_CAL)
 | 
			
		||||
    VPHELPER(VP_Z_FIRST_LAYER_CAL, nullptr, &ScreenHandler.HandleFirstLayerCal, nullptr),
 | 
			
		||||
    VPHELPER(VP_Z_FIRST_LAYER_CAL, nullptr, ScreenHandler.HandleFirstLayerCal, nullptr),
 | 
			
		||||
  #endif
 | 
			
		||||
 | 
			
		||||
  { .VP = VP_MARLIN_VERSION, .memadr = (void*)MarlinVersion, .size = VP_MARLIN_VERSION_LEN, .set_by_display_handler = nullptr, .send_to_display_handler =&ScreenHandler.DGUSLCD_SendStringToDisplayPGM },
 | 
			
		||||
  { .VP = VP_MARLIN_VERSION, .memadr = (void*)MarlinVersion, .size = VP_MARLIN_VERSION_LEN, .set_by_display_handler = nullptr, .send_to_display_handler = ScreenHandler.DGUSLCD_SendStringToDisplayPGM },
 | 
			
		||||
  // M117 LCD String (We don't need the string in memory but "just" push it to the display on demand, hence the nullptr
 | 
			
		||||
  { .VP = VP_M117, .memadr = nullptr, .size = VP_M117_LEN, .set_by_display_handler = nullptr, .send_to_display_handler =&ScreenHandler.DGUSLCD_SendStringToDisplay },
 | 
			
		||||
  { .VP = VP_M117, .memadr = nullptr, .size = VP_M117_LEN, .set_by_display_handler = nullptr, .send_to_display_handler = ScreenHandler.DGUSLCD_SendStringToDisplay },
 | 
			
		||||
 | 
			
		||||
  // Temperature Data
 | 
			
		||||
  #if HOTENDS >= 1
 | 
			
		||||
  #if HAS_HOTEND
 | 
			
		||||
    VPHELPER(VP_T_E0_Is, &thermalManager.temp_hotend[0].celsius, nullptr, ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
    VPHELPER(VP_T_E0_Set, &thermalManager.temp_hotend[0].target, ScreenHandler.HandleTemperatureChanged, &ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
    VPHELPER(VP_Flowrate_E0, &planner.flow_percentage[ExtUI::extruder_t::E0], ScreenHandler.HandleFlowRateChanged, &ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
    VPHELPER(VP_T_E0_Set, &thermalManager.temp_hotend[0].target, ScreenHandler.HandleTemperatureChanged, ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
    VPHELPER(VP_Flowrate_E0, &planner.flow_percentage[ExtUI::extruder_t::E0], ScreenHandler.HandleFlowRateChanged, ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
    VPHELPER(VP_EPos, &destination.e, nullptr, ScreenHandler.DGUSLCD_SendFloatAsLongValueToDisplay<2>),
 | 
			
		||||
    VPHELPER(VP_MOVE_E0, nullptr, &ScreenHandler.HandleManualExtrude, nullptr),
 | 
			
		||||
    VPHELPER(VP_E0_CONTROL, &thermalManager.temp_hotend[0].target, &ScreenHandler.HandleHeaterControl, nullptr),
 | 
			
		||||
    VPHELPER(VP_E0_STATUS, &thermalManager.temp_hotend[0].target, nullptr, &ScreenHandler.DGUSLCD_SendHeaterStatusToDisplay),
 | 
			
		||||
    VPHELPER(VP_MOVE_E0, nullptr, ScreenHandler.HandleManualExtrude, nullptr),
 | 
			
		||||
    VPHELPER(VP_E0_CONTROL, &thermalManager.temp_hotend[0].target, ScreenHandler.HandleHeaterControl, nullptr),
 | 
			
		||||
    VPHELPER(VP_E0_STATUS, &thermalManager.temp_hotend[0].target, nullptr, ScreenHandler.DGUSLCD_SendHeaterStatusToDisplay),
 | 
			
		||||
    #if ENABLED(DGUS_PREHEAT_UI)
 | 
			
		||||
      VPHELPER(VP_E0_BED_PREHEAT, nullptr, &ScreenHandler.HandlePreheat, nullptr),
 | 
			
		||||
      VPHELPER(VP_E0_BED_PREHEAT, nullptr, ScreenHandler.HandlePreheat, nullptr),
 | 
			
		||||
    #endif
 | 
			
		||||
    #if ENABLED(PIDTEMP)
 | 
			
		||||
      VPHELPER(VP_E0_PID_P, &thermalManager.temp_hotend[0].pid.Kp, ScreenHandler.HandleTemperaturePIDChanged, ScreenHandler.DGUSLCD_SendTemperaturePID),
 | 
			
		||||
      VPHELPER(VP_E0_PID_I, &thermalManager.temp_hotend[0].pid.Ki, ScreenHandler.HandleTemperaturePIDChanged, ScreenHandler.DGUSLCD_SendTemperaturePID),
 | 
			
		||||
      VPHELPER(VP_E0_PID_D, &thermalManager.temp_hotend[0].pid.Kd, ScreenHandler.HandleTemperaturePIDChanged, ScreenHandler.DGUSLCD_SendTemperaturePID),
 | 
			
		||||
      VPHELPER(VP_PID_AUTOTUNE_E0, nullptr, &ScreenHandler.HandlePIDAutotune, nullptr),
 | 
			
		||||
      VPHELPER(VP_PID_AUTOTUNE_E0, nullptr, ScreenHandler.HandlePIDAutotune, nullptr),
 | 
			
		||||
    #endif
 | 
			
		||||
    #if ENABLED(DGUS_FILAMENT_LOADUNLOAD)
 | 
			
		||||
      VPHELPER(VP_E0_FILAMENT_LOAD_UNLOAD, nullptr, &ScreenHandler.HandleFilamentOption, &ScreenHandler.HandleFilamentLoadUnload),
 | 
			
		||||
      VPHELPER(VP_E0_FILAMENT_LOAD_UNLOAD, nullptr, ScreenHandler.HandleFilamentOption, ScreenHandler.HandleFilamentLoadUnload),
 | 
			
		||||
    #endif
 | 
			
		||||
  #endif
 | 
			
		||||
  #if HOTENDS >= 2
 | 
			
		||||
    VPHELPER(VP_T_E1_Is, &thermalManager.temp_hotend[1].celsius, nullptr, ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
    VPHELPER(VP_T_E1_Set, &thermalManager.temp_hotend[1].target, ScreenHandler.HandleTemperatureChanged, &ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
    VPHELPER(VP_Flowrate_E1, &planner.flow_percentage[ExtUI::extruder_t::E1], ScreenHandler.HandleFlowRateChanged, &ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
    VPHELPER(VP_MOVE_E1, nullptr, &ScreenHandler.HandleManualExtrude, nullptr),
 | 
			
		||||
    VPHELPER(VP_E1_CONTROL, &thermalManager.temp_hotend[1].target, &ScreenHandler.HandleHeaterControl, nullptr),
 | 
			
		||||
    VPHELPER(VP_E1_STATUS, &thermalManager.temp_hotend[1].target, nullptr, &ScreenHandler.DGUSLCD_SendHeaterStatusToDisplay),
 | 
			
		||||
    VPHELPER(VP_T_E1_Set, &thermalManager.temp_hotend[1].target, ScreenHandler.HandleTemperatureChanged, ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
    VPHELPER(VP_Flowrate_E1, &planner.flow_percentage[ExtUI::extruder_t::E1], ScreenHandler.HandleFlowRateChanged, ScreenHandler.DGUSLCD_SendWordValueToDisplay),  // ERROR: Flow is per-extruder, not per-hotend
 | 
			
		||||
    VPHELPER(VP_MOVE_E1, nullptr, ScreenHandler.HandleManualExtrude, nullptr),
 | 
			
		||||
    VPHELPER(VP_E1_CONTROL, &thermalManager.temp_hotend[1].target, ScreenHandler.HandleHeaterControl, nullptr),
 | 
			
		||||
    VPHELPER(VP_E1_STATUS, &thermalManager.temp_hotend[1].target, nullptr, ScreenHandler.DGUSLCD_SendHeaterStatusToDisplay),
 | 
			
		||||
    #if ENABLED(PIDTEMP)
 | 
			
		||||
      VPHELPER(VP_PID_AUTOTUNE_E1, nullptr, &ScreenHandler.HandlePIDAutotune, nullptr),
 | 
			
		||||
      VPHELPER(VP_PID_AUTOTUNE_E1, nullptr, ScreenHandler.HandlePIDAutotune, nullptr),
 | 
			
		||||
    #endif
 | 
			
		||||
    VPHELPER(VP_E1_FILAMENT_LOAD_UNLOAD, nullptr, &ScreenHandler.HandleFilamentOption, &ScreenHandler.HandleFilamentLoadUnload),
 | 
			
		||||
    VPHELPER(VP_E1_FILAMENT_LOAD_UNLOAD, nullptr, ScreenHandler.HandleFilamentOption, ScreenHandler.HandleFilamentLoadUnload),
 | 
			
		||||
  #endif
 | 
			
		||||
  #if HAS_HEATED_BED
 | 
			
		||||
    VPHELPER(VP_T_Bed_Is, &thermalManager.temp_bed.celsius, nullptr, ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
    VPHELPER(VP_T_Bed_Set, &thermalManager.temp_bed.target, ScreenHandler.HandleTemperatureChanged, &ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
    VPHELPER(VP_BED_CONTROL, &thermalManager.temp_bed.target, &ScreenHandler.HandleHeaterControl, nullptr),
 | 
			
		||||
    VPHELPER(VP_BED_STATUS, &thermalManager.temp_bed.target, nullptr, &ScreenHandler.DGUSLCD_SendHeaterStatusToDisplay),
 | 
			
		||||
    VPHELPER(VP_T_Bed_Set, &thermalManager.temp_bed.target, ScreenHandler.HandleTemperatureChanged, ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
    VPHELPER(VP_BED_CONTROL, &thermalManager.temp_bed.target, ScreenHandler.HandleHeaterControl, nullptr),
 | 
			
		||||
    VPHELPER(VP_BED_STATUS, &thermalManager.temp_bed.target, nullptr, ScreenHandler.DGUSLCD_SendHeaterStatusToDisplay),
 | 
			
		||||
    #if ENABLED(PIDTEMPBED)
 | 
			
		||||
      VPHELPER(VP_BED_PID_P, &thermalManager.temp_bed.pid.Kp, ScreenHandler.HandleTemperaturePIDChanged, ScreenHandler.DGUSLCD_SendTemperaturePID),
 | 
			
		||||
      VPHELPER(VP_BED_PID_I, &thermalManager.temp_bed.pid.Ki, ScreenHandler.HandleTemperaturePIDChanged, ScreenHandler.DGUSLCD_SendTemperaturePID),
 | 
			
		||||
      VPHELPER(VP_BED_PID_D, &thermalManager.temp_bed.pid.Kd, ScreenHandler.HandleTemperaturePIDChanged, ScreenHandler.DGUSLCD_SendTemperaturePID),
 | 
			
		||||
      VPHELPER(VP_PID_AUTOTUNE_BED, nullptr, &ScreenHandler.HandlePIDAutotune, nullptr),
 | 
			
		||||
      VPHELPER(VP_PID_AUTOTUNE_BED, nullptr, ScreenHandler.HandlePIDAutotune, nullptr),
 | 
			
		||||
    #endif
 | 
			
		||||
  #endif
 | 
			
		||||
 | 
			
		||||
  // Fan Data
 | 
			
		||||
  #if HAS_FAN
 | 
			
		||||
    #define FAN_VPHELPER(N) \
 | 
			
		||||
      VPHELPER(VP_Fan##N##_Percentage, &thermalManager.fan_speed[N], ScreenHandler.DGUSLCD_PercentageToUint8, &ScreenHandler.DGUSLCD_SendPercentageToDisplay), \
 | 
			
		||||
      VPHELPER(VP_FAN##N##_CONTROL, &thermalManager.fan_speed[N], &ScreenHandler.HandleFanControl, nullptr), \
 | 
			
		||||
      VPHELPER(VP_FAN##N##_STATUS, &thermalManager.fan_speed[N], nullptr, &ScreenHandler.DGUSLCD_SendFanStatusToDisplay),
 | 
			
		||||
      VPHELPER(VP_Fan##N##_Percentage, &thermalManager.fan_speed[N], ScreenHandler.DGUSLCD_PercentageToUint8, ScreenHandler.DGUSLCD_SendPercentageToDisplay), \
 | 
			
		||||
      VPHELPER(VP_FAN##N##_CONTROL, &thermalManager.fan_speed[N], ScreenHandler.HandleFanControl, nullptr), \
 | 
			
		||||
      VPHELPER(VP_FAN##N##_STATUS, &thermalManager.fan_speed[N], nullptr, ScreenHandler.DGUSLCD_SendFanStatusToDisplay),
 | 
			
		||||
    REPEAT(FAN_COUNT, FAN_VPHELPER)
 | 
			
		||||
  #endif
 | 
			
		||||
 | 
			
		||||
  // Feedrate
 | 
			
		||||
  VPHELPER(VP_Feedrate_Percentage, &feedrate_percentage, ScreenHandler.DGUSLCD_SetValueDirectly<int16_t>, &ScreenHandler.DGUSLCD_SendWordValueToDisplay ),
 | 
			
		||||
  VPHELPER(VP_Feedrate_Percentage, &feedrate_percentage, ScreenHandler.DGUSLCD_SetValueDirectly<int16_t>, ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
 | 
			
		||||
  // Position Data
 | 
			
		||||
  VPHELPER(VP_XPos, ¤t_position.x, nullptr, ScreenHandler.DGUSLCD_SendFloatAsLongValueToDisplay<2>),
 | 
			
		||||
@@ -430,7 +419,7 @@ const struct DGUS_VP_Variable ListOfVP[] PROGMEM = {
 | 
			
		||||
  VPHELPER(VP_ZPos, ¤t_position.z, nullptr, ScreenHandler.DGUSLCD_SendFloatAsLongValueToDisplay<2>),
 | 
			
		||||
 | 
			
		||||
  // Print Progress
 | 
			
		||||
  VPHELPER(VP_PrintProgress_Percentage, nullptr, nullptr, ScreenHandler.DGUSLCD_SendPrintProgressToDisplay ),
 | 
			
		||||
  VPHELPER(VP_PrintProgress_Percentage, nullptr, nullptr, ScreenHandler.DGUSLCD_SendPrintProgressToDisplay),
 | 
			
		||||
 | 
			
		||||
  // Print Time
 | 
			
		||||
  VPHELPER_STR(VP_PrintTime, nullptr, VP_PrintTime_LEN, nullptr, ScreenHandler.DGUSLCD_SendPrintTimeToDisplay),
 | 
			
		||||
@@ -442,11 +431,11 @@ const struct DGUS_VP_Variable ListOfVP[] PROGMEM = {
 | 
			
		||||
  VPHELPER(VP_X_STEP_PER_MM, &planner.settings.axis_steps_per_mm[X_AXIS], ScreenHandler.HandleStepPerMMChanged, ScreenHandler.DGUSLCD_SendFloatAsIntValueToDisplay<1>),
 | 
			
		||||
  VPHELPER(VP_Y_STEP_PER_MM, &planner.settings.axis_steps_per_mm[Y_AXIS], ScreenHandler.HandleStepPerMMChanged, ScreenHandler.DGUSLCD_SendFloatAsIntValueToDisplay<1>),
 | 
			
		||||
  VPHELPER(VP_Z_STEP_PER_MM, &planner.settings.axis_steps_per_mm[Z_AXIS], ScreenHandler.HandleStepPerMMChanged, ScreenHandler.DGUSLCD_SendFloatAsIntValueToDisplay<1>),
 | 
			
		||||
  #if HOTENDS >= 1
 | 
			
		||||
  #if HAS_EXTRUDERS
 | 
			
		||||
    VPHELPER(VP_E0_STEP_PER_MM, &planner.settings.axis_steps_per_mm[E_AXIS_N(0)], ScreenHandler.HandleStepPerMMExtruderChanged, ScreenHandler.DGUSLCD_SendFloatAsIntValueToDisplay<1>),
 | 
			
		||||
  #endif
 | 
			
		||||
  #if HOTENDS >= 2
 | 
			
		||||
    VPHELPER(VP_E1_STEP_PER_MM, &planner.settings.axis_steps_per_mm[E_AXIS_N(1)], ScreenHandler.HandleStepPerMMExtruderChanged, ScreenHandler.DGUSLCD_SendFloatAsIntValueToDisplay<1>),
 | 
			
		||||
    #if HAS_MULTI_EXTRUDER
 | 
			
		||||
      VPHELPER(VP_E1_STEP_PER_MM, &planner.settings.axis_steps_per_mm[E_AXIS_N(1)], ScreenHandler.HandleStepPerMMExtruderChanged, ScreenHandler.DGUSLCD_SendFloatAsIntValueToDisplay<1>),
 | 
			
		||||
    #endif
 | 
			
		||||
  #endif
 | 
			
		||||
 | 
			
		||||
  // SDCard File listing.
 | 
			
		||||
@@ -463,7 +452,7 @@ const struct DGUS_VP_Variable ListOfVP[] PROGMEM = {
 | 
			
		||||
    VPHELPER(VP_SD_AbortPrintConfirmed, nullptr, ScreenHandler.DGUSLCD_SD_ReallyAbort, nullptr),
 | 
			
		||||
    VPHELPER(VP_SD_Print_Setting, nullptr, ScreenHandler.DGUSLCD_SD_PrintTune, nullptr),
 | 
			
		||||
    #if HAS_BED_PROBE
 | 
			
		||||
      VPHELPER(VP_SD_Print_ProbeOffsetZ, &probe.offset.z, ScreenHandler.HandleProbeOffsetZChanged, &ScreenHandler.DGUSLCD_SendFloatAsIntValueToDisplay<2>),
 | 
			
		||||
      VPHELPER(VP_SD_Print_ProbeOffsetZ, &probe.offset.z, ScreenHandler.HandleProbeOffsetZChanged, ScreenHandler.DGUSLCD_SendFloatAsIntValueToDisplay<2>),
 | 
			
		||||
      #if ENABLED(BABYSTEPPING)
 | 
			
		||||
        VPHELPER(VP_SD_Print_LiveAdjustZ, nullptr, ScreenHandler.HandleLiveAdjustZ, nullptr),
 | 
			
		||||
      #endif
 | 
			
		||||
@@ -475,10 +464,10 @@ const struct DGUS_VP_Variable ListOfVP[] PROGMEM = {
 | 
			
		||||
  #endif
 | 
			
		||||
 | 
			
		||||
  // Messages for the User, shared by the popup and the kill screen. They cant be autouploaded as we do not buffer content.
 | 
			
		||||
  { .VP = VP_MSGSTR1, .memadr = nullptr, .size = VP_MSGSTR1_LEN, .set_by_display_handler = nullptr, .send_to_display_handler = &ScreenHandler.DGUSLCD_SendStringToDisplayPGM },
 | 
			
		||||
  { .VP = VP_MSGSTR2, .memadr = nullptr, .size = VP_MSGSTR2_LEN, .set_by_display_handler = nullptr, .send_to_display_handler = &ScreenHandler.DGUSLCD_SendStringToDisplayPGM },
 | 
			
		||||
  { .VP = VP_MSGSTR3, .memadr = nullptr, .size = VP_MSGSTR3_LEN, .set_by_display_handler = nullptr, .send_to_display_handler = &ScreenHandler.DGUSLCD_SendStringToDisplayPGM },
 | 
			
		||||
  { .VP = VP_MSGSTR4, .memadr = nullptr, .size = VP_MSGSTR4_LEN, .set_by_display_handler = nullptr, .send_to_display_handler = &ScreenHandler.DGUSLCD_SendStringToDisplayPGM },
 | 
			
		||||
  { .VP = VP_MSGSTR1, .memadr = nullptr, .size = VP_MSGSTR1_LEN, .set_by_display_handler = nullptr, .send_to_display_handler = ScreenHandler.DGUSLCD_SendStringToDisplayPGM },
 | 
			
		||||
  { .VP = VP_MSGSTR2, .memadr = nullptr, .size = VP_MSGSTR2_LEN, .set_by_display_handler = nullptr, .send_to_display_handler = ScreenHandler.DGUSLCD_SendStringToDisplayPGM },
 | 
			
		||||
  { .VP = VP_MSGSTR3, .memadr = nullptr, .size = VP_MSGSTR3_LEN, .set_by_display_handler = nullptr, .send_to_display_handler = ScreenHandler.DGUSLCD_SendStringToDisplayPGM },
 | 
			
		||||
  { .VP = VP_MSGSTR4, .memadr = nullptr, .size = VP_MSGSTR4_LEN, .set_by_display_handler = nullptr, .send_to_display_handler = ScreenHandler.DGUSLCD_SendStringToDisplayPGM },
 | 
			
		||||
 | 
			
		||||
  VPHELPER(0, 0, 0, 0)  // must be last entry.
 | 
			
		||||
};
 | 
			
		||||
 
 | 
			
		||||
@@ -249,7 +249,7 @@ void DGUSScreenHandler::HandleManualMove(DGUS_VP_Variable &var, void *val_ptr) {
 | 
			
		||||
 | 
			
		||||
    switch (var.VP) {
 | 
			
		||||
      default: return;
 | 
			
		||||
        #if HOTENDS >= 1
 | 
			
		||||
        #if HAS_HOTEND
 | 
			
		||||
          case VP_E0_PID_P: newvalue = value; break;
 | 
			
		||||
          case VP_E0_PID_I: newvalue = scalePID_i(value); break;
 | 
			
		||||
          case VP_E0_PID_D: newvalue = scalePID_d(value); break;
 | 
			
		||||
@@ -329,7 +329,7 @@ void DGUSScreenHandler::HandleManualMove(DGUS_VP_Variable &var, void *val_ptr) {
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    if (filament_data.action == 0) { // Go back to utility screen
 | 
			
		||||
      #if HOTENDS >= 1
 | 
			
		||||
      #if HAS_HOTEND
 | 
			
		||||
        thermalManager.setTargetHotend(e_temp, ExtUI::extruder_t::E0);
 | 
			
		||||
      #endif
 | 
			
		||||
      #if HOTENDS >= 2
 | 
			
		||||
@@ -340,13 +340,13 @@ void DGUSScreenHandler::HandleManualMove(DGUS_VP_Variable &var, void *val_ptr) {
 | 
			
		||||
    else { // Go to the preheat screen to show the heating progress
 | 
			
		||||
      switch (var.VP) {
 | 
			
		||||
        default: return;
 | 
			
		||||
          #if HOTENDS >= 1
 | 
			
		||||
          #if HAS_HOTEND
 | 
			
		||||
            case VP_E0_FILAMENT_LOAD_UNLOAD:
 | 
			
		||||
              filament_data.extruder = ExtUI::extruder_t::E0;
 | 
			
		||||
              thermalManager.setTargetHotend(e_temp, filament_data.extruder);
 | 
			
		||||
              break;
 | 
			
		||||
          #endif
 | 
			
		||||
          #if HOTENDS >= 2
 | 
			
		||||
          #if HAS_MULTI_EXTRUDER
 | 
			
		||||
            case VP_E1_FILAMENT_LOAD_UNLOAD:
 | 
			
		||||
              filament_data.extruder = ExtUI::extruder_t::E1;
 | 
			
		||||
              thermalManager.setTargetHotend(e_temp, filament_data.extruder);
 | 
			
		||||
 
 | 
			
		||||
@@ -48,11 +48,11 @@ const uint16_t VPList_Boot[] PROGMEM = {
 | 
			
		||||
 | 
			
		||||
const uint16_t VPList_Main[] PROGMEM = {
 | 
			
		||||
  /* VP_M117, for completeness, but it cannot be auto-uploaded. */
 | 
			
		||||
  #if HOTENDS >= 1
 | 
			
		||||
  #if HAS_HOTEND
 | 
			
		||||
    VP_T_E0_Is, VP_T_E0_Set, VP_E0_STATUS,
 | 
			
		||||
  #endif
 | 
			
		||||
  #if HOTENDS >= 2
 | 
			
		||||
    VP_T_E1_Is, VP_T_E1_Set,
 | 
			
		||||
    #if HOTENDS >= 2
 | 
			
		||||
      VP_T_E1_Is, VP_T_E1_Set,
 | 
			
		||||
    #endif
 | 
			
		||||
  #endif
 | 
			
		||||
  #if HAS_HEATED_BED
 | 
			
		||||
    VP_T_Bed_Is, VP_T_Bed_Set, VP_BED_STATUS,
 | 
			
		||||
@@ -70,11 +70,11 @@ const uint16_t VPList_Main[] PROGMEM = {
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
const uint16_t VPList_Temp[] PROGMEM = {
 | 
			
		||||
  #if HOTENDS >= 1
 | 
			
		||||
  #if HAS_HOTEND
 | 
			
		||||
    VP_T_E0_Is, VP_T_E0_Set,
 | 
			
		||||
  #endif
 | 
			
		||||
  #if HOTENDS >= 2
 | 
			
		||||
    VP_T_E1_Is, VP_T_E1_Set,
 | 
			
		||||
    #if HOTENDS >= 2
 | 
			
		||||
      VP_T_E1_Is, VP_T_E1_Set,
 | 
			
		||||
    #endif
 | 
			
		||||
  #endif
 | 
			
		||||
  #if HAS_HEATED_BED
 | 
			
		||||
    VP_T_Bed_Is, VP_T_Bed_Set,
 | 
			
		||||
@@ -84,11 +84,11 @@ const uint16_t VPList_Temp[] PROGMEM = {
 | 
			
		||||
 | 
			
		||||
const uint16_t VPList_Status[] PROGMEM = {
 | 
			
		||||
  /* VP_M117, for completeness, but it cannot be auto-uploaded */
 | 
			
		||||
  #if HOTENDS >= 1
 | 
			
		||||
  #if HAS_HOTEND
 | 
			
		||||
    VP_T_E0_Is, VP_T_E0_Set,
 | 
			
		||||
  #endif
 | 
			
		||||
  #if HOTENDS >= 2
 | 
			
		||||
    VP_T_E1_Is, VP_T_E1_Set,
 | 
			
		||||
    #if HOTENDS >= 2
 | 
			
		||||
      VP_T_E1_Is, VP_T_E1_Set,
 | 
			
		||||
    #endif
 | 
			
		||||
  #endif
 | 
			
		||||
  #if HAS_HEATED_BED
 | 
			
		||||
    VP_T_Bed_Is, VP_T_Bed_Set,
 | 
			
		||||
@@ -105,11 +105,11 @@ const uint16_t VPList_Status[] PROGMEM = {
 | 
			
		||||
 | 
			
		||||
const uint16_t VPList_Status2[] PROGMEM = {
 | 
			
		||||
  /* VP_M117, for completeness, but it cannot be auto-uploaded */
 | 
			
		||||
  #if HOTENDS >= 1
 | 
			
		||||
  #if HAS_HOTEND
 | 
			
		||||
    VP_Flowrate_E0,
 | 
			
		||||
  #endif
 | 
			
		||||
  #if HOTENDS >= 2
 | 
			
		||||
    VP_Flowrate_E1,
 | 
			
		||||
    #if HOTENDS >= 2
 | 
			
		||||
      VP_Flowrate_E1,
 | 
			
		||||
    #endif
 | 
			
		||||
  #endif
 | 
			
		||||
  VP_PrintProgress_Percentage,
 | 
			
		||||
  VP_PrintTime,
 | 
			
		||||
@@ -117,11 +117,11 @@ const uint16_t VPList_Status2[] PROGMEM = {
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
const uint16_t VPList_Preheat[] PROGMEM = {
 | 
			
		||||
  #if HOTENDS >= 1
 | 
			
		||||
  #if HAS_HOTEND
 | 
			
		||||
    VP_T_E0_Is, VP_T_E0_Set,
 | 
			
		||||
  #endif
 | 
			
		||||
  #if HOTENDS >= 2
 | 
			
		||||
    VP_T_E1_Is, VP_T_E1_Set,
 | 
			
		||||
    #if HOTENDS >= 2
 | 
			
		||||
      VP_T_E1_Is, VP_T_E1_Set,
 | 
			
		||||
    #endif
 | 
			
		||||
  #endif
 | 
			
		||||
  #if HAS_HEATED_BED
 | 
			
		||||
    VP_T_Bed_Is, VP_T_Bed_Set,
 | 
			
		||||
@@ -135,11 +135,11 @@ const uint16_t VPList_ManualMove[] PROGMEM = {
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
const uint16_t VPList_ManualExtrude[] PROGMEM = {
 | 
			
		||||
  #if HOTENDS >= 1
 | 
			
		||||
  #if HAS_HOTEND
 | 
			
		||||
    VP_T_E0_Is, VP_T_E0_Set,
 | 
			
		||||
  #endif
 | 
			
		||||
  #if HOTENDS >= 2
 | 
			
		||||
    VP_T_E1_Is, VP_T_E1_Set,
 | 
			
		||||
    #if HOTENDS >= 2
 | 
			
		||||
      VP_T_E1_Is, VP_T_E1_Set,
 | 
			
		||||
    #endif
 | 
			
		||||
  #endif
 | 
			
		||||
  VP_EPos,
 | 
			
		||||
  0x0000
 | 
			
		||||
@@ -156,22 +156,22 @@ const uint16_t VPList_SD_FlowRates[] PROGMEM = {
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
const uint16_t VPList_Filament_heating[] PROGMEM = {
 | 
			
		||||
  #if HOTENDS >= 1
 | 
			
		||||
  #if HAS_HOTEND
 | 
			
		||||
    VP_T_E0_Is, VP_T_E0_Set,
 | 
			
		||||
    VP_E0_FILAMENT_LOAD_UNLOAD,
 | 
			
		||||
  #endif
 | 
			
		||||
  #if HOTENDS >= 2
 | 
			
		||||
    VP_T_E1_Is, VP_T_E1_Set,
 | 
			
		||||
    #if HOTENDS >= 2
 | 
			
		||||
      VP_T_E1_Is, VP_T_E1_Set,
 | 
			
		||||
    #endif
 | 
			
		||||
  #endif
 | 
			
		||||
  0x0000
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
const uint16_t VPList_Filament_load_unload[] PROGMEM = {
 | 
			
		||||
  #if HOTENDS >= 1
 | 
			
		||||
  #if HAS_HOTEND
 | 
			
		||||
    VP_E0_FILAMENT_LOAD_UNLOAD,
 | 
			
		||||
  #endif
 | 
			
		||||
  #if HOTENDS >= 2
 | 
			
		||||
    VP_E1_FILAMENT_LOAD_UNLOAD,
 | 
			
		||||
    #if HOTENDS >= 2
 | 
			
		||||
      VP_E1_FILAMENT_LOAD_UNLOAD,
 | 
			
		||||
    #endif
 | 
			
		||||
  #endif
 | 
			
		||||
  0x0000
 | 
			
		||||
};
 | 
			
		||||
@@ -183,11 +183,11 @@ const uint16_t VPList_SDFileList[] PROGMEM = {
 | 
			
		||||
 | 
			
		||||
const uint16_t VPList_SD_PrintManipulation[] PROGMEM = {
 | 
			
		||||
  VP_PrintProgress_Percentage, VP_PrintTime,
 | 
			
		||||
  #if HOTENDS >= 1
 | 
			
		||||
  #if HAS_HOTEND
 | 
			
		||||
    VP_T_E0_Is, VP_T_E0_Set,
 | 
			
		||||
  #endif
 | 
			
		||||
  #if HOTENDS >= 2
 | 
			
		||||
    VP_T_E1_Is, VP_T_E1_Set,
 | 
			
		||||
    #if HOTENDS >= 2
 | 
			
		||||
      VP_T_E1_Is, VP_T_E1_Set,
 | 
			
		||||
    #endif
 | 
			
		||||
  #endif
 | 
			
		||||
  #if HAS_HEATED_BED
 | 
			
		||||
    VP_T_Bed_Is, VP_T_Bed_Set,
 | 
			
		||||
@@ -203,11 +203,11 @@ const uint16_t VPList_SD_PrintManipulation[] PROGMEM = {
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
const uint16_t VPList_SDPrintTune[] PROGMEM = {
 | 
			
		||||
  #if HOTENDS >= 1
 | 
			
		||||
  #if HAS_HOTEND
 | 
			
		||||
    VP_T_E0_Is, VP_T_E0_Set,
 | 
			
		||||
  #endif
 | 
			
		||||
  #if HOTENDS >= 2
 | 
			
		||||
    VP_T_E1_Is, VP_T_E1_Set,
 | 
			
		||||
    #if HOTENDS >= 2
 | 
			
		||||
      VP_T_E1_Is, VP_T_E1_Set,
 | 
			
		||||
    #endif
 | 
			
		||||
  #endif
 | 
			
		||||
  #if HAS_HEATED_BED
 | 
			
		||||
    VP_T_Bed_Is, VP_T_Bed_Set,
 | 
			
		||||
@@ -225,11 +225,11 @@ const uint16_t VPList_StepPerMM[] PROGMEM = {
 | 
			
		||||
  VP_X_STEP_PER_MM,
 | 
			
		||||
  VP_Y_STEP_PER_MM,
 | 
			
		||||
  VP_Z_STEP_PER_MM,
 | 
			
		||||
  #if HOTENDS >= 1
 | 
			
		||||
  #if HAS_HOTEND
 | 
			
		||||
    VP_E0_STEP_PER_MM,
 | 
			
		||||
  #endif
 | 
			
		||||
  #if HOTENDS >= 2
 | 
			
		||||
    VP_E1_STEP_PER_MM,
 | 
			
		||||
    #if HOTENDS >= 2
 | 
			
		||||
      VP_E1_STEP_PER_MM,
 | 
			
		||||
    #endif
 | 
			
		||||
  #endif
 | 
			
		||||
  0x0000
 | 
			
		||||
};
 | 
			
		||||
@@ -268,7 +268,7 @@ const uint16_t VPList_PIDTuningWaiting[] PROGMEM = {
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
const uint16_t VPList_FLCPreheat[] PROGMEM = {
 | 
			
		||||
  #if HOTENDS >= 1
 | 
			
		||||
  #if HAS_HOTEND
 | 
			
		||||
    VP_T_E0_Is, VP_T_E0_Set,
 | 
			
		||||
  #endif
 | 
			
		||||
  #if HAS_HEATED_BED
 | 
			
		||||
@@ -278,14 +278,14 @@ const uint16_t VPList_FLCPreheat[] PROGMEM = {
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
const uint16_t VPList_FLCPrinting[] PROGMEM = {
 | 
			
		||||
  #if HOTENDS >= 1
 | 
			
		||||
  #if HAS_HOTEND
 | 
			
		||||
    VP_SD_Print_ProbeOffsetZ,
 | 
			
		||||
  #endif
 | 
			
		||||
  0x0000
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
const uint16_t VPList_Z_Offset[] PROGMEM = {
 | 
			
		||||
  #if HOTENDS >= 1
 | 
			
		||||
  #if HAS_HOTEND
 | 
			
		||||
    VP_SD_Print_ProbeOffsetZ,
 | 
			
		||||
  #endif
 | 
			
		||||
  0x0000
 | 
			
		||||
@@ -319,14 +319,6 @@ const struct VPMapping VPMap[] PROGMEM = {
 | 
			
		||||
 | 
			
		||||
const char MarlinVersion[] PROGMEM = SHORT_BUILD_VERSION;
 | 
			
		||||
 | 
			
		||||
// Helper to define a DGUS_VP_Variable for common use cases.
 | 
			
		||||
#define VPHELPER(VPADR, VPADRVAR, RXFPTR, TXFPTR ) { .VP=VPADR, .memadr=VPADRVAR, .size=sizeof(VPADRVAR), \
 | 
			
		||||
  .set_by_display_handler = RXFPTR, .send_to_display_handler = TXFPTR }
 | 
			
		||||
 | 
			
		||||
// Helper to define a DGUS_VP_Variable when the sizeo of the var cannot be determined automaticalyl (eg. a string)
 | 
			
		||||
#define VPHELPER_STR(VPADR, VPADRVAR, STRLEN, RXFPTR, TXFPTR ) { .VP=VPADR, .memadr=VPADRVAR, .size=STRLEN, \
 | 
			
		||||
  .set_by_display_handler = RXFPTR, .send_to_display_handler = TXFPTR }
 | 
			
		||||
 | 
			
		||||
const struct DGUS_VP_Variable ListOfVP[] PROGMEM = {
 | 
			
		||||
  // Helper to detect touch events
 | 
			
		||||
  VPHELPER(VP_SCREENCHANGE, nullptr, ScreenHandler.ScreenChangeHook, nullptr),
 | 
			
		||||
@@ -336,92 +328,92 @@ const struct DGUS_VP_Variable ListOfVP[] PROGMEM = {
 | 
			
		||||
  #endif
 | 
			
		||||
  VPHELPER(VP_CONFIRMED, nullptr, ScreenHandler.ScreenConfirmedOK, nullptr),
 | 
			
		||||
 | 
			
		||||
  VPHELPER(VP_TEMP_ALL_OFF, nullptr, &ScreenHandler.HandleAllHeatersOff, nullptr),
 | 
			
		||||
  VPHELPER(VP_TEMP_ALL_OFF, nullptr, ScreenHandler.HandleAllHeatersOff, nullptr),
 | 
			
		||||
 | 
			
		||||
  #if ENABLED(DGUS_UI_MOVE_DIS_OPTION)
 | 
			
		||||
    VPHELPER(VP_MOVE_OPTION, &distanceToMove, &ScreenHandler.HandleManualMoveOption, nullptr),
 | 
			
		||||
    VPHELPER(VP_MOVE_OPTION, &distanceToMove, ScreenHandler.HandleManualMoveOption, nullptr),
 | 
			
		||||
  #endif
 | 
			
		||||
  #if ENABLED(DGUS_UI_MOVE_DIS_OPTION)
 | 
			
		||||
    VPHELPER(VP_MOVE_X, &distanceToMove, &ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
    VPHELPER(VP_MOVE_Y, &distanceToMove, &ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
    VPHELPER(VP_MOVE_Z, &distanceToMove, &ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
    VPHELPER(VP_HOME_ALL, &distanceToMove, &ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
    VPHELPER(VP_MOVE_X, &distanceToMove, ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
    VPHELPER(VP_MOVE_Y, &distanceToMove, ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
    VPHELPER(VP_MOVE_Z, &distanceToMove, ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
    VPHELPER(VP_HOME_ALL, &distanceToMove, ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
  #else
 | 
			
		||||
    VPHELPER(VP_MOVE_X, nullptr, &ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
    VPHELPER(VP_MOVE_Y, nullptr, &ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
    VPHELPER(VP_MOVE_Z, nullptr, &ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
    VPHELPER(VP_HOME_ALL, nullptr, &ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
    VPHELPER(VP_MOVE_X, nullptr, ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
    VPHELPER(VP_MOVE_Y, nullptr, ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
    VPHELPER(VP_MOVE_Z, nullptr, ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
    VPHELPER(VP_HOME_ALL, nullptr, ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
  #endif
 | 
			
		||||
  VPHELPER(VP_MOTOR_LOCK_UNLOK, nullptr, &ScreenHandler.HandleMotorLockUnlock, nullptr),
 | 
			
		||||
  VPHELPER(VP_MOTOR_LOCK_UNLOK, nullptr, ScreenHandler.HandleMotorLockUnlock, nullptr),
 | 
			
		||||
  #if ENABLED(POWER_LOSS_RECOVERY)
 | 
			
		||||
    VPHELPER(VP_POWER_LOSS_RECOVERY, nullptr, &ScreenHandler.HandlePowerLossRecovery, nullptr),
 | 
			
		||||
    VPHELPER(VP_POWER_LOSS_RECOVERY, nullptr, ScreenHandler.HandlePowerLossRecovery, nullptr),
 | 
			
		||||
  #endif
 | 
			
		||||
  VPHELPER(VP_SETTINGS, nullptr, &ScreenHandler.HandleSettings, nullptr),
 | 
			
		||||
  VPHELPER(VP_SETTINGS, nullptr, ScreenHandler.HandleSettings, nullptr),
 | 
			
		||||
  #if ENABLED(SINGLE_Z_CALIBRATION)
 | 
			
		||||
    VPHELPER(VP_Z_CALIBRATE, nullptr, &ScreenHandler.HandleZCalibration, nullptr),
 | 
			
		||||
    VPHELPER(VP_Z_CALIBRATE, nullptr, ScreenHandler.HandleZCalibration, nullptr),
 | 
			
		||||
  #endif
 | 
			
		||||
  #if ENABLED(FIRST_LAYER_CAL)
 | 
			
		||||
    VPHELPER(VP_Z_FIRST_LAYER_CAL, nullptr, &ScreenHandler.HandleFirstLayerCal, nullptr),
 | 
			
		||||
    VPHELPER(VP_Z_FIRST_LAYER_CAL, nullptr, ScreenHandler.HandleFirstLayerCal, nullptr),
 | 
			
		||||
  #endif
 | 
			
		||||
 | 
			
		||||
  { .VP = VP_MARLIN_VERSION, .memadr = (void*)MarlinVersion, .size = VP_MARLIN_VERSION_LEN, .set_by_display_handler = nullptr, .send_to_display_handler = &ScreenHandler.DGUSLCD_SendStringToDisplayPGM },
 | 
			
		||||
  { .VP = VP_MARLIN_VERSION, .memadr = (void*)MarlinVersion, .size = VP_MARLIN_VERSION_LEN, .set_by_display_handler = nullptr, .send_to_display_handler = ScreenHandler.DGUSLCD_SendStringToDisplayPGM },
 | 
			
		||||
  // M117 LCD String (We don't need the string in memory but "just" push it to the display on demand, hence the nullptr
 | 
			
		||||
  { .VP = VP_M117, .memadr = nullptr, .size = VP_M117_LEN, .set_by_display_handler = nullptr, .send_to_display_handler = &ScreenHandler.DGUSLCD_SendStringToDisplay },
 | 
			
		||||
  { .VP = VP_M117, .memadr = nullptr, .size = VP_M117_LEN, .set_by_display_handler = nullptr, .send_to_display_handler = ScreenHandler.DGUSLCD_SendStringToDisplay },
 | 
			
		||||
 | 
			
		||||
  // Temperature Data
 | 
			
		||||
  #if HOTENDS >= 1
 | 
			
		||||
  #if HAS_HOTEND
 | 
			
		||||
    VPHELPER(VP_T_E0_Is, &thermalManager.temp_hotend[0].celsius, nullptr, ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
    VPHELPER(VP_T_E0_Set, &thermalManager.temp_hotend[0].target, ScreenHandler.HandleTemperatureChanged, &ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
    VPHELPER(VP_Flowrate_E0, &planner.flow_percentage[ExtUI::extruder_t::E0], ScreenHandler.HandleFlowRateChanged, &ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
    VPHELPER(VP_T_E0_Set, &thermalManager.temp_hotend[0].target, ScreenHandler.HandleTemperatureChanged, ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
    VPHELPER(VP_Flowrate_E0, &planner.flow_percentage[ExtUI::extruder_t::E0], ScreenHandler.HandleFlowRateChanged, ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
    VPHELPER(VP_EPos, &destination.e, nullptr, ScreenHandler.DGUSLCD_SendFloatAsLongValueToDisplay<2>),
 | 
			
		||||
    VPHELPER(VP_MOVE_E0, nullptr, &ScreenHandler.HandleManualExtrude, nullptr),
 | 
			
		||||
    VPHELPER(VP_E0_CONTROL, &thermalManager.temp_hotend[0].target, &ScreenHandler.HandleHeaterControl, nullptr),
 | 
			
		||||
    VPHELPER(VP_E0_STATUS, &thermalManager.temp_hotend[0].target, nullptr, &ScreenHandler.DGUSLCD_SendHeaterStatusToDisplay),
 | 
			
		||||
    VPHELPER(VP_MOVE_E0, nullptr, ScreenHandler.HandleManualExtrude, nullptr),
 | 
			
		||||
    VPHELPER(VP_E0_CONTROL, &thermalManager.temp_hotend[0].target, ScreenHandler.HandleHeaterControl, nullptr),
 | 
			
		||||
    VPHELPER(VP_E0_STATUS, &thermalManager.temp_hotend[0].target, nullptr, ScreenHandler.DGUSLCD_SendHeaterStatusToDisplay),
 | 
			
		||||
    #if ENABLED(DGUS_PREHEAT_UI)
 | 
			
		||||
      VPHELPER(VP_E0_BED_PREHEAT, nullptr, &ScreenHandler.HandlePreheat, nullptr),
 | 
			
		||||
      VPHELPER(VP_E0_BED_PREHEAT, nullptr, ScreenHandler.HandlePreheat, nullptr),
 | 
			
		||||
    #endif
 | 
			
		||||
    #if ENABLED(DGUS_FILAMENT_LOADUNLOAD)
 | 
			
		||||
      VPHELPER(VP_E0_FILAMENT_LOAD_UNLOAD, nullptr, &ScreenHandler.HandleFilamentOption, &ScreenHandler.HandleFilamentLoadUnload),
 | 
			
		||||
      VPHELPER(VP_E0_FILAMENT_LOAD_UNLOAD, nullptr, ScreenHandler.HandleFilamentOption, ScreenHandler.HandleFilamentLoadUnload),
 | 
			
		||||
    #endif
 | 
			
		||||
    #if ENABLED(PIDTEMP)
 | 
			
		||||
      VPHELPER(VP_E0_PID_P, &thermalManager.temp_hotend[0].pid.Kp, ScreenHandler.HandleTemperaturePIDChanged, ScreenHandler.DGUSLCD_SendTemperaturePID),
 | 
			
		||||
      VPHELPER(VP_E0_PID_I, &thermalManager.temp_hotend[0].pid.Ki, ScreenHandler.HandleTemperaturePIDChanged, ScreenHandler.DGUSLCD_SendTemperaturePID),
 | 
			
		||||
      VPHELPER(VP_E0_PID_D, &thermalManager.temp_hotend[0].pid.Kd, ScreenHandler.HandleTemperaturePIDChanged, ScreenHandler.DGUSLCD_SendTemperaturePID),
 | 
			
		||||
      VPHELPER(VP_PID_AUTOTUNE_E0, nullptr, &ScreenHandler.HandlePIDAutotune, nullptr),
 | 
			
		||||
      VPHELPER(VP_PID_AUTOTUNE_E0, nullptr, ScreenHandler.HandlePIDAutotune, nullptr),
 | 
			
		||||
    #endif
 | 
			
		||||
  #endif
 | 
			
		||||
  #if HOTENDS >= 2
 | 
			
		||||
    VPHELPER(VP_T_E1_Is, &thermalManager.temp_hotend[1].celsius, nullptr, ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
    VPHELPER(VP_T_E1_Set, &thermalManager.temp_hotend[1].target, ScreenHandler.HandleTemperatureChanged, &ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
    VPHELPER(VP_Flowrate_E1, nullptr, ScreenHandler.HandleFlowRateChanged, &ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
    VPHELPER(VP_MOVE_E1, nullptr, &ScreenHandler.HandleManualExtrude, nullptr),
 | 
			
		||||
    VPHELPER(VP_E1_CONTROL, &thermalManager.temp_hotend[1].target, &ScreenHandler.HandleHeaterControl, nullptr),
 | 
			
		||||
    VPHELPER(VP_E1_STATUS, &thermalManager.temp_hotend[1].target, nullptr, &ScreenHandler.DGUSLCD_SendHeaterStatusToDisplay),
 | 
			
		||||
    VPHELPER(VP_T_E1_Set, &thermalManager.temp_hotend[1].target, ScreenHandler.HandleTemperatureChanged, ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
    VPHELPER(VP_Flowrate_E1, nullptr, ScreenHandler.HandleFlowRateChanged, ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
    VPHELPER(VP_MOVE_E1, nullptr, ScreenHandler.HandleManualExtrude, nullptr),
 | 
			
		||||
    VPHELPER(VP_E1_CONTROL, &thermalManager.temp_hotend[1].target, ScreenHandler.HandleHeaterControl, nullptr),
 | 
			
		||||
    VPHELPER(VP_E1_STATUS, &thermalManager.temp_hotend[1].target, nullptr, ScreenHandler.DGUSLCD_SendHeaterStatusToDisplay),
 | 
			
		||||
  #endif
 | 
			
		||||
  #if HAS_HEATED_BED
 | 
			
		||||
    VPHELPER(VP_T_Bed_Is, &thermalManager.temp_bed.celsius, nullptr, ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
    VPHELPER(VP_T_Bed_Set, &thermalManager.temp_bed.target, ScreenHandler.HandleTemperatureChanged, &ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
    VPHELPER(VP_BED_CONTROL, &thermalManager.temp_bed.target, &ScreenHandler.HandleHeaterControl, nullptr),
 | 
			
		||||
    VPHELPER(VP_BED_STATUS, &thermalManager.temp_bed.target, nullptr, &ScreenHandler.DGUSLCD_SendHeaterStatusToDisplay),
 | 
			
		||||
    VPHELPER(VP_T_Bed_Set, &thermalManager.temp_bed.target, ScreenHandler.HandleTemperatureChanged, ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
    VPHELPER(VP_BED_CONTROL, &thermalManager.temp_bed.target, ScreenHandler.HandleHeaterControl, nullptr),
 | 
			
		||||
    VPHELPER(VP_BED_STATUS, &thermalManager.temp_bed.target, nullptr, ScreenHandler.DGUSLCD_SendHeaterStatusToDisplay),
 | 
			
		||||
    #if ENABLED(PIDTEMP)
 | 
			
		||||
      VPHELPER(VP_BED_PID_P, &thermalManager.temp_bed.pid.Kp, ScreenHandler.HandleTemperaturePIDChanged, ScreenHandler.DGUSLCD_SendTemperaturePID),
 | 
			
		||||
      VPHELPER(VP_BED_PID_I, &thermalManager.temp_bed.pid.Ki, ScreenHandler.HandleTemperaturePIDChanged, ScreenHandler.DGUSLCD_SendTemperaturePID),
 | 
			
		||||
      VPHELPER(VP_BED_PID_D, &thermalManager.temp_bed.pid.Kd, ScreenHandler.HandleTemperaturePIDChanged, ScreenHandler.DGUSLCD_SendTemperaturePID),
 | 
			
		||||
      VPHELPER(VP_PID_AUTOTUNE_BED, nullptr, &ScreenHandler.HandlePIDAutotune, nullptr),
 | 
			
		||||
      VPHELPER(VP_PID_AUTOTUNE_BED, nullptr, ScreenHandler.HandlePIDAutotune, nullptr),
 | 
			
		||||
    #endif
 | 
			
		||||
  #endif
 | 
			
		||||
 | 
			
		||||
  // Fan Data
 | 
			
		||||
  #if HAS_FAN
 | 
			
		||||
    #define FAN_VPHELPER(N) \
 | 
			
		||||
      VPHELPER(VP_Fan##N##_Percentage, &thermalManager.fan_speed[N], ScreenHandler.DGUSLCD_PercentageToUint8, &ScreenHandler.DGUSLCD_SendPercentageToDisplay), \
 | 
			
		||||
      VPHELPER(VP_FAN##N##_CONTROL, &thermalManager.fan_speed[N], &ScreenHandler.HandleFanControl, nullptr), \
 | 
			
		||||
      VPHELPER(VP_FAN##N##_STATUS, &thermalManager.fan_speed[N], nullptr, &ScreenHandler.DGUSLCD_SendFanStatusToDisplay),
 | 
			
		||||
      VPHELPER(VP_Fan##N##_Percentage, &thermalManager.fan_speed[N], ScreenHandler.DGUSLCD_PercentageToUint8, ScreenHandler.DGUSLCD_SendPercentageToDisplay), \
 | 
			
		||||
      VPHELPER(VP_FAN##N##_CONTROL, &thermalManager.fan_speed[N], ScreenHandler.HandleFanControl, nullptr), \
 | 
			
		||||
      VPHELPER(VP_FAN##N##_STATUS, &thermalManager.fan_speed[N], nullptr, ScreenHandler.DGUSLCD_SendFanStatusToDisplay),
 | 
			
		||||
    REPEAT(FAN_COUNT, FAN_VPHELPER)
 | 
			
		||||
  #endif
 | 
			
		||||
 | 
			
		||||
  // Feedrate
 | 
			
		||||
  VPHELPER(VP_Feedrate_Percentage, &feedrate_percentage, ScreenHandler.DGUSLCD_SetValueDirectly<int16_t>, &ScreenHandler.DGUSLCD_SendWordValueToDisplay ),
 | 
			
		||||
  VPHELPER(VP_Feedrate_Percentage, &feedrate_percentage, ScreenHandler.DGUSLCD_SetValueDirectly<int16_t>, ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
 | 
			
		||||
  // Position Data
 | 
			
		||||
  VPHELPER(VP_XPos, ¤t_position.x, nullptr, ScreenHandler.DGUSLCD_SendFloatAsLongValueToDisplay<2>),
 | 
			
		||||
@@ -429,23 +421,23 @@ const struct DGUS_VP_Variable ListOfVP[] PROGMEM = {
 | 
			
		||||
  VPHELPER(VP_ZPos, ¤t_position.z, nullptr, ScreenHandler.DGUSLCD_SendFloatAsLongValueToDisplay<2>),
 | 
			
		||||
 | 
			
		||||
  // Print Progress
 | 
			
		||||
  VPHELPER(VP_PrintProgress_Percentage, nullptr, nullptr, ScreenHandler.DGUSLCD_SendPrintProgressToDisplay ),
 | 
			
		||||
  VPHELPER(VP_PrintProgress_Percentage, nullptr, nullptr, ScreenHandler.DGUSLCD_SendPrintProgressToDisplay),
 | 
			
		||||
 | 
			
		||||
  // Print Time
 | 
			
		||||
  VPHELPER_STR(VP_PrintTime, nullptr, VP_PrintTime_LEN, nullptr, ScreenHandler.DGUSLCD_SendPrintTimeToDisplay ),
 | 
			
		||||
  VPHELPER_STR(VP_PrintTime, nullptr, VP_PrintTime_LEN, nullptr, ScreenHandler.DGUSLCD_SendPrintTimeToDisplay),
 | 
			
		||||
  #if ENABLED(PRINTCOUNTER)
 | 
			
		||||
    VPHELPER_STR(VP_PrintAccTime, nullptr, VP_PrintAccTime_LEN, nullptr, ScreenHandler.DGUSLCD_SendPrintAccTimeToDisplay ),
 | 
			
		||||
    VPHELPER_STR(VP_PrintsTotal, nullptr, VP_PrintsTotal_LEN, nullptr, ScreenHandler.DGUSLCD_SendPrintsTotalToDisplay ),
 | 
			
		||||
    VPHELPER_STR(VP_PrintAccTime, nullptr, VP_PrintAccTime_LEN, nullptr, ScreenHandler.DGUSLCD_SendPrintAccTimeToDisplay),
 | 
			
		||||
    VPHELPER_STR(VP_PrintsTotal, nullptr, VP_PrintsTotal_LEN, nullptr, ScreenHandler.DGUSLCD_SendPrintsTotalToDisplay),
 | 
			
		||||
  #endif
 | 
			
		||||
 | 
			
		||||
  VPHELPER(VP_X_STEP_PER_MM, &planner.settings.axis_steps_per_mm[X_AXIS], ScreenHandler.HandleStepPerMMChanged, ScreenHandler.DGUSLCD_SendFloatAsIntValueToDisplay<1>),
 | 
			
		||||
  VPHELPER(VP_Y_STEP_PER_MM, &planner.settings.axis_steps_per_mm[Y_AXIS], ScreenHandler.HandleStepPerMMChanged, ScreenHandler.DGUSLCD_SendFloatAsIntValueToDisplay<1>),
 | 
			
		||||
  VPHELPER(VP_Z_STEP_PER_MM, &planner.settings.axis_steps_per_mm[Z_AXIS], ScreenHandler.HandleStepPerMMChanged, ScreenHandler.DGUSLCD_SendFloatAsIntValueToDisplay<1>),
 | 
			
		||||
  #if HOTENDS >= 1
 | 
			
		||||
  #if HAS_HOTEND
 | 
			
		||||
    VPHELPER(VP_E0_STEP_PER_MM, &planner.settings.axis_steps_per_mm[E_AXIS_N(0)], ScreenHandler.HandleStepPerMMExtruderChanged, ScreenHandler.DGUSLCD_SendFloatAsIntValueToDisplay<1>),
 | 
			
		||||
  #endif
 | 
			
		||||
  #if HOTENDS >= 2
 | 
			
		||||
    VPHELPER(VP_E1_STEP_PER_MM, &planner.settings.axis_steps_per_mm[E_AXIS_N(1)], ScreenHandler.HandleStepPerMMExtruderChanged, ScreenHandler.DGUSLCD_SendFloatAsIntValueToDisplay<1>),
 | 
			
		||||
    #if HOTENDS >= 2
 | 
			
		||||
      VPHELPER(VP_E1_STEP_PER_MM, &planner.settings.axis_steps_per_mm[E_AXIS_N(1)], ScreenHandler.HandleStepPerMMExtruderChanged, ScreenHandler.DGUSLCD_SendFloatAsIntValueToDisplay<1>),
 | 
			
		||||
    #endif
 | 
			
		||||
  #endif
 | 
			
		||||
 | 
			
		||||
  // SDCard File listing.
 | 
			
		||||
@@ -462,7 +454,7 @@ const struct DGUS_VP_Variable ListOfVP[] PROGMEM = {
 | 
			
		||||
    VPHELPER(VP_SD_AbortPrintConfirmed, nullptr, ScreenHandler.DGUSLCD_SD_ReallyAbort, nullptr),
 | 
			
		||||
    VPHELPER(VP_SD_Print_Setting, nullptr, ScreenHandler.DGUSLCD_SD_PrintTune, nullptr),
 | 
			
		||||
    #if HAS_BED_PROBE
 | 
			
		||||
      VPHELPER(VP_SD_Print_ProbeOffsetZ, &probe.offset.z, ScreenHandler.HandleProbeOffsetZChanged, &ScreenHandler.DGUSLCD_SendFloatAsIntValueToDisplay<2>),
 | 
			
		||||
      VPHELPER(VP_SD_Print_ProbeOffsetZ, &probe.offset.z, ScreenHandler.HandleProbeOffsetZChanged, ScreenHandler.DGUSLCD_SendFloatAsIntValueToDisplay<2>),
 | 
			
		||||
      #if ENABLED(BABYSTEPPING)
 | 
			
		||||
        VPHELPER(VP_SD_Print_LiveAdjustZ, nullptr, ScreenHandler.HandleLiveAdjustZ, nullptr),
 | 
			
		||||
      #endif
 | 
			
		||||
@@ -474,10 +466,10 @@ const struct DGUS_VP_Variable ListOfVP[] PROGMEM = {
 | 
			
		||||
  #endif
 | 
			
		||||
 | 
			
		||||
  // Messages for the User, shared by the popup and the kill screen. They cant be autouploaded as we do not buffer content.
 | 
			
		||||
  { .VP = VP_MSGSTR1, .memadr = nullptr, .size = VP_MSGSTR1_LEN, .set_by_display_handler = nullptr, .send_to_display_handler = &ScreenHandler.DGUSLCD_SendStringToDisplayPGM },
 | 
			
		||||
  { .VP = VP_MSGSTR2, .memadr = nullptr, .size = VP_MSGSTR2_LEN, .set_by_display_handler = nullptr, .send_to_display_handler = &ScreenHandler.DGUSLCD_SendStringToDisplayPGM },
 | 
			
		||||
  { .VP = VP_MSGSTR3, .memadr = nullptr, .size = VP_MSGSTR3_LEN, .set_by_display_handler = nullptr, .send_to_display_handler = &ScreenHandler.DGUSLCD_SendStringToDisplayPGM },
 | 
			
		||||
  { .VP = VP_MSGSTR4, .memadr = nullptr, .size = VP_MSGSTR4_LEN, .set_by_display_handler = nullptr, .send_to_display_handler = &ScreenHandler.DGUSLCD_SendStringToDisplayPGM },
 | 
			
		||||
  { .VP = VP_MSGSTR1, .memadr = nullptr, .size = VP_MSGSTR1_LEN, .set_by_display_handler = nullptr, .send_to_display_handler = ScreenHandler.DGUSLCD_SendStringToDisplayPGM },
 | 
			
		||||
  { .VP = VP_MSGSTR2, .memadr = nullptr, .size = VP_MSGSTR2_LEN, .set_by_display_handler = nullptr, .send_to_display_handler = ScreenHandler.DGUSLCD_SendStringToDisplayPGM },
 | 
			
		||||
  { .VP = VP_MSGSTR3, .memadr = nullptr, .size = VP_MSGSTR3_LEN, .set_by_display_handler = nullptr, .send_to_display_handler = ScreenHandler.DGUSLCD_SendStringToDisplayPGM },
 | 
			
		||||
  { .VP = VP_MSGSTR4, .memadr = nullptr, .size = VP_MSGSTR4_LEN, .set_by_display_handler = nullptr, .send_to_display_handler = ScreenHandler.DGUSLCD_SendStringToDisplayPGM },
 | 
			
		||||
 | 
			
		||||
  VPHELPER(0, 0, 0, 0)  // must be last entry.
 | 
			
		||||
};
 | 
			
		||||
 
 | 
			
		||||
@@ -249,7 +249,7 @@ void DGUSScreenHandler::HandleManualMove(DGUS_VP_Variable &var, void *val_ptr) {
 | 
			
		||||
 | 
			
		||||
    switch (var.VP) {
 | 
			
		||||
      default: return;
 | 
			
		||||
        #if HOTENDS >= 1
 | 
			
		||||
        #if HAS_HOTEND
 | 
			
		||||
          case VP_E0_PID_P: newvalue = value; break;
 | 
			
		||||
          case VP_E0_PID_I: newvalue = scalePID_i(value); break;
 | 
			
		||||
          case VP_E0_PID_D: newvalue = scalePID_d(value); break;
 | 
			
		||||
@@ -329,18 +329,18 @@ void DGUSScreenHandler::HandleManualMove(DGUS_VP_Variable &var, void *val_ptr) {
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    if (filament_data.action == 0) { // Go back to utility screen
 | 
			
		||||
      #if HOTENDS >= 1
 | 
			
		||||
      #if HAS_HOTEND
 | 
			
		||||
        thermalManager.setTargetHotend(e_temp, ExtUI::extruder_t::E0);
 | 
			
		||||
      #endif
 | 
			
		||||
      #if HOTENDS >= 2
 | 
			
		||||
        thermalManager.setTargetHotend(e_temp, ExtUI::extruder_t::E1);
 | 
			
		||||
        #if HOTENDS >= 2
 | 
			
		||||
          thermalManager.setTargetHotend(e_temp, ExtUI::extruder_t::E1);
 | 
			
		||||
        #endif
 | 
			
		||||
      #endif
 | 
			
		||||
      GotoScreen(DGUSLCD_SCREEN_UTILITY);
 | 
			
		||||
    }
 | 
			
		||||
    else { // Go to the preheat screen to show the heating progress
 | 
			
		||||
      switch (var.VP) {
 | 
			
		||||
        default: return;
 | 
			
		||||
          #if HOTENDS >= 1
 | 
			
		||||
          #if HAS_HOTEND
 | 
			
		||||
            case VP_E0_FILAMENT_LOAD_UNLOAD:
 | 
			
		||||
              filament_data.extruder = ExtUI::extruder_t::E0;
 | 
			
		||||
              thermalManager.setTargetHotend(e_temp, filament_data.extruder);
 | 
			
		||||
 
 | 
			
		||||
@@ -120,11 +120,11 @@ const uint16_t VPList_Boot[] PROGMEM = {
 | 
			
		||||
 | 
			
		||||
const uint16_t VPList_Main[] PROGMEM = {
 | 
			
		||||
  // VP_M117, for completeness, but it cannot be auto-uploaded.
 | 
			
		||||
  #if HOTENDS >= 1
 | 
			
		||||
  #if HAS_HOTEND
 | 
			
		||||
    MKSLIST_E_ITEM(0) VP_E0_STATUS,
 | 
			
		||||
  #endif
 | 
			
		||||
  #if HOTENDS >= 2
 | 
			
		||||
    MKSLIST_E_ITEM(1)
 | 
			
		||||
    #if HOTENDS >= 2
 | 
			
		||||
      MKSLIST_E_ITEM(1) VP_E1_STATUS,
 | 
			
		||||
    #endif
 | 
			
		||||
  #endif
 | 
			
		||||
  #if HAS_HEATED_BED
 | 
			
		||||
    VP_T_Bed_Is, VP_T_Bed_Set, VP_BED_STATUS,
 | 
			
		||||
@@ -498,20 +498,6 @@ const char MarlinVersion[] PROGMEM = SHORT_BUILD_VERSION;
 | 
			
		||||
const char H43Version[] PROGMEM = "MKS H43_V1.30";
 | 
			
		||||
const char Updata_Time[] PROGMEM = STRING_DISTRIBUTION_DATE;
 | 
			
		||||
 | 
			
		||||
// Helper to define a DGUS_VP_Variable for common use cases.
 | 
			
		||||
#define VPHELPER(VPADR, VPADRVAR, RXFPTR, TXFPTR)                       \
 | 
			
		||||
  {                                                                     \
 | 
			
		||||
    .VP = VPADR, .memadr = VPADRVAR, .size = sizeof(VPADRVAR),          \
 | 
			
		||||
    .set_by_display_handler = RXFPTR, .send_to_display_handler = TXFPTR \
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
// Helper to define a DGUS_VP_Variable when the sizeo of the var cannot be determined automaticalyl (eg. a string)
 | 
			
		||||
#define VPHELPER_STR(VPADR, VPADRVAR, STRLEN, RXFPTR, TXFPTR)           \
 | 
			
		||||
  {                                                                     \
 | 
			
		||||
    .VP = VPADR, .memadr = VPADRVAR, .size = STRLEN,                    \
 | 
			
		||||
    .set_by_display_handler = RXFPTR, .send_to_display_handler = TXFPTR \
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
const struct DGUS_VP_Variable ListOfVP[] PROGMEM = {
 | 
			
		||||
  // Helper to detect touch events
 | 
			
		||||
  VPHELPER(VP_SCREENCHANGE, nullptr, ScreenHandler.ScreenChangeHook, nullptr),
 | 
			
		||||
@@ -522,109 +508,109 @@ const struct DGUS_VP_Variable ListOfVP[] PROGMEM = {
 | 
			
		||||
  VPHELPER(VP_CONFIRMED, nullptr, ScreenHandler.ScreenConfirmedOK, nullptr),
 | 
			
		||||
 | 
			
		||||
  // Back Button
 | 
			
		||||
  VPHELPER(VP_BACK_PAGE, nullptr, &ScreenHandler.ScreenBackChange, nullptr),
 | 
			
		||||
  VPHELPER(VP_TEMP_ALL_OFF, nullptr, &ScreenHandler.HandleAllHeatersOff, nullptr),
 | 
			
		||||
  VPHELPER(VP_BACK_PAGE, nullptr, ScreenHandler.ScreenBackChange, nullptr),
 | 
			
		||||
  VPHELPER(VP_TEMP_ALL_OFF, nullptr, ScreenHandler.HandleAllHeatersOff, nullptr),
 | 
			
		||||
 | 
			
		||||
  VPHELPER(VP_MOVE_X, nullptr, &ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
  VPHELPER(VP_MOVE_Y, nullptr, &ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
  VPHELPER(VP_MOVE_Z, nullptr, &ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
  VPHELPER(VP_HOME_ALL, nullptr, &ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
  VPHELPER(VP_MOVE_X, nullptr, ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
  VPHELPER(VP_MOVE_Y, nullptr, ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
  VPHELPER(VP_MOVE_Z, nullptr, ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
  VPHELPER(VP_HOME_ALL, nullptr, ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
 | 
			
		||||
  VPHELPER(VP_X_HOME, nullptr, &ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
  VPHELPER(VP_Y_HOME, nullptr, &ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
  VPHELPER(VP_Z_HOME, nullptr, &ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
  VPHELPER(VP_X_HOME, nullptr, ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
  VPHELPER(VP_Y_HOME, nullptr, ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
  VPHELPER(VP_Z_HOME, nullptr, ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
 | 
			
		||||
  VPHELPER(VP_MOVE_DISTANCE, &manualMoveStep, &ScreenHandler.GetManualMovestep, nullptr),
 | 
			
		||||
  VPHELPER(VP_MOVE_DISTANCE, &manualMoveStep, ScreenHandler.GetManualMovestep, nullptr),
 | 
			
		||||
 | 
			
		||||
  VPHELPER(VP_MOTOR_LOCK_UNLOK, nullptr, &ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
  VPHELPER(VP_LEVEL_POINT, nullptr, &ScreenHandler.ManualAssistLeveling, nullptr),
 | 
			
		||||
  VPHELPER(VP_MOTOR_LOCK_UNLOK, nullptr, ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
  VPHELPER(VP_LEVEL_POINT, nullptr, ScreenHandler.ManualAssistLeveling, nullptr),
 | 
			
		||||
 | 
			
		||||
  #if ENABLED(POWER_LOSS_RECOVERY)
 | 
			
		||||
    VPHELPER(VP_POWER_LOSS_RECOVERY, nullptr, &ScreenHandler.HandlePowerLossRecovery, nullptr),
 | 
			
		||||
    VPHELPER(VP_POWER_LOSS_RECOVERY, nullptr, ScreenHandler.HandlePowerLossRecovery, nullptr),
 | 
			
		||||
  #endif
 | 
			
		||||
  VPHELPER(VP_SETTINGS, nullptr, &ScreenHandler.HandleSettings, nullptr),
 | 
			
		||||
  VPHELPER(VP_SETTINGS, nullptr, ScreenHandler.HandleSettings, nullptr),
 | 
			
		||||
  #if ENABLED(SINGLE_Z_CALIBRATION)
 | 
			
		||||
    VPHELPER(VP_Z_CALIBRATE, nullptr, &ScreenHandler.HandleZCalibration, nullptr),
 | 
			
		||||
    VPHELPER(VP_Z_CALIBRATE, nullptr, ScreenHandler.HandleZCalibration, nullptr),
 | 
			
		||||
  #endif
 | 
			
		||||
  #if ENABLED(FIRST_LAYER_CAL)
 | 
			
		||||
    VPHELPER(VP_Z_FIRST_LAYER_CAL, nullptr, &ScreenHandler.HandleFirstLayerCal, nullptr),
 | 
			
		||||
    VPHELPER(VP_Z_FIRST_LAYER_CAL, nullptr, ScreenHandler.HandleFirstLayerCal, nullptr),
 | 
			
		||||
  #endif
 | 
			
		||||
  {.VP = VP_MARLIN_VERSION, .memadr = (void *)MarlinVersion, .size = VP_MARLIN_VERSION_LEN, .set_by_display_handler = nullptr, .send_to_display_handler = &ScreenHandler.DGUSLCD_SendStringToDisplayPGM},
 | 
			
		||||
  {.VP = VP_MARLIN_VERSION, .memadr = (void *)MarlinVersion, .size = VP_MARLIN_VERSION_LEN, .set_by_display_handler = nullptr, .send_to_display_handler = ScreenHandler.DGUSLCD_SendStringToDisplayPGM},
 | 
			
		||||
  // M117 LCD String (We don't need the string in memory but "just" push it to the display on demand, hence the nullptr
 | 
			
		||||
  {.VP = VP_M117, .memadr = nullptr, .size = VP_M117_LEN, .set_by_display_handler = nullptr, .send_to_display_handler = &ScreenHandler.DGUSLCD_SendStringToDisplay},
 | 
			
		||||
  {.VP = VP_MKS_H43_VERSION, .memadr = (void *)H43Version, .size = VP_MKS_H43_VERSION_LEN, .set_by_display_handler = nullptr, .send_to_display_handler = &ScreenHandler.DGUSLCD_SendStringToDisplayPGM},
 | 
			
		||||
  {.VP = VP_MKS_H43_UpdataVERSION, .memadr = (void *)Updata_Time, .size = VP_MKS_H43_VERSION_LEN, .set_by_display_handler = nullptr, .send_to_display_handler = &ScreenHandler.DGUSLCD_SendStringToDisplayPGM},
 | 
			
		||||
  {.VP = VP_M117, .memadr = nullptr, .size = VP_M117_LEN, .set_by_display_handler = nullptr, .send_to_display_handler = ScreenHandler.DGUSLCD_SendStringToDisplay},
 | 
			
		||||
  {.VP = VP_MKS_H43_VERSION, .memadr = (void *)H43Version, .size = VP_MKS_H43_VERSION_LEN, .set_by_display_handler = nullptr, .send_to_display_handler = ScreenHandler.DGUSLCD_SendStringToDisplayPGM},
 | 
			
		||||
  {.VP = VP_MKS_H43_UpdataVERSION, .memadr = (void *)Updata_Time, .size = VP_MKS_H43_VERSION_LEN, .set_by_display_handler = nullptr, .send_to_display_handler = ScreenHandler.DGUSLCD_SendStringToDisplayPGM},
 | 
			
		||||
 | 
			
		||||
  // Temperature Data
 | 
			
		||||
  #if HOTENDS >= 1
 | 
			
		||||
  #if HAS_HOTEND
 | 
			
		||||
    VPHELPER(VP_T_E0_Is, &thermalManager.temp_hotend[0].celsius, nullptr, ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
    VPHELPER(VP_T_E0_Set, &thermalManager.temp_hotend[0].target, ScreenHandler.HandleTemperatureChanged, &ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
    VPHELPER(VP_Flowrate_E0, &planner.flow_percentage[ExtUI::extruder_t::E0], ScreenHandler.HandleFlowRateChanged, &ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
    VPHELPER(VP_T_E0_Set, &thermalManager.temp_hotend[0].target, ScreenHandler.HandleTemperatureChanged, ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
    VPHELPER(VP_Flowrate_E0, &planner.flow_percentage[ExtUI::extruder_t::E0], ScreenHandler.HandleFlowRateChanged, ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
    VPHELPER(VP_EPos, &destination.e, nullptr, ScreenHandler.DGUSLCD_SendFloatAsLongValueToDisplay<2>),
 | 
			
		||||
    VPHELPER(VP_MOVE_E0, nullptr, &ScreenHandler.HandleManualExtrude, nullptr),
 | 
			
		||||
    VPHELPER(VP_E0_CONTROL, &thermalManager.temp_hotend[0].target, &ScreenHandler.HandleHeaterControl, nullptr),
 | 
			
		||||
    VPHELPER(VP_E0_STATUS, &thermalManager.temp_hotend[0].target, nullptr, &ScreenHandler.DGUSLCD_SendHeaterStatusToDisplay),
 | 
			
		||||
    VPHELPER(VP_MOVE_E0, nullptr, ScreenHandler.HandleManualExtrude, nullptr),
 | 
			
		||||
    VPHELPER(VP_E0_CONTROL, &thermalManager.temp_hotend[0].target, ScreenHandler.HandleHeaterControl, nullptr),
 | 
			
		||||
    VPHELPER(VP_E0_STATUS, &thermalManager.temp_hotend[0].target, nullptr, ScreenHandler.DGUSLCD_SendHeaterStatusToDisplay),
 | 
			
		||||
    #if ENABLED(DGUS_PREHEAT_UI)
 | 
			
		||||
      VPHELPER(VP_E0_BED_PREHEAT, nullptr, &ScreenHandler.HandlePreheat, nullptr),
 | 
			
		||||
      VPHELPER(VP_E0_BED_PREHEAT, nullptr, ScreenHandler.HandlePreheat, nullptr),
 | 
			
		||||
    #endif
 | 
			
		||||
    #if ENABLED(PIDTEMP)
 | 
			
		||||
      VPHELPER(VP_E0_PID_P, &thermalManager.temp_hotend[0].pid.Kp, ScreenHandler.HandleTemperaturePIDChanged, ScreenHandler.DGUSLCD_SendTemperaturePID),
 | 
			
		||||
      VPHELPER(VP_E0_PID_I, &thermalManager.temp_hotend[0].pid.Ki, ScreenHandler.HandleTemperaturePIDChanged, ScreenHandler.DGUSLCD_SendTemperaturePID),
 | 
			
		||||
      VPHELPER(VP_E0_PID_D, &thermalManager.temp_hotend[0].pid.Kd, ScreenHandler.HandleTemperaturePIDChanged, ScreenHandler.DGUSLCD_SendTemperaturePID),
 | 
			
		||||
      VPHELPER(VP_PID_AUTOTUNE_E0, nullptr, &ScreenHandler.HandlePIDAutotune, nullptr),
 | 
			
		||||
      VPHELPER(VP_PID_AUTOTUNE_E0, nullptr, ScreenHandler.HandlePIDAutotune, nullptr),
 | 
			
		||||
    #endif
 | 
			
		||||
    #if ENABLED(DGUS_FILAMENT_LOADUNLOAD)
 | 
			
		||||
      VPHELPER(VP_LOAD_Filament, nullptr, &ScreenHandler.MKS_FilamentLoad, nullptr),
 | 
			
		||||
      VPHELPER(VP_UNLOAD_Filament, nullptr, &ScreenHandler.MKS_FilamentUnLoad, nullptr),
 | 
			
		||||
      VPHELPER(VP_Filament_distance, &distanceFilament, &ScreenHandler.GetManualFilament, ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
      VPHELPER(VP_Filament_speed, &filamentSpeed_mm_s, &ScreenHandler.GetManualFilamentSpeed, ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
      VPHELPER(VP_LOAD_Filament, nullptr, ScreenHandler.MKS_FilamentLoad, nullptr),
 | 
			
		||||
      VPHELPER(VP_UNLOAD_Filament, nullptr, ScreenHandler.MKS_FilamentUnLoad, nullptr),
 | 
			
		||||
      VPHELPER(VP_Filament_distance, &distanceFilament, ScreenHandler.GetManualFilament, ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
      VPHELPER(VP_Filament_speed, &filamentSpeed_mm_s, ScreenHandler.GetManualFilamentSpeed, ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
    #endif
 | 
			
		||||
  #endif
 | 
			
		||||
 | 
			
		||||
  #if HOTENDS >= 2
 | 
			
		||||
    VPHELPER(VP_T_E1_Is, &thermalManager.temp_hotend[1].celsius, nullptr, ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
    VPHELPER(VP_T_E1_Set, &thermalManager.temp_hotend[1].target, ScreenHandler.HandleTemperatureChanged, &ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
    VPHELPER(VP_Flowrate_E1, &planner.flow_percentage[ExtUI::extruder_t::E1], ScreenHandler.HandleFlowRateChanged, &ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
    VPHELPER(VP_MOVE_E1, nullptr, &ScreenHandler.HandleManualExtrude, nullptr),
 | 
			
		||||
    VPHELPER(VP_E1_CONTROL, &thermalManager.temp_hotend[1].target, &ScreenHandler.HandleHeaterControl, nullptr),
 | 
			
		||||
    VPHELPER(VP_E1_STATUS, &thermalManager.temp_hotend[1].target, nullptr, &ScreenHandler.DGUSLCD_SendHeaterStatusToDisplay),
 | 
			
		||||
    VPHELPER(VP_T_E1_Set, &thermalManager.temp_hotend[1].target, ScreenHandler.HandleTemperatureChanged, ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
    VPHELPER(VP_Flowrate_E1, &planner.flow_percentage[ExtUI::extruder_t::E1], ScreenHandler.HandleFlowRateChanged, ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
    VPHELPER(VP_MOVE_E1, nullptr, ScreenHandler.HandleManualExtrude, nullptr),
 | 
			
		||||
    VPHELPER(VP_E1_CONTROL, &thermalManager.temp_hotend[1].target, ScreenHandler.HandleHeaterControl, nullptr),
 | 
			
		||||
    VPHELPER(VP_E1_STATUS, &thermalManager.temp_hotend[1].target, nullptr, ScreenHandler.DGUSLCD_SendHeaterStatusToDisplay),
 | 
			
		||||
 | 
			
		||||
    #if ENABLED(DGUS_FILAMENT_LOADUNLOAD)
 | 
			
		||||
      VPHELPER(VP_Filament_distance, &distanceFilament, &ScreenHandler.GetManualFilament, ScreenHandler.DGUSLCD_SendFloatAsIntValueToDisplay<0>),
 | 
			
		||||
      VPHELPER(VP_Filament_speed, &filamentSpeed_mm_s, &ScreenHandler.GetManualFilamentSpeed, ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
      VPHELPER(VP_Filament_distance, &distanceFilament, ScreenHandler.GetManualFilament, ScreenHandler.DGUSLCD_SendFloatAsIntValueToDisplay<0>),
 | 
			
		||||
      VPHELPER(VP_Filament_speed, &filamentSpeed_mm_s, ScreenHandler.GetManualFilamentSpeed, ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
    #endif
 | 
			
		||||
 | 
			
		||||
    #if ENABLED(PIDTEMP)
 | 
			
		||||
      VPHELPER(VP_PID_AUTOTUNE_E1, nullptr, &ScreenHandler.HandlePIDAutotune, nullptr),
 | 
			
		||||
      VPHELPER(VP_PID_AUTOTUNE_E1, nullptr, ScreenHandler.HandlePIDAutotune, nullptr),
 | 
			
		||||
    #endif
 | 
			
		||||
 | 
			
		||||
    VPHELPER(VP_E1_FILAMENT_LOAD_UNLOAD, nullptr, &ScreenHandler.HandleFilamentOption, &ScreenHandler.HandleFilamentLoadUnload),
 | 
			
		||||
    VPHELPER(VP_E1_FILAMENT_LOAD_UNLOAD, nullptr, ScreenHandler.HandleFilamentOption, ScreenHandler.HandleFilamentLoadUnload),
 | 
			
		||||
  #endif
 | 
			
		||||
 | 
			
		||||
  #if HAS_HEATED_BED
 | 
			
		||||
    VPHELPER(VP_T_Bed_Is, &thermalManager.temp_bed.celsius, nullptr, ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
    VPHELPER(VP_T_Bed_Set, &thermalManager.temp_bed.target, ScreenHandler.HandleTemperatureChanged, &ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
    VPHELPER(VP_BED_CONTROL, &thermalManager.temp_bed.target, &ScreenHandler.HandleHeaterControl, nullptr),
 | 
			
		||||
    VPHELPER(VP_BED_STATUS, &thermalManager.temp_bed.target, nullptr, &ScreenHandler.DGUSLCD_SendHeaterStatusToDisplay),
 | 
			
		||||
    VPHELPER(VP_T_Bed_Set, &thermalManager.temp_bed.target, ScreenHandler.HandleTemperatureChanged, ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
    VPHELPER(VP_BED_CONTROL, &thermalManager.temp_bed.target, ScreenHandler.HandleHeaterControl, nullptr),
 | 
			
		||||
    VPHELPER(VP_BED_STATUS, &thermalManager.temp_bed.target, nullptr, ScreenHandler.DGUSLCD_SendHeaterStatusToDisplay),
 | 
			
		||||
    #if ENABLED(PIDTEMPBED)
 | 
			
		||||
      VPHELPER(VP_BED_PID_P, &thermalManager.temp_bed.pid.Kp, ScreenHandler.HandleTemperaturePIDChanged, ScreenHandler.DGUSLCD_SendTemperaturePID),
 | 
			
		||||
      VPHELPER(VP_BED_PID_I, &thermalManager.temp_bed.pid.Ki, ScreenHandler.HandleTemperaturePIDChanged, ScreenHandler.DGUSLCD_SendTemperaturePID),
 | 
			
		||||
      VPHELPER(VP_BED_PID_D, &thermalManager.temp_bed.pid.Kd, ScreenHandler.HandleTemperaturePIDChanged, ScreenHandler.DGUSLCD_SendTemperaturePID),
 | 
			
		||||
      VPHELPER(VP_PID_AUTOTUNE_BED, nullptr, &ScreenHandler.HandlePIDAutotune, nullptr),
 | 
			
		||||
      VPHELPER(VP_PID_AUTOTUNE_BED, nullptr, ScreenHandler.HandlePIDAutotune, nullptr),
 | 
			
		||||
    #endif
 | 
			
		||||
  #endif
 | 
			
		||||
 | 
			
		||||
  // Fan Data
 | 
			
		||||
  #if HAS_FAN
 | 
			
		||||
    #define FAN_VPHELPER(N)                                                                                                                    \
 | 
			
		||||
      VPHELPER(VP_Fan##N##_Percentage, &thermalManager.fan_speed[N], ScreenHandler.DGUSLCD_SetUint8, &ScreenHandler.DGUSLCD_SendFanToDisplay), \
 | 
			
		||||
      VPHELPER(VP_FAN##N##_CONTROL, &thermalManager.fan_speed[N], &ScreenHandler.HandleFanControl, nullptr),                               \
 | 
			
		||||
      VPHELPER(VP_FAN##N##_STATUS, &thermalManager.fan_speed[N], nullptr, &ScreenHandler.DGUSLCD_SendFanStatusToDisplay),
 | 
			
		||||
      VPHELPER(VP_Fan##N##_Percentage, &thermalManager.fan_speed[N], ScreenHandler.DGUSLCD_SetUint8, ScreenHandler.DGUSLCD_SendFanToDisplay), \
 | 
			
		||||
      VPHELPER(VP_FAN##N##_CONTROL, &thermalManager.fan_speed[N], ScreenHandler.HandleFanControl, nullptr),                               \
 | 
			
		||||
      VPHELPER(VP_FAN##N##_STATUS, &thermalManager.fan_speed[N], nullptr, ScreenHandler.DGUSLCD_SendFanStatusToDisplay),
 | 
			
		||||
    REPEAT(FAN_COUNT, FAN_VPHELPER)
 | 
			
		||||
  #endif
 | 
			
		||||
 | 
			
		||||
  // Feedrate
 | 
			
		||||
  VPHELPER(VP_Feedrate_Percentage, &feedrate_percentage, ScreenHandler.DGUSLCD_SetValueDirectly<int16_t>, &ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
  VPHELPER(VP_Feedrate_Percentage, &feedrate_percentage, ScreenHandler.DGUSLCD_SetValueDirectly<int16_t>, ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
 | 
			
		||||
  // Position Data
 | 
			
		||||
  VPHELPER(VP_XPos, ¤t_position.x, nullptr, ScreenHandler.DGUSLCD_SendFloatAsLongValueToDisplay<2>),
 | 
			
		||||
@@ -646,8 +632,8 @@ const struct DGUS_VP_Variable ListOfVP[] PROGMEM = {
 | 
			
		||||
  // Print Progress
 | 
			
		||||
  VPHELPER(VP_PrintProgress_Percentage, nullptr, nullptr, ScreenHandler.DGUSLCD_SendPrintProgressToDisplay),
 | 
			
		||||
 | 
			
		||||
  //LCD Control
 | 
			
		||||
  VPHELPER(VP_LCD_BLK, &lcd_default_light, &ScreenHandler.LCD_BLK_Adjust, ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
  // LCD Control
 | 
			
		||||
  VPHELPER(VP_LCD_BLK, &lcd_default_light, ScreenHandler.LCD_BLK_Adjust, ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
 | 
			
		||||
  // Print Time
 | 
			
		||||
  VPHELPER_STR(VP_PrintTime, nullptr, VP_PrintTime_LEN, nullptr, ScreenHandler.DGUSLCD_SendPrintTimeToDisplay_MKS),
 | 
			
		||||
@@ -665,22 +651,22 @@ const struct DGUS_VP_Variable ListOfVP[] PROGMEM = {
 | 
			
		||||
  VPHELPER(VP_Y_MAX_SPEED, &planner.settings.max_feedrate_mm_s[Y_AXIS], ScreenHandler.HandleMaxSpeedChange_MKS, ScreenHandler.DGUSLCD_SendFloatAsIntValueToDisplay<0>),
 | 
			
		||||
  VPHELPER(VP_Z_MAX_SPEED, &planner.settings.max_feedrate_mm_s[Z_AXIS], ScreenHandler.HandleMaxSpeedChange_MKS, ScreenHandler.DGUSLCD_SendFloatAsIntValueToDisplay<0>),
 | 
			
		||||
 | 
			
		||||
  #if HOTENDS >= 1
 | 
			
		||||
  #if HAS_HOTEND
 | 
			
		||||
    VPHELPER(VP_E0_MAX_SPEED, &planner.settings.max_feedrate_mm_s[E_AXIS_N(0)], ScreenHandler.HandleExtruderMaxSpeedChange_MKS, ScreenHandler.DGUSLCD_SendFloatAsIntValueToDisplay<0>),
 | 
			
		||||
  #endif
 | 
			
		||||
  #if HOTENDS >= 2
 | 
			
		||||
    VPHELPER(VP_E1_MAX_SPEED, &planner.settings.max_feedrate_mm_s[E_AXIS_N(1)], ScreenHandler.HandleExtruderMaxSpeedChange_MKS, ScreenHandler.DGUSLCD_SendFloatAsIntValueToDisplay<0>),
 | 
			
		||||
    #if HOTENDS >= 2
 | 
			
		||||
      VPHELPER(VP_E1_MAX_SPEED, &planner.settings.max_feedrate_mm_s[E_AXIS_N(1)], ScreenHandler.HandleExtruderMaxSpeedChange_MKS, ScreenHandler.DGUSLCD_SendFloatAsIntValueToDisplay<0>),
 | 
			
		||||
    #endif
 | 
			
		||||
  #endif
 | 
			
		||||
 | 
			
		||||
  VPHELPER(VP_X_ACC_MAX_SPEED, (uint16_t *)&planner.settings.max_acceleration_mm_per_s2[X_AXIS], ScreenHandler.HandleMaxAccChange_MKS, ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
  VPHELPER(VP_Y_ACC_MAX_SPEED, (uint16_t *)&planner.settings.max_acceleration_mm_per_s2[Y_AXIS], ScreenHandler.HandleMaxAccChange_MKS, ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
  VPHELPER(VP_Z_ACC_MAX_SPEED, (uint16_t *)&planner.settings.max_acceleration_mm_per_s2[Z_AXIS], ScreenHandler.HandleMaxAccChange_MKS, ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
 | 
			
		||||
  #if HOTENDS >= 1
 | 
			
		||||
  #if HAS_HOTEND
 | 
			
		||||
    VPHELPER(VP_E0_ACC_MAX_SPEED, (uint16_t *)&planner.settings.max_acceleration_mm_per_s2[E_AXIS_N(0)], ScreenHandler.HandleExtruderAccChange_MKS, ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
  #endif
 | 
			
		||||
  #if HOTENDS >= 2
 | 
			
		||||
    VPHELPER(VP_E1_ACC_MAX_SPEED, (uint16_t *)&planner.settings.max_acceleration_mm_per_s2[E_AXIS_N(1)], ScreenHandler.HandleExtruderAccChange_MKS, ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
    #if HOTENDS >= 2
 | 
			
		||||
      VPHELPER(VP_E1_ACC_MAX_SPEED, (uint16_t *)&planner.settings.max_acceleration_mm_per_s2[E_AXIS_N(1)], ScreenHandler.HandleExtruderAccChange_MKS, ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
    #endif
 | 
			
		||||
  #endif
 | 
			
		||||
 | 
			
		||||
  VPHELPER(VP_TRAVEL_SPEED, (uint16_t *)&planner.settings.travel_acceleration, ScreenHandler.HandleTravelAccChange_MKS, ScreenHandler.DGUSLCD_SendFloatAsIntValueToDisplay<0>),
 | 
			
		||||
@@ -748,18 +734,17 @@ const struct DGUS_VP_Variable ListOfVP[] PROGMEM = {
 | 
			
		||||
  VPHELPER(VP_MESH_LEVEL_POINT,nullptr, ScreenHandler.MeshLevel,nullptr),
 | 
			
		||||
 | 
			
		||||
  #if ENABLED(PREVENT_COLD_EXTRUSION)
 | 
			
		||||
    VPHELPER(VP_Min_EX_T_E, &thermalManager.extrude_min_temp, &ScreenHandler.GetMinExtrudeTemp, &ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
    VPHELPER(VP_Min_EX_T_E, &thermalManager.extrude_min_temp, ScreenHandler.GetMinExtrudeTemp, ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
  #endif
 | 
			
		||||
 | 
			
		||||
  VPHELPER(VP_AutoTurnOffSw, nullptr, &ScreenHandler.GetTurnOffCtrl, nullptr),
 | 
			
		||||
  VPHELPER(VP_AutoTurnOffSw, nullptr, ScreenHandler.GetTurnOffCtrl, nullptr),
 | 
			
		||||
 | 
			
		||||
  #if HOTENDS >= 1
 | 
			
		||||
  #if HAS_HOTEND
 | 
			
		||||
    VPHELPER(VP_E0_STEP_PER_MM, &planner.settings.axis_steps_per_mm[E_AXIS_N(0)], ScreenHandler.HandleStepPerMMExtruderChanged_MKS, ScreenHandler.DGUSLCD_SendFloatAsIntValueToDisplay<0>),
 | 
			
		||||
    #if HOTENDS >= 2
 | 
			
		||||
      VPHELPER(VP_E1_STEP_PER_MM, &planner.settings.axis_steps_per_mm[E_AXIS_N(1)], ScreenHandler.HandleStepPerMMExtruderChanged_MKS, ScreenHandler.DGUSLCD_SendFloatAsIntValueToDisplay<0>),
 | 
			
		||||
    #endif
 | 
			
		||||
  #endif
 | 
			
		||||
  #if HOTENDS >= 2
 | 
			
		||||
    VPHELPER(VP_E1_STEP_PER_MM, &planner.settings.axis_steps_per_mm[E_AXIS_N(1)], ScreenHandler.HandleStepPerMMExtruderChanged_MKS, ScreenHandler.DGUSLCD_SendFloatAsIntValueToDisplay<0>),
 | 
			
		||||
  #endif
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
  // SDCard File listing
 | 
			
		||||
 | 
			
		||||
@@ -781,8 +766,8 @@ const struct DGUS_VP_Variable ListOfVP[] PROGMEM = {
 | 
			
		||||
    VPHELPER(VP_SD_AbortPrintConfirmed, nullptr, ScreenHandler.DGUSLCD_SD_ReallyAbort, nullptr),
 | 
			
		||||
    VPHELPER(VP_SD_Print_Setting, nullptr, ScreenHandler.DGUSLCD_SD_PrintTune, nullptr),
 | 
			
		||||
    #if ENABLED(BABYSTEPPING)
 | 
			
		||||
      VPHELPER(VP_SD_Print_LiveAdjustZ, nullptr, ScreenHandler.HandleLiveAdjustZ, &ScreenHandler.DGUSLCD_SendFloatAsIntValueToDisplay<2>),
 | 
			
		||||
      VPHELPER(VP_ZOffset_DE_DIS, &z_offset_add, nullptr, &ScreenHandler.DGUSLCD_SendFloatAsLongValueToDisplay<2>),
 | 
			
		||||
      VPHELPER(VP_SD_Print_LiveAdjustZ, nullptr, ScreenHandler.HandleLiveAdjustZ, ScreenHandler.DGUSLCD_SendFloatAsIntValueToDisplay<2>),
 | 
			
		||||
      VPHELPER(VP_ZOffset_DE_DIS, &z_offset_add, nullptr, ScreenHandler.DGUSLCD_SendFloatAsLongValueToDisplay<2>),
 | 
			
		||||
    #endif
 | 
			
		||||
    #if HAS_BED_PROBE
 | 
			
		||||
      VPHELPER(VP_OFFSET_X, &probe.offset.x, ScreenHandler.GetOffsetValue,ScreenHandler.DGUSLCD_SendFloatAsLongValueToDisplay<2>),
 | 
			
		||||
@@ -798,15 +783,15 @@ const struct DGUS_VP_Variable ListOfVP[] PROGMEM = {
 | 
			
		||||
  #endif
 | 
			
		||||
 | 
			
		||||
  // Messages for the User, shared by the popup and the kill screen. They cant be autouploaded as we do not buffer content.
 | 
			
		||||
  //{.VP = VP_MSGSTR1, .memadr = nullptr, .size = VP_MSGSTR1_LEN, .set_by_display_handler = nullptr, .send_to_display_handler = &ScreenHandler.DGUSLCD_SendStringToDisplayPGM},
 | 
			
		||||
  //{.VP = VP_MSGSTR2, .memadr = nullptr, .size = VP_MSGSTR2_LEN, .set_by_display_handler = nullptr, .send_to_display_handler = &ScreenHandler.DGUSLCD_SendStringToDisplayPGM},
 | 
			
		||||
  //{.VP = VP_MSGSTR3, .memadr = nullptr, .size = VP_MSGSTR3_LEN, .set_by_display_handler = nullptr, .send_to_display_handler = &ScreenHandler.DGUSLCD_SendStringToDisplayPGM},
 | 
			
		||||
  //{.VP = VP_MSGSTR4, .memadr = nullptr, .size = VP_MSGSTR4_LEN, .set_by_display_handler = nullptr, .send_to_display_handler = &ScreenHandler.DGUSLCD_SendStringToDisplayPGM},
 | 
			
		||||
  //{.VP = VP_MSGSTR1, .memadr = nullptr, .size = VP_MSGSTR1_LEN, .set_by_display_handler = nullptr, .send_to_display_handler = ScreenHandler.DGUSLCD_SendStringToDisplayPGM},
 | 
			
		||||
  //{.VP = VP_MSGSTR2, .memadr = nullptr, .size = VP_MSGSTR2_LEN, .set_by_display_handler = nullptr, .send_to_display_handler = ScreenHandler.DGUSLCD_SendStringToDisplayPGM},
 | 
			
		||||
  //{.VP = VP_MSGSTR3, .memadr = nullptr, .size = VP_MSGSTR3_LEN, .set_by_display_handler = nullptr, .send_to_display_handler = ScreenHandler.DGUSLCD_SendStringToDisplayPGM},
 | 
			
		||||
  //{.VP = VP_MSGSTR4, .memadr = nullptr, .size = VP_MSGSTR4_LEN, .set_by_display_handler = nullptr, .send_to_display_handler = ScreenHandler.DGUSLCD_SendStringToDisplayPGM},
 | 
			
		||||
 | 
			
		||||
  {.VP = VP_MSGSTR1, .memadr = nullptr, .size = VP_MSGSTR1_LEN, .set_by_display_handler = nullptr, .send_to_display_handler = &ScreenHandler.DGUSLCD_SendStringToDisplay_Language_MKS},
 | 
			
		||||
  {.VP = VP_MSGSTR2, .memadr = nullptr, .size = VP_MSGSTR2_LEN, .set_by_display_handler = nullptr, .send_to_display_handler = &ScreenHandler.DGUSLCD_SendStringToDisplay_Language_MKS},
 | 
			
		||||
  {.VP = VP_MSGSTR3, .memadr = nullptr, .size = VP_MSGSTR3_LEN, .set_by_display_handler = nullptr, .send_to_display_handler = &ScreenHandler.DGUSLCD_SendStringToDisplay_Language_MKS},
 | 
			
		||||
  {.VP = VP_MSGSTR4, .memadr = nullptr, .size = VP_MSGSTR4_LEN, .set_by_display_handler = nullptr, .send_to_display_handler = &ScreenHandler.DGUSLCD_SendStringToDisplay_Language_MKS},
 | 
			
		||||
  {.VP = VP_MSGSTR1, .memadr = nullptr, .size = VP_MSGSTR1_LEN, .set_by_display_handler = nullptr, .send_to_display_handler = ScreenHandler.DGUSLCD_SendStringToDisplay_Language_MKS},
 | 
			
		||||
  {.VP = VP_MSGSTR2, .memadr = nullptr, .size = VP_MSGSTR2_LEN, .set_by_display_handler = nullptr, .send_to_display_handler = ScreenHandler.DGUSLCD_SendStringToDisplay_Language_MKS},
 | 
			
		||||
  {.VP = VP_MSGSTR3, .memadr = nullptr, .size = VP_MSGSTR3_LEN, .set_by_display_handler = nullptr, .send_to_display_handler = ScreenHandler.DGUSLCD_SendStringToDisplay_Language_MKS},
 | 
			
		||||
  {.VP = VP_MSGSTR4, .memadr = nullptr, .size = VP_MSGSTR4_LEN, .set_by_display_handler = nullptr, .send_to_display_handler = ScreenHandler.DGUSLCD_SendStringToDisplay_Language_MKS},
 | 
			
		||||
 | 
			
		||||
  VPHELPER(0, 0, 0, 0) // must be last entry.
 | 
			
		||||
};
 | 
			
		||||
 
 | 
			
		||||
@@ -575,7 +575,6 @@ void DGUSScreenHandler::MeshLevel(DGUS_VP_Variable &var, void *val_ptr) {
 | 
			
		||||
          settings.save();
 | 
			
		||||
        }
 | 
			
		||||
        else if (mesh_point_count == 0) {
 | 
			
		||||
 | 
			
		||||
          mesh_point_count = GRID_MAX_POINTS;
 | 
			
		||||
          soft_endstop._enabled = true;
 | 
			
		||||
          settings.save();
 | 
			
		||||
 
 | 
			
		||||
@@ -189,12 +189,12 @@ public:
 | 
			
		||||
    static void PrintReturn(DGUS_VP_Variable &var, void *val_ptr);
 | 
			
		||||
  #endif
 | 
			
		||||
 | 
			
		||||
  // OK Button the Confirm screen.
 | 
			
		||||
  // OK Button on the Confirm screen.
 | 
			
		||||
  static void ScreenConfirmedOK(DGUS_VP_Variable &var, void *val_ptr);
 | 
			
		||||
 | 
			
		||||
  // Update data after went to new screen (by display or by GotoScreen)
 | 
			
		||||
  // remember: store the last-displayed screen, so it can get returned to.
 | 
			
		||||
  // (e.g for pop up messages)
 | 
			
		||||
  // Update data after going to a new screen (by display or by GotoScreen)
 | 
			
		||||
  // remember: store the last-displayed screen, so it can be returned to.
 | 
			
		||||
  // (e.g for popup messages)
 | 
			
		||||
  static void UpdateNewScreen(DGUSLCD_Screens newscreen, bool popup=false);
 | 
			
		||||
 | 
			
		||||
  // Recall the remembered screen.
 | 
			
		||||
 
 | 
			
		||||
@@ -55,11 +55,11 @@ const uint16_t VPList_Main[] PROGMEM = {
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
const uint16_t VPList_Temp[] PROGMEM = {
 | 
			
		||||
  #if HOTENDS >= 1
 | 
			
		||||
  #if HAS_HOTEND
 | 
			
		||||
    VP_T_E0_Is, VP_T_E0_Set,
 | 
			
		||||
  #endif
 | 
			
		||||
  #if HOTENDS >= 2
 | 
			
		||||
    VP_T_E1_Is, VP_T_E1_Set,
 | 
			
		||||
    #if HOTENDS >= 2
 | 
			
		||||
      VP_T_E1_Is, VP_T_E1_Set,
 | 
			
		||||
    #endif
 | 
			
		||||
  #endif
 | 
			
		||||
  #if HAS_HEATED_BED
 | 
			
		||||
    VP_T_Bed_Is, VP_T_Bed_Set,
 | 
			
		||||
@@ -69,11 +69,11 @@ const uint16_t VPList_Temp[] PROGMEM = {
 | 
			
		||||
 | 
			
		||||
const uint16_t VPList_Status[] PROGMEM = {
 | 
			
		||||
  /* VP_M117, for completeness, but it cannot be auto-uploaded */
 | 
			
		||||
  #if HOTENDS >= 1
 | 
			
		||||
  #if HAS_HOTEND
 | 
			
		||||
    VP_T_E0_Is, VP_T_E0_Set,
 | 
			
		||||
  #endif
 | 
			
		||||
  #if HOTENDS >= 2
 | 
			
		||||
    VP_T_E1_Is, VP_T_E1_Set,
 | 
			
		||||
    #if HOTENDS >= 2
 | 
			
		||||
      VP_T_E1_Is, VP_T_E1_Set,
 | 
			
		||||
    #endif
 | 
			
		||||
  #endif
 | 
			
		||||
  #if HAS_HEATED_BED
 | 
			
		||||
    VP_T_Bed_Is, VP_T_Bed_Set,
 | 
			
		||||
@@ -90,72 +90,40 @@ const uint16_t VPList_Status[] PROGMEM = {
 | 
			
		||||
 | 
			
		||||
const uint16_t VPList_Status2[] PROGMEM = {
 | 
			
		||||
  // VP_M117, for completeness, but it cannot be auto-uploaded
 | 
			
		||||
  #if HOTENDS >= 1
 | 
			
		||||
  #if HAS_HOTEND
 | 
			
		||||
    VP_Flowrate_E0,
 | 
			
		||||
  #endif
 | 
			
		||||
  #if HOTENDS >= 2
 | 
			
		||||
    VP_Flowrate_E1,
 | 
			
		||||
    #if HOTENDS >= 2
 | 
			
		||||
      VP_Flowrate_E1,
 | 
			
		||||
    #endif
 | 
			
		||||
  #endif
 | 
			
		||||
  VP_PrintProgress_Percentage,
 | 
			
		||||
  VP_PrintTime,
 | 
			
		||||
  0x0000
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
const uint16_t VPList_ManualMove[] PROGMEM = {
 | 
			
		||||
  VP_XPos, VP_YPos, VP_ZPos,
 | 
			
		||||
  0x0000
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
const uint16_t VPList_ManualExtrude[] PROGMEM = {
 | 
			
		||||
  VP_EPos,
 | 
			
		||||
  0x0000
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
const uint16_t VPList_FanAndFeedrate[] PROGMEM = {
 | 
			
		||||
  VP_Feedrate_Percentage, VP_Fan0_Percentage,
 | 
			
		||||
  0x0000
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
const uint16_t VPList_SD_FlowRates[] PROGMEM = {
 | 
			
		||||
  VP_Flowrate_E0, VP_Flowrate_E1,
 | 
			
		||||
  0x0000
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
const uint16_t VPList_SDFileList[] PROGMEM = {
 | 
			
		||||
  VP_SD_FileName0, VP_SD_FileName1, VP_SD_FileName2, VP_SD_FileName3, VP_SD_FileName4,
 | 
			
		||||
  0x0000
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
const uint16_t VPList_SD_PrintManipulation[] PROGMEM = {
 | 
			
		||||
  VP_PrintProgress_Percentage, VP_PrintTime,
 | 
			
		||||
  0x0000
 | 
			
		||||
};
 | 
			
		||||
const uint16_t VPList_ManualMove[]           PROGMEM = { VP_XPos, VP_YPos, VP_ZPos, 0x0000 };
 | 
			
		||||
const uint16_t VPList_ManualExtrude[]        PROGMEM = { VP_EPos, 0x0000 };
 | 
			
		||||
const uint16_t VPList_FanAndFeedrate[]       PROGMEM = { VP_Feedrate_Percentage, VP_Fan0_Percentage, 0x0000 };
 | 
			
		||||
const uint16_t VPList_SD_FlowRates[]         PROGMEM = { VP_Flowrate_E0, VP_Flowrate_E1, 0x0000 };
 | 
			
		||||
const uint16_t VPList_SDFileList[]           PROGMEM = { VP_SD_FileName0, VP_SD_FileName1, VP_SD_FileName2, VP_SD_FileName3, VP_SD_FileName4, 0x0000 };
 | 
			
		||||
const uint16_t VPList_SD_PrintManipulation[] PROGMEM = { VP_PrintProgress_Percentage, VP_PrintTime, 0x0000 };
 | 
			
		||||
 | 
			
		||||
const struct VPMapping VPMap[] PROGMEM = {
 | 
			
		||||
  { DGUSLCD_SCREEN_BOOT, VPList_Boot },
 | 
			
		||||
  { DGUSLCD_SCREEN_MAIN, VPList_Main },
 | 
			
		||||
  { DGUSLCD_SCREEN_TEMPERATURE, VPList_Temp },
 | 
			
		||||
  { DGUSLCD_SCREEN_STATUS, VPList_Status },
 | 
			
		||||
  { DGUSLCD_SCREEN_STATUS2, VPList_Status2 },
 | 
			
		||||
  { DGUSLCD_SCREEN_MANUALMOVE, VPList_ManualMove },
 | 
			
		||||
  { DGUSLCD_SCREEN_MANUALEXTRUDE, VPList_ManualExtrude },
 | 
			
		||||
  { DGUSLCD_SCREEN_FANANDFEEDRATE, VPList_FanAndFeedrate },
 | 
			
		||||
  { DGUSLCD_SCREEN_FLOWRATES, VPList_SD_FlowRates },
 | 
			
		||||
  { DGUSLCD_SCREEN_BOOT,                VPList_Boot                 },
 | 
			
		||||
  { DGUSLCD_SCREEN_MAIN,                VPList_Main                 },
 | 
			
		||||
  { DGUSLCD_SCREEN_TEMPERATURE,         VPList_Temp                 },
 | 
			
		||||
  { DGUSLCD_SCREEN_STATUS,              VPList_Status               },
 | 
			
		||||
  { DGUSLCD_SCREEN_STATUS2,             VPList_Status2              },
 | 
			
		||||
  { DGUSLCD_SCREEN_MANUALMOVE,          VPList_ManualMove           },
 | 
			
		||||
  { DGUSLCD_SCREEN_MANUALEXTRUDE,       VPList_ManualExtrude        },
 | 
			
		||||
  { DGUSLCD_SCREEN_FANANDFEEDRATE,      VPList_FanAndFeedrate       },
 | 
			
		||||
  { DGUSLCD_SCREEN_FLOWRATES,           VPList_SD_FlowRates         },
 | 
			
		||||
  { DGUSLCD_SCREEN_SDPRINTMANIPULATION, VPList_SD_PrintManipulation },
 | 
			
		||||
  { DGUSLCD_SCREEN_SDFILELIST, VPList_SDFileList },
 | 
			
		||||
  { DGUSLCD_SCREEN_SDFILELIST,          VPList_SDFileList           },
 | 
			
		||||
  { 0 , nullptr } // List is terminated with an nullptr as table entry.
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
const char MarlinVersion[] PROGMEM = SHORT_BUILD_VERSION;
 | 
			
		||||
 | 
			
		||||
// Helper to define a DGUS_VP_Variable for common use cases.
 | 
			
		||||
#define VPHELPER(VPADR, VPADRVAR, RXFPTR, TXFPTR ) { .VP=VPADR, .memadr=VPADRVAR, .size=sizeof(VPADRVAR), \
 | 
			
		||||
  .set_by_display_handler = RXFPTR, .send_to_display_handler = TXFPTR }
 | 
			
		||||
 | 
			
		||||
// Helper to define a DGUS_VP_Variable when the sizeo of the var cannot be determined automaticalyl (eg. a string)
 | 
			
		||||
#define VPHELPER_STR(VPADR, VPADRVAR, STRLEN, RXFPTR, TXFPTR ) { .VP=VPADR, .memadr=VPADRVAR, .size=STRLEN, \
 | 
			
		||||
  .set_by_display_handler = RXFPTR, .send_to_display_handler = TXFPTR }
 | 
			
		||||
 | 
			
		||||
const struct DGUS_VP_Variable ListOfVP[] PROGMEM = {
 | 
			
		||||
  // Helper to detect touch events
 | 
			
		||||
  VPHELPER(VP_SCREENCHANGE, nullptr, ScreenHandler.ScreenChangeHook, nullptr),
 | 
			
		||||
@@ -165,72 +133,71 @@ const struct DGUS_VP_Variable ListOfVP[] PROGMEM = {
 | 
			
		||||
  #endif
 | 
			
		||||
  VPHELPER(VP_CONFIRMED, nullptr, ScreenHandler.ScreenConfirmedOK, nullptr),
 | 
			
		||||
 | 
			
		||||
  VPHELPER(VP_TEMP_ALL_OFF, nullptr, &ScreenHandler.HandleAllHeatersOff, nullptr),
 | 
			
		||||
  VPHELPER(VP_TEMP_ALL_OFF, nullptr, ScreenHandler.HandleAllHeatersOff, nullptr),
 | 
			
		||||
 | 
			
		||||
  #if ENABLED(DGUS_UI_MOVE_DIS_OPTION)
 | 
			
		||||
    VPHELPER(VP_MOVE_OPTION, &distanceToMove, &ScreenHandler.HandleManualMoveOption, nullptr),
 | 
			
		||||
    VPHELPER(VP_MOVE_OPTION, &distanceToMove, ScreenHandler.HandleManualMoveOption, nullptr),
 | 
			
		||||
  #endif
 | 
			
		||||
  #if ENABLED(DGUS_UI_MOVE_DIS_OPTION)
 | 
			
		||||
    VPHELPER(VP_MOVE_X, &distanceToMove, &ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
    VPHELPER(VP_MOVE_Y, &distanceToMove, &ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
    VPHELPER(VP_MOVE_Z, &distanceToMove, &ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
    VPHELPER(VP_HOME_ALL, &distanceToMove, &ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
    VPHELPER(VP_MOVE_X, &distanceToMove, ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
    VPHELPER(VP_MOVE_Y, &distanceToMove, ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
    VPHELPER(VP_MOVE_Z, &distanceToMove, ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
    VPHELPER(VP_HOME_ALL, &distanceToMove, ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
  #else
 | 
			
		||||
    VPHELPER(VP_MOVE_X, nullptr, &ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
    VPHELPER(VP_MOVE_Y, nullptr, &ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
    VPHELPER(VP_MOVE_Z, nullptr, &ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
    VPHELPER(VP_HOME_ALL, nullptr, &ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
    VPHELPER(VP_MOVE_X, nullptr, ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
    VPHELPER(VP_MOVE_Y, nullptr, ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
    VPHELPER(VP_MOVE_Z, nullptr, ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
    VPHELPER(VP_HOME_ALL, nullptr, ScreenHandler.HandleManualMove, nullptr),
 | 
			
		||||
  #endif
 | 
			
		||||
 | 
			
		||||
  VPHELPER(VP_MOTOR_LOCK_UNLOK, nullptr, &ScreenHandler.HandleMotorLockUnlock, nullptr),
 | 
			
		||||
  VPHELPER(VP_MOTOR_LOCK_UNLOK, nullptr, ScreenHandler.HandleMotorLockUnlock, nullptr),
 | 
			
		||||
  #if ENABLED(POWER_LOSS_RECOVERY)
 | 
			
		||||
    VPHELPER(VP_POWER_LOSS_RECOVERY, nullptr, &ScreenHandler.HandlePowerLossRecovery, nullptr),
 | 
			
		||||
    VPHELPER(VP_POWER_LOSS_RECOVERY, nullptr, ScreenHandler.HandlePowerLossRecovery, nullptr),
 | 
			
		||||
  #endif
 | 
			
		||||
  VPHELPER(VP_SETTINGS, nullptr, &ScreenHandler.HandleSettings, nullptr),
 | 
			
		||||
  VPHELPER(VP_SETTINGS, nullptr, ScreenHandler.HandleSettings, nullptr),
 | 
			
		||||
 | 
			
		||||
  { .VP = VP_MARLIN_VERSION, .memadr = (void*)MarlinVersion, .size = VP_MARLIN_VERSION_LEN, .set_by_display_handler = nullptr, .send_to_display_handler =&ScreenHandler.DGUSLCD_SendStringToDisplayPGM },
 | 
			
		||||
  { .VP = VP_MARLIN_VERSION, .memadr = (void*)MarlinVersion, .size = VP_MARLIN_VERSION_LEN, .set_by_display_handler = nullptr, .send_to_display_handler = ScreenHandler.DGUSLCD_SendStringToDisplayPGM },
 | 
			
		||||
  // M117 LCD String (We don't need the string in memory but "just" push it to the display on demand, hence the nullptr
 | 
			
		||||
  { .VP = VP_M117, .memadr = nullptr, .size = VP_M117_LEN, .set_by_display_handler = nullptr, .send_to_display_handler =&ScreenHandler.DGUSLCD_SendStringToDisplay },
 | 
			
		||||
  { .VP = VP_M117, .memadr = nullptr, .size = VP_M117_LEN, .set_by_display_handler = nullptr, .send_to_display_handler = ScreenHandler.DGUSLCD_SendStringToDisplay },
 | 
			
		||||
 | 
			
		||||
  // Temperature Data
 | 
			
		||||
  #if HOTENDS >= 1
 | 
			
		||||
  #if HAS_HOTEND
 | 
			
		||||
    VPHELPER(VP_T_E0_Is, nullptr, nullptr, SET_VARIABLE(getActualTemp_celsius, E0, long)),
 | 
			
		||||
    VPHELPER(VP_T_E0_Set, nullptr, GET_VARIABLE(setTargetTemp_celsius, E0),
 | 
			
		||||
                                   SET_VARIABLE(getTargetTemp_celsius, E0)),
 | 
			
		||||
    VPHELPER(VP_Flowrate_E0, nullptr, ScreenHandler.HandleFlowRateChanged, &ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
    VPHELPER(VP_T_E0_Set, nullptr, GET_VARIABLE(setTargetTemp_celsius, E0), SET_VARIABLE(getTargetTemp_celsius, E0)),
 | 
			
		||||
    VPHELPER(VP_Flowrate_E0, nullptr, ScreenHandler.HandleFlowRateChanged, ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
    VPHELPER(VP_EPos, &destination.e, nullptr, ScreenHandler.DGUSLCD_SendFloatAsLongValueToDisplay<2>),
 | 
			
		||||
    VPHELPER(VP_MOVE_E0, nullptr, &ScreenHandler.HandleManualExtrude, nullptr),
 | 
			
		||||
    VPHELPER(VP_E0_CONTROL, &thermalManager.temp_hotend[0].target, &ScreenHandler.HandleHeaterControl, nullptr),
 | 
			
		||||
    VPHELPER(VP_E0_STATUS, &thermalManager.temp_hotend[0].target, nullptr, &ScreenHandler.DGUSLCD_SendHeaterStatusToDisplay),
 | 
			
		||||
    VPHELPER(VP_MOVE_E0, nullptr, ScreenHandler.HandleManualExtrude, nullptr),
 | 
			
		||||
    VPHELPER(VP_E0_CONTROL, &thermalManager.temp_hotend[0].target, ScreenHandler.HandleHeaterControl, nullptr),
 | 
			
		||||
    VPHELPER(VP_E0_STATUS, &thermalManager.temp_hotend[0].target, nullptr, ScreenHandler.DGUSLCD_SendHeaterStatusToDisplay),
 | 
			
		||||
    #if ENABLED(DGUS_PREHEAT_UI)
 | 
			
		||||
      VPHELPER(VP_E0_BED_PREHEAT, nullptr, &ScreenHandler.HandlePreheat, nullptr),
 | 
			
		||||
      VPHELPER(VP_E0_BED_PREHEAT, nullptr, ScreenHandler.HandlePreheat, nullptr),
 | 
			
		||||
    #endif
 | 
			
		||||
    #if ENABLED(PIDTEMP)
 | 
			
		||||
      VPHELPER(VP_E0_PID_P, &thermalManager.temp_hotend[0].pid.Kp, ScreenHandler.HandleTemperaturePIDChanged, ScreenHandler.DGUSLCD_SendTemperaturePID),
 | 
			
		||||
      VPHELPER(VP_E0_PID_I, &thermalManager.temp_hotend[0].pid.Ki, ScreenHandler.HandleTemperaturePIDChanged, ScreenHandler.DGUSLCD_SendTemperaturePID),
 | 
			
		||||
      VPHELPER(VP_E0_PID_D, &thermalManager.temp_hotend[0].pid.Kd, ScreenHandler.HandleTemperaturePIDChanged, ScreenHandler.DGUSLCD_SendTemperaturePID),
 | 
			
		||||
      VPHELPER(VP_PID_AUTOTUNE_E0, nullptr, &ScreenHandler.HandlePIDAutotune, nullptr),
 | 
			
		||||
      VPHELPER(VP_PID_AUTOTUNE_E0, nullptr, ScreenHandler.HandlePIDAutotune, nullptr),
 | 
			
		||||
    #endif
 | 
			
		||||
    #if ENABLED(DGUS_FILAMENT_LOADUNLOAD)
 | 
			
		||||
      VPHELPER(VP_E0_FILAMENT_LOAD_UNLOAD, nullptr, &ScreenHandler.HandleFilamentOption, &ScreenHandler.HandleFilamentLoadUnload),
 | 
			
		||||
      VPHELPER(VP_E0_FILAMENT_LOAD_UNLOAD, nullptr, ScreenHandler.HandleFilamentOption, ScreenHandler.HandleFilamentLoadUnload),
 | 
			
		||||
    #endif
 | 
			
		||||
  #endif
 | 
			
		||||
  #if HOTENDS >= 2
 | 
			
		||||
    VPHELPER(VP_T_E1_Is, &thermalManager.temp_hotend[1].celsius, nullptr, DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
    VPHELPER(VP_T_E1_Set, &thermalManager.temp_hotend[1].target, ScreenHandler.HandleTemperatureChanged, &ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
    VPHELPER(VP_Flowrate_E1, nullptr, ScreenHandler.HandleFlowRateChanged, &ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
    VPHELPER(VP_MOVE_E1, nullptr, &ScreenHandler.HandleManualExtrude, nullptr),
 | 
			
		||||
    VPHELPER(VP_E1_CONTROL, &thermalManager.temp_hotend[1].target, &ScreenHandler.HandleHeaterControl, nullptr),
 | 
			
		||||
    VPHELPER(VP_E1_STATUS, &thermalManager.temp_hotend[1].target, nullptr, &ScreenHandler.DGUSLCD_SendHeaterStatusToDisplay),
 | 
			
		||||
    VPHELPER(VP_T_E1_Is, &thermalManager.temp_hotend[1].celsius, nullptr, ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
    VPHELPER(VP_T_E1_Set, &thermalManager.temp_hotend[1].target, ScreenHandler.HandleTemperatureChanged, ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
    VPHELPER(VP_Flowrate_E1, nullptr, ScreenHandler.HandleFlowRateChanged, ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
    VPHELPER(VP_MOVE_E1, nullptr, ScreenHandler.HandleManualExtrude, nullptr),
 | 
			
		||||
    VPHELPER(VP_E1_CONTROL, &thermalManager.temp_hotend[1].target, ScreenHandler.HandleHeaterControl, nullptr),
 | 
			
		||||
    VPHELPER(VP_E1_STATUS, &thermalManager.temp_hotend[1].target, nullptr, ScreenHandler.DGUSLCD_SendHeaterStatusToDisplay),
 | 
			
		||||
    #if ENABLED(PIDTEMP)
 | 
			
		||||
      VPHELPER(VP_PID_AUTOTUNE_E1, nullptr, &ScreenHandler.HandlePIDAutotune, nullptr),
 | 
			
		||||
      VPHELPER(VP_PID_AUTOTUNE_E1, nullptr, ScreenHandler.HandlePIDAutotune, nullptr),
 | 
			
		||||
    #endif
 | 
			
		||||
  #endif
 | 
			
		||||
  #if HAS_HEATED_BED
 | 
			
		||||
    VPHELPER(VP_T_Bed_Is, &thermalManager.temp_bed.celsius, nullptr, ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
    VPHELPER(VP_T_Bed_Set, &thermalManager.temp_bed.target, ScreenHandler.HandleTemperatureChanged, &ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
    VPHELPER(VP_BED_CONTROL, &thermalManager.temp_bed.target, &ScreenHandler.HandleHeaterControl, nullptr),
 | 
			
		||||
    VPHELPER(VP_BED_STATUS, &thermalManager.temp_bed.target, nullptr, &ScreenHandler.DGUSLCD_SendHeaterStatusToDisplay),
 | 
			
		||||
    VPHELPER(VP_T_Bed_Set, &thermalManager.temp_bed.target, ScreenHandler.HandleTemperatureChanged, ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
    VPHELPER(VP_BED_CONTROL, &thermalManager.temp_bed.target, ScreenHandler.HandleHeaterControl, nullptr),
 | 
			
		||||
    VPHELPER(VP_BED_STATUS, &thermalManager.temp_bed.target, nullptr, ScreenHandler.DGUSLCD_SendHeaterStatusToDisplay),
 | 
			
		||||
    #if ENABLED(PIDTEMPBED)
 | 
			
		||||
      VPHELPER(VP_BED_PID_P, &thermalManager.temp_bed.pid.Kp, ScreenHandler.HandleTemperaturePIDChanged, ScreenHandler.DGUSLCD_SendTemperaturePID),
 | 
			
		||||
      VPHELPER(VP_BED_PID_I, &thermalManager.temp_bed.pid.Ki, ScreenHandler.HandleTemperaturePIDChanged, ScreenHandler.DGUSLCD_SendTemperaturePID),
 | 
			
		||||
@@ -241,14 +208,14 @@ const struct DGUS_VP_Variable ListOfVP[] PROGMEM = {
 | 
			
		||||
  // Fan Data
 | 
			
		||||
  #if HAS_FAN
 | 
			
		||||
    #define FAN_VPHELPER(N) \
 | 
			
		||||
      VPHELPER(VP_Fan##N##_Percentage, &thermalManager.fan_speed[N], ScreenHandler.DGUSLCD_PercentageToUint8, &ScreenHandler.DGUSLCD_SendPercentageToDisplay), \
 | 
			
		||||
      VPHELPER(VP_FAN##N##_CONTROL, &thermalManager.fan_speed[N], &ScreenHandler.HandleFanControl, nullptr), \
 | 
			
		||||
      VPHELPER(VP_FAN##N##_STATUS, &thermalManager.fan_speed[N], nullptr, &ScreenHandler.DGUSLCD_SendFanStatusToDisplay),
 | 
			
		||||
      VPHELPER(VP_Fan##N##_Percentage, &thermalManager.fan_speed[N], ScreenHandler.DGUSLCD_PercentageToUint8, ScreenHandler.DGUSLCD_SendPercentageToDisplay), \
 | 
			
		||||
      VPHELPER(VP_FAN##N##_CONTROL, &thermalManager.fan_speed[N], ScreenHandler.HandleFanControl, nullptr), \
 | 
			
		||||
      VPHELPER(VP_FAN##N##_STATUS, &thermalManager.fan_speed[N], nullptr, ScreenHandler.DGUSLCD_SendFanStatusToDisplay),
 | 
			
		||||
    REPEAT(FAN_COUNT, FAN_VPHELPER)
 | 
			
		||||
  #endif
 | 
			
		||||
 | 
			
		||||
  // Feedrate
 | 
			
		||||
  VPHELPER(VP_Feedrate_Percentage, &feedrate_percentage, ScreenHandler.DGUSLCD_SetValueDirectly<int16_t>, &ScreenHandler.DGUSLCD_SendWordValueToDisplay ),
 | 
			
		||||
  VPHELPER(VP_Feedrate_Percentage, &feedrate_percentage, ScreenHandler.DGUSLCD_SetValueDirectly<int16_t>, ScreenHandler.DGUSLCD_SendWordValueToDisplay),
 | 
			
		||||
 | 
			
		||||
  // Position Data
 | 
			
		||||
  VPHELPER(VP_XPos, ¤t_position.x, nullptr, ScreenHandler.DGUSLCD_SendFloatAsLongValueToDisplay<2>),
 | 
			
		||||
@@ -256,23 +223,23 @@ const struct DGUS_VP_Variable ListOfVP[] PROGMEM = {
 | 
			
		||||
  VPHELPER(VP_ZPos, ¤t_position.z, nullptr, ScreenHandler.DGUSLCD_SendFloatAsLongValueToDisplay<2>),
 | 
			
		||||
 | 
			
		||||
  // Print Progress
 | 
			
		||||
  VPHELPER(VP_PrintProgress_Percentage, nullptr, nullptr, ScreenHandler.DGUSLCD_SendPrintProgressToDisplay ),
 | 
			
		||||
  VPHELPER(VP_PrintProgress_Percentage, nullptr, nullptr, ScreenHandler.DGUSLCD_SendPrintProgressToDisplay),
 | 
			
		||||
 | 
			
		||||
  // Print Time
 | 
			
		||||
  VPHELPER_STR(VP_PrintTime, nullptr, VP_PrintTime_LEN, nullptr, ScreenHandler.DGUSLCD_SendPrintTimeToDisplay ),
 | 
			
		||||
  VPHELPER_STR(VP_PrintTime, nullptr, VP_PrintTime_LEN, nullptr, ScreenHandler.DGUSLCD_SendPrintTimeToDisplay),
 | 
			
		||||
  #if ENABLED(PRINTCOUNTER)
 | 
			
		||||
    VPHELPER_STR(VP_PrintAccTime, nullptr, VP_PrintAccTime_LEN, nullptr, ScreenHandler.DGUSLCD_SendPrintAccTimeToDisplay ),
 | 
			
		||||
    VPHELPER_STR(VP_PrintsTotal, nullptr, VP_PrintsTotal_LEN, nullptr, ScreenHandler.DGUSLCD_SendPrintsTotalToDisplay ),
 | 
			
		||||
    VPHELPER_STR(VP_PrintAccTime, nullptr, VP_PrintAccTime_LEN, nullptr, ScreenHandler.DGUSLCD_SendPrintAccTimeToDisplay),
 | 
			
		||||
    VPHELPER_STR(VP_PrintsTotal, nullptr, VP_PrintsTotal_LEN, nullptr, ScreenHandler.DGUSLCD_SendPrintsTotalToDisplay),
 | 
			
		||||
  #endif
 | 
			
		||||
 | 
			
		||||
  VPHELPER(VP_X_STEP_PER_MM, &planner.settings.axis_steps_per_mm[X_AXIS], ScreenHandler.HandleStepPerMMChanged, ScreenHandler.DGUSLCD_SendFloatAsIntValueToDisplay<1>),
 | 
			
		||||
  VPHELPER(VP_Y_STEP_PER_MM, &planner.settings.axis_steps_per_mm[Y_AXIS], ScreenHandler.HandleStepPerMMChanged, ScreenHandler.DGUSLCD_SendFloatAsIntValueToDisplay<1>),
 | 
			
		||||
  VPHELPER(VP_Z_STEP_PER_MM, &planner.settings.axis_steps_per_mm[Z_AXIS], ScreenHandler.HandleStepPerMMChanged, ScreenHandler.DGUSLCD_SendFloatAsIntValueToDisplay<1>),
 | 
			
		||||
  #if HOTENDS >= 1
 | 
			
		||||
  #if HAS_HOTEND
 | 
			
		||||
    VPHELPER(VP_E0_STEP_PER_MM, &planner.settings.axis_steps_per_mm[E_AXIS_N(0)], ScreenHandler.HandleStepPerMMExtruderChanged, ScreenHandler.DGUSLCD_SendFloatAsIntValueToDisplay<1>),
 | 
			
		||||
  #endif
 | 
			
		||||
  #if HOTENDS >= 2
 | 
			
		||||
    VPHELPER(VP_E1_STEP_PER_MM, &planner.settings.axis_steps_per_mm[E_AXIS_N(1)], ScreenHandler.HandleStepPerMMExtruderChanged, ScreenHandler.DGUSLCD_SendFloatAsIntValueToDisplay<1>),
 | 
			
		||||
    #if HOTENDS >= 2
 | 
			
		||||
      VPHELPER(VP_E1_STEP_PER_MM, &planner.settings.axis_steps_per_mm[E_AXIS_N(1)], ScreenHandler.HandleStepPerMMExtruderChanged, ScreenHandler.DGUSLCD_SendFloatAsIntValueToDisplay<1>),
 | 
			
		||||
    #endif
 | 
			
		||||
  #endif
 | 
			
		||||
 | 
			
		||||
  // SDCard File listing.
 | 
			
		||||
@@ -289,7 +256,7 @@ const struct DGUS_VP_Variable ListOfVP[] PROGMEM = {
 | 
			
		||||
    VPHELPER(VP_SD_AbortPrintConfirmed, nullptr, ScreenHandler.DGUSLCD_SD_ReallyAbort, nullptr),
 | 
			
		||||
    VPHELPER(VP_SD_Print_Setting, nullptr, ScreenHandler.DGUSLCD_SD_PrintTune, nullptr),
 | 
			
		||||
    #if HAS_BED_PROBE
 | 
			
		||||
      VPHELPER(VP_SD_Print_ProbeOffsetZ, &probe.offset.z, ScreenHandler.HandleProbeOffsetZChanged, &ScreenHandler.DGUSLCD_SendFloatAsIntValueToDisplay<2>),
 | 
			
		||||
      VPHELPER(VP_SD_Print_ProbeOffsetZ, &probe.offset.z, ScreenHandler.HandleProbeOffsetZChanged, ScreenHandler.DGUSLCD_SendFloatAsIntValueToDisplay<2>),
 | 
			
		||||
      #if ENABLED(BABYSTEPPING)
 | 
			
		||||
        VPHELPER(VP_SD_Print_LiveAdjustZ, nullptr, ScreenHandler.HandleLiveAdjustZ, nullptr),
 | 
			
		||||
      #endif
 | 
			
		||||
@@ -301,10 +268,10 @@ const struct DGUS_VP_Variable ListOfVP[] PROGMEM = {
 | 
			
		||||
  #endif
 | 
			
		||||
 | 
			
		||||
  // Messages for the User, shared by the popup and the kill screen. They cant be autouploaded as we do not buffer content.
 | 
			
		||||
  { .VP = VP_MSGSTR1, .memadr = nullptr, .size = VP_MSGSTR1_LEN, .set_by_display_handler = nullptr, .send_to_display_handler = &ScreenHandler.DGUSLCD_SendStringToDisplayPGM },
 | 
			
		||||
  { .VP = VP_MSGSTR2, .memadr = nullptr, .size = VP_MSGSTR2_LEN, .set_by_display_handler = nullptr, .send_to_display_handler = &ScreenHandler.DGUSLCD_SendStringToDisplayPGM },
 | 
			
		||||
  { .VP = VP_MSGSTR3, .memadr = nullptr, .size = VP_MSGSTR3_LEN, .set_by_display_handler = nullptr, .send_to_display_handler = &ScreenHandler.DGUSLCD_SendStringToDisplayPGM },
 | 
			
		||||
  { .VP = VP_MSGSTR4, .memadr = nullptr, .size = VP_MSGSTR4_LEN, .set_by_display_handler = nullptr, .send_to_display_handler = &ScreenHandler.DGUSLCD_SendStringToDisplayPGM },
 | 
			
		||||
  { .VP = VP_MSGSTR1, .memadr = nullptr, .size = VP_MSGSTR1_LEN, .set_by_display_handler = nullptr, .send_to_display_handler = ScreenHandler.DGUSLCD_SendStringToDisplayPGM },
 | 
			
		||||
  { .VP = VP_MSGSTR2, .memadr = nullptr, .size = VP_MSGSTR2_LEN, .set_by_display_handler = nullptr, .send_to_display_handler = ScreenHandler.DGUSLCD_SendStringToDisplayPGM },
 | 
			
		||||
  { .VP = VP_MSGSTR3, .memadr = nullptr, .size = VP_MSGSTR3_LEN, .set_by_display_handler = nullptr, .send_to_display_handler = ScreenHandler.DGUSLCD_SendStringToDisplayPGM },
 | 
			
		||||
  { .VP = VP_MSGSTR4, .memadr = nullptr, .size = VP_MSGSTR4_LEN, .set_by_display_handler = nullptr, .send_to_display_handler = ScreenHandler.DGUSLCD_SendStringToDisplayPGM },
 | 
			
		||||
 | 
			
		||||
  VPHELPER(0, 0, 0, 0)  // must be last entry.
 | 
			
		||||
};
 | 
			
		||||
 
 | 
			
		||||
@@ -251,7 +251,7 @@ void DGUSScreenHandler::HandleManualMove(DGUS_VP_Variable &var, void *val_ptr) {
 | 
			
		||||
 | 
			
		||||
    switch (var.VP) {
 | 
			
		||||
      default: return;
 | 
			
		||||
        #if HOTENDS >= 1
 | 
			
		||||
        #if HAS_HOTEND
 | 
			
		||||
          case VP_E0_PID_P: newvalue = value; break;
 | 
			
		||||
          case VP_E0_PID_I: newvalue = scalePID_i(value); break;
 | 
			
		||||
          case VP_E0_PID_D: newvalue = scalePID_d(value); break;
 | 
			
		||||
@@ -331,18 +331,18 @@ void DGUSScreenHandler::HandleManualMove(DGUS_VP_Variable &var, void *val_ptr) {
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    if (filament_data.action == 0) { // Go back to utility screen
 | 
			
		||||
      #if HOTENDS >= 1
 | 
			
		||||
      #if HAS_HOTEND
 | 
			
		||||
        thermalManager.setTargetHotend(e_temp, ExtUI::extruder_t::E0);
 | 
			
		||||
      #endif
 | 
			
		||||
      #if HOTENDS >= 2
 | 
			
		||||
        thermalManager.setTargetHotend(e_temp, ExtUI::extruder_t::E1);
 | 
			
		||||
        #if HOTENDS >= 2
 | 
			
		||||
          thermalManager.setTargetHotend(e_temp, ExtUI::extruder_t::E1);
 | 
			
		||||
        #endif
 | 
			
		||||
      #endif
 | 
			
		||||
      GotoScreen(DGUSLCD_SCREEN_UTILITY);
 | 
			
		||||
    }
 | 
			
		||||
    else { // Go to the preheat screen to show the heating progress
 | 
			
		||||
      switch (var.VP) {
 | 
			
		||||
        default: return;
 | 
			
		||||
          #if HOTENDS >= 1
 | 
			
		||||
          #if HAS_HOTEND
 | 
			
		||||
            case VP_E0_FILAMENT_LOAD_UNLOAD:
 | 
			
		||||
              filament_data.extruder = ExtUI::extruder_t::E0;
 | 
			
		||||
              thermalManager.setTargetHotend(e_temp, filament_data.extruder);
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user