File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 1640
1640
#define PROBE_TARE_DELAY 200 // (ms) Delay after tare before
1641
1641
#define PROBE_TARE_STATE HIGH // State to write pin for tare
1642
1642
//#define PROBE_TARE_PIN PA5 // Override default pin
1643
+ //#define PROBE_TARE_MENU // Display a menu item to tare the probe
1643
1644
#if ENABLED (PROBE_ACTIVATION_SWITCH )
1644
1645
//#define PROBE_TARE_ONLY_WHILE_INACTIVE // Fail to tare/probe if PROBE_ACTIVATION_SWITCH is active
1645
1646
#endif
Original file line number Diff line number Diff line change 305
305
* THERMAL_PROTECTION_HYSTERESIS and/or THERMAL_PROTECTION_PERIOD
306
306
*/
307
307
#if ALL (HAS_HOTEND , THERMAL_PROTECTION_HOTENDS )
308
- #define THERMAL_PROTECTION_PERIOD 40 // (seconds)
309
- #define THERMAL_PROTECTION_HYSTERESIS 4 // (°C)
308
+ #define THERMAL_PROTECTION_PERIOD 40 // (seconds)
309
+ #define THERMAL_PROTECTION_HYSTERESIS 4 // (°C)
310
310
311
311
//#define ADAPTIVE_FAN_SLOWING // Slow down the part-cooling fan if the temperature drops
312
312
#if ENABLED (ADAPTIVE_FAN_SLOWING )
Original file line number Diff line number Diff line change @@ -296,6 +296,11 @@ void menu_bed_leveling() {
296
296
SUBMENU (MSG_PROBE_WIZARD, goto_probe_offset_wizard);
297
297
#endif
298
298
299
+ // Tare the probe on-demand
300
+ #if ENABLED(PROBE_TARE_MENU)
301
+ ACTION_ITEM (MSG_TARE_PROBE, probe.tare );
302
+ #endif
303
+
299
304
#if ENABLED(LCD_BED_TRAMMING)
300
305
SUBMENU (MSG_BED_TRAMMING, _lcd_bed_tramming);
301
306
#endif
You can’t perform that action at this time.
0 commit comments