Move singlenozzle temp/fan (#20829)
This commit is contained in:
@ -485,7 +485,7 @@ class MenuItem_bool : public MenuEditItemBase {
|
||||
#if SNFAN(1) || SNFAN(2) || SNFAN(3) || SNFAN(4) || SNFAN(5) || SNFAN(6) || SNFAN(7)
|
||||
#define DEFINE_SINGLENOZZLE_ITEM() \
|
||||
auto singlenozzle_item = [&](const uint8_t f) { \
|
||||
editable.uint8 = singlenozzle_fan_speed[f]; \
|
||||
editable.uint8 = thermalManager.singlenozzle_fan_speed[f]; \
|
||||
EDIT_ITEM_FAST_N(percent, f, MSG_STORED_FAN_N, &editable.uint8, 0, 255, on_fan_update); \
|
||||
}
|
||||
#else
|
||||
|
@ -159,7 +159,7 @@ void menu_temperature() {
|
||||
|
||||
#if ENABLED(SINGLENOZZLE_STANDBY_TEMP)
|
||||
LOOP_S_L_N(e, 1, EXTRUDERS)
|
||||
EDIT_ITEM_FAST_N(uint16_3, e, MSG_NOZZLE_STANDBY, &singlenozzle_temp[e], 0, thermalManager.heater_maxtemp[0] - (HOTEND_OVERSHOOT));
|
||||
EDIT_ITEM_FAST_N(uint16_3, e, MSG_NOZZLE_STANDBY, &thermalManager.singlenozzle_temp[e], 0, thermalManager.heater_maxtemp[0] - (HOTEND_OVERSHOOT));
|
||||
#endif
|
||||
|
||||
//
|
||||
|
@ -127,7 +127,7 @@ void menu_tune() {
|
||||
|
||||
#if ENABLED(SINGLENOZZLE_STANDBY_TEMP)
|
||||
LOOP_S_L_N(e, 1, EXTRUDERS)
|
||||
EDIT_ITEM_FAST_N(uint16_3, e, MSG_NOZZLE_STANDBY, &singlenozzle_temp[e], 0, thermalManager.heater_maxtemp[0] - HOTEND_OVERSHOOT);
|
||||
EDIT_ITEM_FAST_N(uint16_3, e, MSG_NOZZLE_STANDBY, &thermalManager.singlenozzle_temp[e], 0, thermalManager.heater_maxtemp[0] - HOTEND_OVERSHOOT);
|
||||
#endif
|
||||
|
||||
//
|
||||
|
Reference in New Issue
Block a user