|
@@ -1289,7 +1289,7 @@ void kill_screen(const char* lcd_msg) {
|
1289
|
1289
|
void lcd_preheat_m2_bedonly() { _lcd_preheat(0, 0, lcd_preheat_bed_temp[1], lcd_preheat_fan_speed[1]); }
|
1290
|
1290
|
#endif
|
1291
|
1291
|
|
1292
|
|
- #if TEMP_SENSOR_0 != 0 && (TEMP_SENSOR_1 != 0 || TEMP_SENSOR_2 != 0 || TEMP_SENSOR_3 != 0 || TEMP_SENSOR_BED != 0)
|
|
1292
|
+ #if TEMP_SENSOR_0 != 0 && (TEMP_SENSOR_1 != 0 || TEMP_SENSOR_2 != 0 || TEMP_SENSOR_3 != 0 || TEMP_SENSOR_4 != 0 || TEMP_SENSOR_BED != 0)
|
1293
|
1293
|
|
1294
|
1294
|
void lcd_preheat_m1_menu() {
|
1295
|
1295
|
START_MENU();
|
|
@@ -1395,7 +1395,7 @@ void kill_screen(const char* lcd_msg) {
|
1395
|
1395
|
END_MENU();
|
1396
|
1396
|
}
|
1397
|
1397
|
|
1398
|
|
- #endif // TEMP_SENSOR_0 && (TEMP_SENSOR_1 || TEMP_SENSOR_2 || TEMP_SENSOR_3 || TEMP_SENSOR_BED)
|
|
1398
|
+ #endif // TEMP_SENSOR_0 && (TEMP_SENSOR_1 || TEMP_SENSOR_2 || TEMP_SENSOR_3 || TEMP_SENSOR_4 || TEMP_SENSOR_BED)
|
1399
|
1399
|
|
1400
|
1400
|
void lcd_cooldown() {
|
1401
|
1401
|
#if FAN_COUNT > 0
|
|
@@ -2076,18 +2076,14 @@ void kill_screen(const char* lcd_msg) {
|
2076
|
2076
|
MENU_ITEM(gcode, MSG_DISABLE_STEPPERS, PSTR("M84"));
|
2077
|
2077
|
|
2078
|
2078
|
//
|
2079
|
|
- // Preheat PLA
|
2080
|
|
- // Preheat ABS
|
|
2079
|
+ // Change filament
|
2081
|
2080
|
//
|
2082
|
|
- #if TEMP_SENSOR_0 != 0
|
|
2081
|
+ #if ENABLED(FILAMENT_CHANGE_FEATURE)
|
|
2082
|
+ if (!thermalManager.tooColdToExtrude(active_extruder))
|
|
2083
|
+ MENU_ITEM(function, MSG_FILAMENTCHANGE, lcd_enqueue_filament_change);
|
|
2084
|
+ #endif
|
2083
|
2085
|
|
2084
|
|
- //
|
2085
|
|
- // Change filament
|
2086
|
|
- //
|
2087
|
|
- #if ENABLED(FILAMENT_CHANGE_FEATURE)
|
2088
|
|
- if (!thermalManager.tooColdToExtrude(active_extruder))
|
2089
|
|
- MENU_ITEM(function, MSG_FILAMENTCHANGE, lcd_enqueue_filament_change);
|
2090
|
|
- #endif
|
|
2086
|
+ #if TEMP_SENSOR_0 != 0
|
2091
|
2087
|
|
2092
|
2088
|
//
|
2093
|
2089
|
// Cooldown
|
|
@@ -2102,7 +2098,7 @@ void kill_screen(const char* lcd_msg) {
|
2102
|
2098
|
//
|
2103
|
2099
|
// Preheat for Material 1 and 2
|
2104
|
2100
|
//
|
2105
|
|
- #if TEMP_SENSOR_1 != 0 || TEMP_SENSOR_2 != 0 || TEMP_SENSOR_3 != 0 || TEMP_SENSOR_BED != 0
|
|
2101
|
+ #if TEMP_SENSOR_1 != 0 || TEMP_SENSOR_2 != 0 || TEMP_SENSOR_3 != 0 || TEMP_SENSOR_4 != 0 || TEMP_SENSOR_BED != 0
|
2106
|
2102
|
MENU_ITEM(submenu, MSG_PREHEAT_1, lcd_preheat_m1_menu);
|
2107
|
2103
|
MENU_ITEM(submenu, MSG_PREHEAT_2, lcd_preheat_m2_menu);
|
2108
|
2104
|
#else
|
|
@@ -2498,7 +2494,7 @@ void kill_screen(const char* lcd_msg) {
|
2498
|
2494
|
MENU_ITEM(function, MSG_STORE_EEPROM, lcd_store_settings);
|
2499
|
2495
|
MENU_ITEM(function, MSG_LOAD_EEPROM, lcd_load_settings);
|
2500
|
2496
|
MENU_ITEM(function, MSG_RESTORE_FAILSAFE, lcd_factory_settings);
|
2501
|
|
- MENU_ITEM(gcode, MSG_INIT_EEPROM, PSTR("M502\nM500\nM501"));
|
|
2497
|
+ MENU_ITEM(gcode, MSG_INIT_EEPROM, PSTR("M502\nM500")); // TODO: Add "Are You Sure?" step
|
2502
|
2498
|
#endif
|
2503
|
2499
|
END_MENU();
|
2504
|
2500
|
}
|
|
@@ -3146,6 +3142,15 @@ void kill_screen(const char* lcd_msg) {
|
3146
|
3142
|
STATIC_ITEM(MSG_INFO_MAX_TEMP ": " STRINGIFY(HEATER_3_MAXTEMP), false);
|
3147
|
3143
|
#endif
|
3148
|
3144
|
|
|
3145
|
+ #if TEMP_SENSOR_4 != 0
|
|
3146
|
+ #undef THERMISTOR_ID
|
|
3147
|
+ #define THERMISTOR_ID TEMP_SENSOR_4
|
|
3148
|
+ #include "thermistornames.h"
|
|
3149
|
+ STATIC_ITEM("T4: " THERMISTOR_NAME, false, true);
|
|
3150
|
+ STATIC_ITEM(MSG_INFO_MIN_TEMP ": " STRINGIFY(HEATER_4_MINTEMP), false);
|
|
3151
|
+ STATIC_ITEM(MSG_INFO_MAX_TEMP ": " STRINGIFY(HEATER_4_MAXTEMP), false);
|
|
3152
|
+ #endif
|
|
3153
|
+
|
3149
|
3154
|
#if TEMP_SENSOR_BED != 0
|
3150
|
3155
|
#undef THERMISTOR_ID
|
3151
|
3156
|
#define THERMISTOR_ID TEMP_SENSOR_BED
|