mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-02-19 23:54:19 +00:00
[1.1.x] Wait for bed heaters between probing (#9890)
This commit is contained in:
parent
c6ecfc1429
commit
61f9e28c23
54 changed files with 186 additions and 3 deletions
|
@ -672,6 +672,9 @@
|
||||||
* readings with inductive probes and piezo sensors.
|
* readings with inductive probes and piezo sensors.
|
||||||
*/
|
*/
|
||||||
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
||||||
|
#if ENABLED(PROBING_HEATERS_OFF)
|
||||||
|
//#define WAIT_FOR_BED_HEATER // Wait for bed to heat back up between probes (to improve accuracy)
|
||||||
|
#endif
|
||||||
//#define PROBING_FANS_OFF // Turn fans off when probing
|
//#define PROBING_FANS_OFF // Turn fans off when probing
|
||||||
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
||||||
|
|
||||||
|
|
|
@ -571,6 +571,10 @@ uint8_t target_extruder;
|
||||||
#define ADJUST_DELTA(V) NOOP
|
#define ADJUST_DELTA(V) NOOP
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if HAS_TEMP_BED && ENABLED(WAIT_FOR_BED_HEATER)
|
||||||
|
const static char msg_wait_for_bed_heating[] PROGMEM = "Wait for bed heating...\n";
|
||||||
|
#endif
|
||||||
|
|
||||||
// Extruder offsets
|
// Extruder offsets
|
||||||
#if HOTENDS > 1
|
#if HOTENDS > 1
|
||||||
float hotend_offset[XYZ][HOTENDS]; // Initialized by settings.load()
|
float hotend_offset[XYZ][HOTENDS]; // Initialized by settings.load()
|
||||||
|
@ -586,13 +590,13 @@ uint8_t target_extruder;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if HAS_POWER_SWITCH
|
#if HAS_POWER_SWITCH
|
||||||
bool powersupply_on =
|
bool powersupply_on = (
|
||||||
#if ENABLED(PS_DEFAULT_OFF)
|
#if ENABLED(PS_DEFAULT_OFF)
|
||||||
false
|
false
|
||||||
#else
|
#else
|
||||||
true
|
true
|
||||||
#endif
|
#endif
|
||||||
;
|
);
|
||||||
#if ENABLED(AUTO_POWER_CONTROL)
|
#if ENABLED(AUTO_POWER_CONTROL)
|
||||||
#define PSU_ON() powerManager.power_on()
|
#define PSU_ON() powerManager.power_on()
|
||||||
#define PSU_OFF() powerManager.power_off()
|
#define PSU_OFF() powerManager.power_off()
|
||||||
|
@ -2186,6 +2190,16 @@ void clean_up_after_endstop_or_probe_move() {
|
||||||
if (DEBUGGING(LEVELING)) DEBUG_POS(">>> do_probe_move", current_position);
|
if (DEBUGGING(LEVELING)) DEBUG_POS(">>> do_probe_move", current_position);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if HAS_TEMP_BED && ENABLED(WAIT_FOR_BED_HEATER)
|
||||||
|
// Wait for bed to heat back up between probing points
|
||||||
|
if (thermalManager.isHeatingBed()) {
|
||||||
|
serialprintPGM(msg_wait_for_bed_heating);
|
||||||
|
LCD_MESSAGEPGM(MSG_BED_HEATING);
|
||||||
|
while (thermalManager.isHeatingBed()) safe_delay(200);
|
||||||
|
lcd_reset_status();
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
// Deploy BLTouch at the start of any probe
|
// Deploy BLTouch at the start of any probe
|
||||||
#if ENABLED(BLTOUCH)
|
#if ENABLED(BLTOUCH)
|
||||||
if (set_bltouch_deployed(true)) return true;
|
if (set_bltouch_deployed(true)) return true;
|
||||||
|
@ -2899,6 +2913,16 @@ static void do_homing_move(const AxisEnum axis, const float distance, const floa
|
||||||
SERIAL_EOL();
|
SERIAL_EOL();
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if HOMING_Z_WITH_PROBE && HAS_TEMP_BED && ENABLED(WAIT_FOR_BED_HEATER)
|
||||||
|
// Wait for bed to heat back up between probing points
|
||||||
|
if (axis == Z_AXIS && distance < 0 && thermalManager.isHeatingBed()) {
|
||||||
|
serialprintPGM(msg_wait_for_bed_heating);
|
||||||
|
LCD_MESSAGEPGM(MSG_BED_HEATING);
|
||||||
|
while (thermalManager.isHeatingBed()) safe_delay(200);
|
||||||
|
lcd_reset_status();
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
// Only do some things when moving towards an endstop
|
// Only do some things when moving towards an endstop
|
||||||
const int8_t axis_home_dir =
|
const int8_t axis_home_dir =
|
||||||
|
|
|
@ -692,6 +692,9 @@
|
||||||
* readings with inductive probes and piezo sensors.
|
* readings with inductive probes and piezo sensors.
|
||||||
*/
|
*/
|
||||||
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
||||||
|
#if ENABLED(PROBING_HEATERS_OFF)
|
||||||
|
//#define WAIT_FOR_BED_HEATER // Wait for bed to heat back up between probes (to improve accuracy)
|
||||||
|
#endif
|
||||||
//#define PROBING_FANS_OFF // Turn fans off when probing
|
//#define PROBING_FANS_OFF // Turn fans off when probing
|
||||||
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
||||||
|
|
||||||
|
|
|
@ -672,6 +672,9 @@
|
||||||
* readings with inductive probes and piezo sensors.
|
* readings with inductive probes and piezo sensors.
|
||||||
*/
|
*/
|
||||||
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
||||||
|
#if ENABLED(PROBING_HEATERS_OFF)
|
||||||
|
//#define WAIT_FOR_BED_HEATER // Wait for bed to heat back up between probes (to improve accuracy)
|
||||||
|
#endif
|
||||||
//#define PROBING_FANS_OFF // Turn fans off when probing
|
//#define PROBING_FANS_OFF // Turn fans off when probing
|
||||||
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
||||||
|
|
||||||
|
|
|
@ -720,6 +720,9 @@
|
||||||
* readings with inductive probes and piezo sensors.
|
* readings with inductive probes and piezo sensors.
|
||||||
*/
|
*/
|
||||||
#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
||||||
|
#if ENABLED(PROBING_HEATERS_OFF)
|
||||||
|
//#define WAIT_FOR_BED_HEATER // Wait for bed to heat back up between probes (to improve accuracy)
|
||||||
|
#endif
|
||||||
#define PROBING_FANS_OFF // Turn fans off when probing
|
#define PROBING_FANS_OFF // Turn fans off when probing
|
||||||
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
||||||
|
|
||||||
|
|
|
@ -679,6 +679,9 @@
|
||||||
* readings with inductive probes and piezo sensors.
|
* readings with inductive probes and piezo sensors.
|
||||||
*/
|
*/
|
||||||
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
||||||
|
#if ENABLED(PROBING_HEATERS_OFF)
|
||||||
|
//#define WAIT_FOR_BED_HEATER // Wait for bed to heat back up between probes (to improve accuracy)
|
||||||
|
#endif
|
||||||
//#define PROBING_FANS_OFF // Turn fans off when probing
|
//#define PROBING_FANS_OFF // Turn fans off when probing
|
||||||
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
||||||
|
|
||||||
|
|
|
@ -672,6 +672,9 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = true; // set to true to invert the lo
|
||||||
* readings with inductive probes and piezo sensors.
|
* readings with inductive probes and piezo sensors.
|
||||||
*/
|
*/
|
||||||
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
||||||
|
#if ENABLED(PROBING_HEATERS_OFF)
|
||||||
|
//#define WAIT_FOR_BED_HEATER // Wait for bed to heat back up between probes (to improve accuracy)
|
||||||
|
#endif
|
||||||
//#define PROBING_FANS_OFF // Turn fans off when probing
|
//#define PROBING_FANS_OFF // Turn fans off when probing
|
||||||
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
||||||
|
|
||||||
|
|
|
@ -672,6 +672,9 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = true; // set to true to invert the lo
|
||||||
* readings with inductive probes and piezo sensors.
|
* readings with inductive probes and piezo sensors.
|
||||||
*/
|
*/
|
||||||
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
||||||
|
#if ENABLED(PROBING_HEATERS_OFF)
|
||||||
|
//#define WAIT_FOR_BED_HEATER // Wait for bed to heat back up between probes (to improve accuracy)
|
||||||
|
#endif
|
||||||
//#define PROBING_FANS_OFF // Turn fans off when probing
|
//#define PROBING_FANS_OFF // Turn fans off when probing
|
||||||
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
||||||
|
|
||||||
|
|
|
@ -660,6 +660,9 @@
|
||||||
* readings with inductive probes and piezo sensors.
|
* readings with inductive probes and piezo sensors.
|
||||||
*/
|
*/
|
||||||
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
||||||
|
#if ENABLED(PROBING_HEATERS_OFF)
|
||||||
|
//#define WAIT_FOR_BED_HEATER // Wait for bed to heat back up between probes (to improve accuracy)
|
||||||
|
#endif
|
||||||
//#define PROBING_FANS_OFF // Turn fans off when probing
|
//#define PROBING_FANS_OFF // Turn fans off when probing
|
||||||
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
||||||
|
|
||||||
|
|
|
@ -673,6 +673,9 @@
|
||||||
* readings with inductive probes and piezo sensors.
|
* readings with inductive probes and piezo sensors.
|
||||||
*/
|
*/
|
||||||
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
||||||
|
#if ENABLED(PROBING_HEATERS_OFF)
|
||||||
|
//#define WAIT_FOR_BED_HEATER // Wait for bed to heat back up between probes (to improve accuracy)
|
||||||
|
#endif
|
||||||
//#define PROBING_FANS_OFF // Turn fans off when probing
|
//#define PROBING_FANS_OFF // Turn fans off when probing
|
||||||
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
||||||
|
|
||||||
|
|
|
@ -660,6 +660,9 @@
|
||||||
* readings with inductive probes and piezo sensors.
|
* readings with inductive probes and piezo sensors.
|
||||||
*/
|
*/
|
||||||
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
||||||
|
#if ENABLED(PROBING_HEATERS_OFF)
|
||||||
|
//#define WAIT_FOR_BED_HEATER // Wait for bed to heat back up between probes (to improve accuracy)
|
||||||
|
#endif
|
||||||
//#define PROBING_FANS_OFF // Turn fans off when probing
|
//#define PROBING_FANS_OFF // Turn fans off when probing
|
||||||
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
||||||
|
|
||||||
|
|
|
@ -671,6 +671,9 @@
|
||||||
* readings with inductive probes and piezo sensors.
|
* readings with inductive probes and piezo sensors.
|
||||||
*/
|
*/
|
||||||
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
||||||
|
#if ENABLED(PROBING_HEATERS_OFF)
|
||||||
|
//#define WAIT_FOR_BED_HEATER // Wait for bed to heat back up between probes (to improve accuracy)
|
||||||
|
#endif
|
||||||
//#define PROBING_FANS_OFF // Turn fans off when probing
|
//#define PROBING_FANS_OFF // Turn fans off when probing
|
||||||
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
||||||
|
|
||||||
|
|
|
@ -682,6 +682,9 @@
|
||||||
* readings with inductive probes and piezo sensors.
|
* readings with inductive probes and piezo sensors.
|
||||||
*/
|
*/
|
||||||
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
||||||
|
#if ENABLED(PROBING_HEATERS_OFF)
|
||||||
|
//#define WAIT_FOR_BED_HEATER // Wait for bed to heat back up between probes (to improve accuracy)
|
||||||
|
#endif
|
||||||
//#define PROBING_FANS_OFF // Turn fans off when probing
|
//#define PROBING_FANS_OFF // Turn fans off when probing
|
||||||
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
||||||
|
|
||||||
|
|
|
@ -672,6 +672,9 @@
|
||||||
* readings with inductive probes and piezo sensors.
|
* readings with inductive probes and piezo sensors.
|
||||||
*/
|
*/
|
||||||
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
||||||
|
#if ENABLED(PROBING_HEATERS_OFF)
|
||||||
|
//#define WAIT_FOR_BED_HEATER // Wait for bed to heat back up between probes (to improve accuracy)
|
||||||
|
#endif
|
||||||
//#define PROBING_FANS_OFF // Turn fans off when probing
|
//#define PROBING_FANS_OFF // Turn fans off when probing
|
||||||
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
||||||
|
|
||||||
|
|
|
@ -691,6 +691,9 @@
|
||||||
* readings with inductive probes and piezo sensors.
|
* readings with inductive probes and piezo sensors.
|
||||||
*/
|
*/
|
||||||
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
||||||
|
#if ENABLED(PROBING_HEATERS_OFF)
|
||||||
|
//#define WAIT_FOR_BED_HEATER // Wait for bed to heat back up between probes (to improve accuracy)
|
||||||
|
#endif
|
||||||
//#define PROBING_FANS_OFF // Turn fans off when probing
|
//#define PROBING_FANS_OFF // Turn fans off when probing
|
||||||
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
||||||
|
|
||||||
|
|
|
@ -676,6 +676,9 @@
|
||||||
* readings with inductive probes and piezo sensors.
|
* readings with inductive probes and piezo sensors.
|
||||||
*/
|
*/
|
||||||
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
||||||
|
#if ENABLED(PROBING_HEATERS_OFF)
|
||||||
|
//#define WAIT_FOR_BED_HEATER // Wait for bed to heat back up between probes (to improve accuracy)
|
||||||
|
#endif
|
||||||
//#define PROBING_FANS_OFF // Turn fans off when probing
|
//#define PROBING_FANS_OFF // Turn fans off when probing
|
||||||
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
||||||
|
|
||||||
|
|
|
@ -682,6 +682,9 @@
|
||||||
* readings with inductive probes and piezo sensors.
|
* readings with inductive probes and piezo sensors.
|
||||||
*/
|
*/
|
||||||
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
||||||
|
#if ENABLED(PROBING_HEATERS_OFF)
|
||||||
|
//#define WAIT_FOR_BED_HEATER // Wait for bed to heat back up between probes (to improve accuracy)
|
||||||
|
#endif
|
||||||
//#define PROBING_FANS_OFF // Turn fans off when probing
|
//#define PROBING_FANS_OFF // Turn fans off when probing
|
||||||
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
||||||
|
|
||||||
|
|
|
@ -654,6 +654,9 @@
|
||||||
* readings with inductive probes and piezo sensors.
|
* readings with inductive probes and piezo sensors.
|
||||||
*/
|
*/
|
||||||
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
||||||
|
#if ENABLED(PROBING_HEATERS_OFF)
|
||||||
|
//#define WAIT_FOR_BED_HEATER // Wait for bed to heat back up between probes (to improve accuracy)
|
||||||
|
#endif
|
||||||
//#define PROBING_FANS_OFF // Turn fans off when probing
|
//#define PROBING_FANS_OFF // Turn fans off when probing
|
||||||
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
||||||
|
|
||||||
|
|
|
@ -654,6 +654,9 @@
|
||||||
* readings with inductive probes and piezo sensors.
|
* readings with inductive probes and piezo sensors.
|
||||||
*/
|
*/
|
||||||
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
||||||
|
#if ENABLED(PROBING_HEATERS_OFF)
|
||||||
|
//#define WAIT_FOR_BED_HEATER // Wait for bed to heat back up between probes (to improve accuracy)
|
||||||
|
#endif
|
||||||
//#define PROBING_FANS_OFF // Turn fans off when probing
|
//#define PROBING_FANS_OFF // Turn fans off when probing
|
||||||
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
||||||
|
|
||||||
|
|
|
@ -678,6 +678,9 @@
|
||||||
* readings with inductive probes and piezo sensors.
|
* readings with inductive probes and piezo sensors.
|
||||||
*/
|
*/
|
||||||
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
||||||
|
#if ENABLED(PROBING_HEATERS_OFF)
|
||||||
|
//#define WAIT_FOR_BED_HEATER // Wait for bed to heat back up between probes (to improve accuracy)
|
||||||
|
#endif
|
||||||
//#define PROBING_FANS_OFF // Turn fans off when probing
|
//#define PROBING_FANS_OFF // Turn fans off when probing
|
||||||
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
||||||
|
|
||||||
|
|
|
@ -687,6 +687,9 @@
|
||||||
* readings with inductive probes and piezo sensors.
|
* readings with inductive probes and piezo sensors.
|
||||||
*/
|
*/
|
||||||
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
||||||
|
#if ENABLED(PROBING_HEATERS_OFF)
|
||||||
|
//#define WAIT_FOR_BED_HEATER // Wait for bed to heat back up between probes (to improve accuracy)
|
||||||
|
#endif
|
||||||
//#define PROBING_FANS_OFF // Turn fans off when probing
|
//#define PROBING_FANS_OFF // Turn fans off when probing
|
||||||
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
||||||
|
|
||||||
|
|
|
@ -672,6 +672,9 @@
|
||||||
* readings with inductive probes and piezo sensors.
|
* readings with inductive probes and piezo sensors.
|
||||||
*/
|
*/
|
||||||
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
||||||
|
#if ENABLED(PROBING_HEATERS_OFF)
|
||||||
|
//#define WAIT_FOR_BED_HEATER // Wait for bed to heat back up between probes (to improve accuracy)
|
||||||
|
#endif
|
||||||
//#define PROBING_FANS_OFF // Turn fans off when probing
|
//#define PROBING_FANS_OFF // Turn fans off when probing
|
||||||
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
||||||
|
|
||||||
|
|
|
@ -688,6 +688,9 @@
|
||||||
* readings with inductive probes and piezo sensors.
|
* readings with inductive probes and piezo sensors.
|
||||||
*/
|
*/
|
||||||
#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
||||||
|
#if ENABLED(PROBING_HEATERS_OFF)
|
||||||
|
//#define WAIT_FOR_BED_HEATER // Wait for bed to heat back up between probes (to improve accuracy)
|
||||||
|
#endif
|
||||||
#define PROBING_FANS_OFF // Turn fans off when probing
|
#define PROBING_FANS_OFF // Turn fans off when probing
|
||||||
#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
||||||
|
|
||||||
|
|
|
@ -686,7 +686,10 @@
|
||||||
* These options are most useful for the BLTouch probe, but may also improve
|
* These options are most useful for the BLTouch probe, but may also improve
|
||||||
* readings with inductive probes and piezo sensors.
|
* readings with inductive probes and piezo sensors.
|
||||||
*/
|
*/
|
||||||
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
||||||
|
#if ENABLED(PROBING_HEATERS_OFF)
|
||||||
|
//#define WAIT_FOR_BED_HEATER // Wait for bed to heat back up between probes (to improve accuracy)
|
||||||
|
#endif
|
||||||
//#define PROBING_FANS_OFF // Turn fans off when probing
|
//#define PROBING_FANS_OFF // Turn fans off when probing
|
||||||
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
||||||
|
|
||||||
|
|
|
@ -676,6 +676,9 @@
|
||||||
* readings with inductive probes and piezo sensors.
|
* readings with inductive probes and piezo sensors.
|
||||||
*/
|
*/
|
||||||
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
||||||
|
#if ENABLED(PROBING_HEATERS_OFF)
|
||||||
|
//#define WAIT_FOR_BED_HEATER // Wait for bed to heat back up between probes (to improve accuracy)
|
||||||
|
#endif
|
||||||
//#define PROBING_FANS_OFF // Turn fans off when probing
|
//#define PROBING_FANS_OFF // Turn fans off when probing
|
||||||
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
||||||
|
|
||||||
|
|
|
@ -684,6 +684,9 @@
|
||||||
* readings with inductive probes and piezo sensors.
|
* readings with inductive probes and piezo sensors.
|
||||||
*/
|
*/
|
||||||
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
||||||
|
#if ENABLED(PROBING_HEATERS_OFF)
|
||||||
|
//#define WAIT_FOR_BED_HEATER // Wait for bed to heat back up between probes (to improve accuracy)
|
||||||
|
#endif
|
||||||
//#define PROBING_FANS_OFF // Turn fans off when probing
|
//#define PROBING_FANS_OFF // Turn fans off when probing
|
||||||
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
||||||
|
|
||||||
|
|
|
@ -692,6 +692,9 @@
|
||||||
* readings with inductive probes and piezo sensors.
|
* readings with inductive probes and piezo sensors.
|
||||||
*/
|
*/
|
||||||
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
||||||
|
#if ENABLED(PROBING_HEATERS_OFF)
|
||||||
|
//#define WAIT_FOR_BED_HEATER // Wait for bed to heat back up between probes (to improve accuracy)
|
||||||
|
#endif
|
||||||
//#define PROBING_FANS_OFF // Turn fans off when probing
|
//#define PROBING_FANS_OFF // Turn fans off when probing
|
||||||
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
||||||
|
|
||||||
|
|
|
@ -676,6 +676,9 @@
|
||||||
* readings with inductive probes and piezo sensors.
|
* readings with inductive probes and piezo sensors.
|
||||||
*/
|
*/
|
||||||
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
||||||
|
#if ENABLED(PROBING_HEATERS_OFF)
|
||||||
|
//#define WAIT_FOR_BED_HEATER // Wait for bed to heat back up between probes (to improve accuracy)
|
||||||
|
#endif
|
||||||
//#define PROBING_FANS_OFF // Turn fans off when probing
|
//#define PROBING_FANS_OFF // Turn fans off when probing
|
||||||
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
||||||
|
|
||||||
|
|
|
@ -676,6 +676,9 @@
|
||||||
* readings with inductive probes and piezo sensors.
|
* readings with inductive probes and piezo sensors.
|
||||||
*/
|
*/
|
||||||
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
||||||
|
#if ENABLED(PROBING_HEATERS_OFF)
|
||||||
|
//#define WAIT_FOR_BED_HEATER // Wait for bed to heat back up between probes (to improve accuracy)
|
||||||
|
#endif
|
||||||
//#define PROBING_FANS_OFF // Turn fans off when probing
|
//#define PROBING_FANS_OFF // Turn fans off when probing
|
||||||
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
||||||
|
|
||||||
|
|
|
@ -672,6 +672,9 @@
|
||||||
* readings with inductive probes and piezo sensors.
|
* readings with inductive probes and piezo sensors.
|
||||||
*/
|
*/
|
||||||
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
||||||
|
#if ENABLED(PROBING_HEATERS_OFF)
|
||||||
|
//#define WAIT_FOR_BED_HEATER // Wait for bed to heat back up between probes (to improve accuracy)
|
||||||
|
#endif
|
||||||
//#define PROBING_FANS_OFF // Turn fans off when probing
|
//#define PROBING_FANS_OFF // Turn fans off when probing
|
||||||
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
||||||
|
|
||||||
|
|
|
@ -670,6 +670,9 @@
|
||||||
* readings with inductive probes and piezo sensors.
|
* readings with inductive probes and piezo sensors.
|
||||||
*/
|
*/
|
||||||
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
||||||
|
#if ENABLED(PROBING_HEATERS_OFF)
|
||||||
|
//#define WAIT_FOR_BED_HEATER // Wait for bed to heat back up between probes (to improve accuracy)
|
||||||
|
#endif
|
||||||
//#define PROBING_FANS_OFF // Turn fans off when probing
|
//#define PROBING_FANS_OFF // Turn fans off when probing
|
||||||
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
||||||
|
|
||||||
|
|
|
@ -684,6 +684,9 @@
|
||||||
* readings with inductive probes and piezo sensors.
|
* readings with inductive probes and piezo sensors.
|
||||||
*/
|
*/
|
||||||
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
||||||
|
#if ENABLED(PROBING_HEATERS_OFF)
|
||||||
|
//#define WAIT_FOR_BED_HEATER // Wait for bed to heat back up between probes (to improve accuracy)
|
||||||
|
#endif
|
||||||
//#define PROBING_FANS_OFF // Turn fans off when probing
|
//#define PROBING_FANS_OFF // Turn fans off when probing
|
||||||
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
||||||
|
|
||||||
|
|
|
@ -703,6 +703,9 @@
|
||||||
* readings with inductive probes and piezo sensors.
|
* readings with inductive probes and piezo sensors.
|
||||||
*/
|
*/
|
||||||
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
||||||
|
#if ENABLED(PROBING_HEATERS_OFF)
|
||||||
|
//#define WAIT_FOR_BED_HEATER // Wait for bed to heat back up between probes (to improve accuracy)
|
||||||
|
#endif
|
||||||
//#define PROBING_FANS_OFF // Turn fans off when probing
|
//#define PROBING_FANS_OFF // Turn fans off when probing
|
||||||
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
||||||
|
|
||||||
|
|
|
@ -723,6 +723,9 @@
|
||||||
* readings with inductive probes and piezo sensors.
|
* readings with inductive probes and piezo sensors.
|
||||||
*/
|
*/
|
||||||
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
||||||
|
#if ENABLED(PROBING_HEATERS_OFF)
|
||||||
|
//#define WAIT_FOR_BED_HEATER // Wait for bed to heat back up between probes (to improve accuracy)
|
||||||
|
#endif
|
||||||
//#define PROBING_FANS_OFF // Turn fans off when probing
|
//#define PROBING_FANS_OFF // Turn fans off when probing
|
||||||
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
||||||
|
|
||||||
|
|
|
@ -672,6 +672,9 @@
|
||||||
* readings with inductive probes and piezo sensors.
|
* readings with inductive probes and piezo sensors.
|
||||||
*/
|
*/
|
||||||
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
||||||
|
#if ENABLED(PROBING_HEATERS_OFF)
|
||||||
|
//#define WAIT_FOR_BED_HEATER // Wait for bed to heat back up between probes (to improve accuracy)
|
||||||
|
#endif
|
||||||
//#define PROBING_FANS_OFF // Turn fans off when probing
|
//#define PROBING_FANS_OFF // Turn fans off when probing
|
||||||
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
||||||
|
|
||||||
|
|
|
@ -672,6 +672,9 @@
|
||||||
* readings with inductive probes and piezo sensors.
|
* readings with inductive probes and piezo sensors.
|
||||||
*/
|
*/
|
||||||
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
||||||
|
#if ENABLED(PROBING_HEATERS_OFF)
|
||||||
|
//#define WAIT_FOR_BED_HEATER // Wait for bed to heat back up between probes (to improve accuracy)
|
||||||
|
#endif
|
||||||
//#define PROBING_FANS_OFF // Turn fans off when probing
|
//#define PROBING_FANS_OFF // Turn fans off when probing
|
||||||
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
||||||
|
|
||||||
|
|
|
@ -683,6 +683,9 @@
|
||||||
* readings with inductive probes and piezo sensors.
|
* readings with inductive probes and piezo sensors.
|
||||||
*/
|
*/
|
||||||
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
||||||
|
#if ENABLED(PROBING_HEATERS_OFF)
|
||||||
|
//#define WAIT_FOR_BED_HEATER // Wait for bed to heat back up between probes (to improve accuracy)
|
||||||
|
#endif
|
||||||
//#define PROBING_FANS_OFF // Turn fans off when probing
|
//#define PROBING_FANS_OFF // Turn fans off when probing
|
||||||
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
||||||
|
|
||||||
|
|
|
@ -701,6 +701,9 @@
|
||||||
* readings with inductive probes and piezo sensors.
|
* readings with inductive probes and piezo sensors.
|
||||||
*/
|
*/
|
||||||
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
||||||
|
#if ENABLED(PROBING_HEATERS_OFF)
|
||||||
|
//#define WAIT_FOR_BED_HEATER // Wait for bed to heat back up between probes (to improve accuracy)
|
||||||
|
#endif
|
||||||
//#define PROBING_FANS_OFF // Turn fans off when probing
|
//#define PROBING_FANS_OFF // Turn fans off when probing
|
||||||
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
||||||
|
|
||||||
|
|
|
@ -672,6 +672,9 @@
|
||||||
* readings with inductive probes and piezo sensors.
|
* readings with inductive probes and piezo sensors.
|
||||||
*/
|
*/
|
||||||
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
||||||
|
#if ENABLED(PROBING_HEATERS_OFF)
|
||||||
|
//#define WAIT_FOR_BED_HEATER // Wait for bed to heat back up between probes (to improve accuracy)
|
||||||
|
#endif
|
||||||
//#define PROBING_FANS_OFF // Turn fans off when probing
|
//#define PROBING_FANS_OFF // Turn fans off when probing
|
||||||
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
||||||
|
|
||||||
|
|
|
@ -672,6 +672,9 @@
|
||||||
* readings with inductive probes and piezo sensors.
|
* readings with inductive probes and piezo sensors.
|
||||||
*/
|
*/
|
||||||
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
||||||
|
#if ENABLED(PROBING_HEATERS_OFF)
|
||||||
|
//#define WAIT_FOR_BED_HEATER // Wait for bed to heat back up between probes (to improve accuracy)
|
||||||
|
#endif
|
||||||
//#define PROBING_FANS_OFF // Turn fans off when probing
|
//#define PROBING_FANS_OFF // Turn fans off when probing
|
||||||
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
||||||
|
|
||||||
|
|
|
@ -682,6 +682,9 @@
|
||||||
* readings with inductive probes and piezo sensors.
|
* readings with inductive probes and piezo sensors.
|
||||||
*/
|
*/
|
||||||
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
||||||
|
#if ENABLED(PROBING_HEATERS_OFF)
|
||||||
|
//#define WAIT_FOR_BED_HEATER // Wait for bed to heat back up between probes (to improve accuracy)
|
||||||
|
#endif
|
||||||
//#define PROBING_FANS_OFF // Turn fans off when probing
|
//#define PROBING_FANS_OFF // Turn fans off when probing
|
||||||
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
||||||
|
|
||||||
|
|
|
@ -672,6 +672,9 @@
|
||||||
* readings with inductive probes and piezo sensors.
|
* readings with inductive probes and piezo sensors.
|
||||||
*/
|
*/
|
||||||
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
||||||
|
#if ENABLED(PROBING_HEATERS_OFF)
|
||||||
|
//#define WAIT_FOR_BED_HEATER // Wait for bed to heat back up between probes (to improve accuracy)
|
||||||
|
#endif
|
||||||
//#define PROBING_FANS_OFF // Turn fans off when probing
|
//#define PROBING_FANS_OFF // Turn fans off when probing
|
||||||
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
||||||
|
|
||||||
|
|
|
@ -754,6 +754,9 @@
|
||||||
* readings with inductive probes and piezo sensors.
|
* readings with inductive probes and piezo sensors.
|
||||||
*/
|
*/
|
||||||
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
||||||
|
#if ENABLED(PROBING_HEATERS_OFF)
|
||||||
|
//#define WAIT_FOR_BED_HEATER // Wait for bed to heat back up between probes (to improve accuracy)
|
||||||
|
#endif
|
||||||
//#define PROBING_FANS_OFF // Turn fans off when probing
|
//#define PROBING_FANS_OFF // Turn fans off when probing
|
||||||
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
||||||
|
|
||||||
|
|
|
@ -754,6 +754,9 @@
|
||||||
* readings with inductive probes and piezo sensors.
|
* readings with inductive probes and piezo sensors.
|
||||||
*/
|
*/
|
||||||
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
||||||
|
#if ENABLED(PROBING_HEATERS_OFF)
|
||||||
|
//#define WAIT_FOR_BED_HEATER // Wait for bed to heat back up between probes (to improve accuracy)
|
||||||
|
#endif
|
||||||
//#define PROBING_FANS_OFF // Turn fans off when probing
|
//#define PROBING_FANS_OFF // Turn fans off when probing
|
||||||
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
||||||
|
|
||||||
|
|
|
@ -754,6 +754,9 @@
|
||||||
* readings with inductive probes and piezo sensors.
|
* readings with inductive probes and piezo sensors.
|
||||||
*/
|
*/
|
||||||
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
||||||
|
#if ENABLED(PROBING_HEATERS_OFF)
|
||||||
|
//#define WAIT_FOR_BED_HEATER // Wait for bed to heat back up between probes (to improve accuracy)
|
||||||
|
#endif
|
||||||
//#define PROBING_FANS_OFF // Turn fans off when probing
|
//#define PROBING_FANS_OFF // Turn fans off when probing
|
||||||
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
||||||
|
|
||||||
|
|
|
@ -759,6 +759,9 @@
|
||||||
* readings with inductive probes and piezo sensors.
|
* readings with inductive probes and piezo sensors.
|
||||||
*/
|
*/
|
||||||
#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
||||||
|
#if ENABLED(PROBING_HEATERS_OFF)
|
||||||
|
//#define WAIT_FOR_BED_HEATER // Wait for bed to heat back up between probes (to improve accuracy)
|
||||||
|
#endif
|
||||||
#define PROBING_FANS_OFF // Turn fans off when probing
|
#define PROBING_FANS_OFF // Turn fans off when probing
|
||||||
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
||||||
|
|
||||||
|
|
|
@ -744,6 +744,9 @@
|
||||||
* readings with inductive probes and piezo sensors.
|
* readings with inductive probes and piezo sensors.
|
||||||
*/
|
*/
|
||||||
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
||||||
|
#if ENABLED(PROBING_HEATERS_OFF)
|
||||||
|
//#define WAIT_FOR_BED_HEATER // Wait for bed to heat back up between probes (to improve accuracy)
|
||||||
|
#endif
|
||||||
//#define PROBING_FANS_OFF // Turn fans off when probing
|
//#define PROBING_FANS_OFF // Turn fans off when probing
|
||||||
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
||||||
|
|
||||||
|
|
|
@ -744,6 +744,9 @@
|
||||||
* readings with inductive probes and piezo sensors.
|
* readings with inductive probes and piezo sensors.
|
||||||
*/
|
*/
|
||||||
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
||||||
|
#if ENABLED(PROBING_HEATERS_OFF)
|
||||||
|
//#define WAIT_FOR_BED_HEATER // Wait for bed to heat back up between probes (to improve accuracy)
|
||||||
|
#endif
|
||||||
//#define PROBING_FANS_OFF // Turn fans off when probing
|
//#define PROBING_FANS_OFF // Turn fans off when probing
|
||||||
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
||||||
|
|
||||||
|
|
|
@ -729,6 +729,9 @@
|
||||||
* readings with inductive probes and piezo sensors.
|
* readings with inductive probes and piezo sensors.
|
||||||
*/
|
*/
|
||||||
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
||||||
|
#if ENABLED(PROBING_HEATERS_OFF)
|
||||||
|
//#define WAIT_FOR_BED_HEATER // Wait for bed to heat back up between probes (to improve accuracy)
|
||||||
|
#endif
|
||||||
//#define PROBING_FANS_OFF // Turn fans off when probing
|
//#define PROBING_FANS_OFF // Turn fans off when probing
|
||||||
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
||||||
|
|
||||||
|
|
|
@ -747,6 +747,9 @@
|
||||||
* readings with inductive probes and piezo sensors.
|
* readings with inductive probes and piezo sensors.
|
||||||
*/
|
*/
|
||||||
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
||||||
|
#if ENABLED(PROBING_HEATERS_OFF)
|
||||||
|
//#define WAIT_FOR_BED_HEATER // Wait for bed to heat back up between probes (to improve accuracy)
|
||||||
|
#endif
|
||||||
//#define PROBING_FANS_OFF // Turn fans off when probing
|
//#define PROBING_FANS_OFF // Turn fans off when probing
|
||||||
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
||||||
|
|
||||||
|
|
|
@ -685,6 +685,9 @@
|
||||||
* readings with inductive probes and piezo sensors.
|
* readings with inductive probes and piezo sensors.
|
||||||
*/
|
*/
|
||||||
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
||||||
|
#if ENABLED(PROBING_HEATERS_OFF)
|
||||||
|
//#define WAIT_FOR_BED_HEATER // Wait for bed to heat back up between probes (to improve accuracy)
|
||||||
|
#endif
|
||||||
//#define PROBING_FANS_OFF // Turn fans off when probing
|
//#define PROBING_FANS_OFF // Turn fans off when probing
|
||||||
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
||||||
|
|
||||||
|
|
|
@ -675,6 +675,9 @@
|
||||||
* readings with inductive probes and piezo sensors.
|
* readings with inductive probes and piezo sensors.
|
||||||
*/
|
*/
|
||||||
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
||||||
|
#if ENABLED(PROBING_HEATERS_OFF)
|
||||||
|
//#define WAIT_FOR_BED_HEATER // Wait for bed to heat back up between probes (to improve accuracy)
|
||||||
|
#endif
|
||||||
//#define PROBING_FANS_OFF // Turn fans off when probing
|
//#define PROBING_FANS_OFF // Turn fans off when probing
|
||||||
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
||||||
|
|
||||||
|
|
|
@ -667,6 +667,9 @@
|
||||||
* readings with inductive probes and piezo sensors.
|
* readings with inductive probes and piezo sensors.
|
||||||
*/
|
*/
|
||||||
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
||||||
|
#if ENABLED(PROBING_HEATERS_OFF)
|
||||||
|
//#define WAIT_FOR_BED_HEATER // Wait for bed to heat back up between probes (to improve accuracy)
|
||||||
|
#endif
|
||||||
//#define PROBING_FANS_OFF // Turn fans off when probing
|
//#define PROBING_FANS_OFF // Turn fans off when probing
|
||||||
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
||||||
|
|
||||||
|
|
|
@ -677,6 +677,9 @@
|
||||||
* readings with inductive probes and piezo sensors.
|
* readings with inductive probes and piezo sensors.
|
||||||
*/
|
*/
|
||||||
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
|
||||||
|
#if ENABLED(PROBING_HEATERS_OFF)
|
||||||
|
//#define WAIT_FOR_BED_HEATER // Wait for bed to heat back up between probes (to improve accuracy)
|
||||||
|
#endif
|
||||||
//#define PROBING_FANS_OFF // Turn fans off when probing
|
//#define PROBING_FANS_OFF // Turn fans off when probing
|
||||||
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
//#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue