Update descriptions and dont call unneeded functions

This commit is contained in:
InsanityAutomation 2019-03-26 11:24:52 -04:00
parent fe346cd4d1
commit eb91f08725
94 changed files with 385 additions and 117 deletions

View file

@ -818,7 +818,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -70,19 +70,23 @@ bool BLTouch::set_deployed(const bool in_deploy) {
}
}
#if ENABLED(BLTOUCH_FORCE_5V_MODE)
set_5V_mode();
#elif ENABLED(BLTOUCH_FORCE_OPEN_DRAIN_MODE)
set_OD_mode();
#elif ENABLED(ENDSTOPPULLUPS) || ALL(Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN, ENDSTOPPULLUP_ZMIN) || (USES_Z_MIN_PROBE_ENDSTOP && ENABLED(ENDSTOPPULLUP_ZMIN_PROBE))
set_5V_mode(); // Assume 5V DC logic level if endstop pullup resistors are enabled
#else
set_OD_mode();
#if ENABLED(BLTOUCH_V3)
#if ENABLED(BLTOUCH_FORCE_5V_MODE)
set_5V_mode();
#elif ENABLED(BLTOUCH_FORCE_OPEN_DRAIN_MODE)
set_OD_mode();
#elif ENABLED(ENDSTOPPULLUPS) || ALL(Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN, ENDSTOPPULLUP_ZMIN) || (USES_Z_MIN_PROBE_ENDSTOP && ENABLED(ENDSTOPPULLUP_ZMIN_PROBE))
set_5V_mode(); // Assume 5V DC logic level if endstop pullup resistors are enabled
#else
set_OD_mode();
#endif
#endif
if (in_deploy) {
_deploy();
set_SW_mode(); // Ensure Switch mode is activated for BLTouch V3. Ignored on V2.
#if ENABLED(BLTOUCH_V3)
set_SW_mode();
#endif
}
else _stow();

View file

@ -43,21 +43,9 @@ public:
FORCE_INLINE static void reset() { command(BLTOUCH_RESET); }
FORCE_INLINE static void selftest() { command(BLTOUCH_SELFTEST); }
FORCE_INLINE static void set_5V_mode() {
#if ENABLED(BLTOUCH_V3)
command(BLTOUCH_5V_MODE);
#endif
}
FORCE_INLINE static void set_OD_mode() {
#if ENABLED(BLTOUCH_V3)
command(BLTOUCH_OD_MODE);
#endif
}
FORCE_INLINE static void set_SW_mode() {
#if ENABLED(BLTOUCH_V3)
command(BLTOUCH_SW_MODE);
#endif
}
FORCE_INLINE static void set_5V_mode() { command(BLTOUCH_5V_MODE); }
FORCE_INLINE static void set_OD_mode() { command(BLTOUCH_OD_MODE); }
FORCE_INLINE static void set_SW_mode() { command(BLTOUCH_SW_MODE); }
FORCE_INLINE static bool deploy() { return set_deployed(true); }
FORCE_INLINE static bool stow() { return set_deployed(false); }

View file

@ -818,7 +818,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -824,7 +824,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -838,7 +838,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -818,7 +818,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -829,7 +829,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -818,7 +818,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -818,7 +818,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -865,7 +865,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -831,7 +831,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -828,7 +828,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -819,7 +819,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -818,7 +818,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -818,7 +818,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -818,7 +818,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -806,7 +806,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -819,7 +819,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -806,7 +806,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -817,7 +817,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -828,7 +828,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -818,7 +818,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -819,7 +819,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -837,7 +837,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -828,7 +828,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -822,7 +822,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -822,7 +822,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -828,7 +828,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -829,7 +829,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -800,7 +800,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -800,7 +800,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -810,7 +810,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -824,7 +824,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -901,7 +901,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -847,7 +847,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -834,7 +834,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -801,7 +801,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -801,7 +801,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -833,7 +833,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -825,7 +825,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -834,7 +834,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -833,7 +833,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -818,7 +818,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -818,7 +818,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -822,7 +822,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -830,7 +830,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -838,7 +838,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -838,7 +838,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -817,7 +817,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -822,7 +822,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -822,7 +822,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -819,7 +819,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -818,7 +818,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -826,7 +826,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -818,7 +818,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -858,7 +858,10 @@ Black rubber belt(MXL), 18 - tooth aluminium pulley : 87.489 step per mm (Huxley
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -818,7 +818,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -816,7 +816,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -831,7 +831,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -820,7 +820,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -818,7 +818,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -849,7 +849,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -818,7 +818,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -869,7 +869,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -818,7 +818,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -818,7 +818,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -839,7 +839,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -817,7 +817,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -829,7 +829,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -818,7 +818,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -818,7 +818,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -827,7 +827,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -847,7 +847,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -818,7 +818,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -818,7 +818,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -837,7 +837,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -828,7 +828,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -818,7 +818,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -954,7 +954,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -900,7 +900,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -900,7 +900,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -900,7 +900,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -890,7 +890,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -905,7 +905,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -890,7 +890,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -890,7 +890,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -890,7 +890,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -883,7 +883,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -893,7 +893,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -821,7 +821,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -820,7 +820,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -813,7 +813,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE

View file

@ -823,7 +823,10 @@
#if ENABLED(BLTOUCH)
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
// BLTouch V3.0 and newer smart series
/** BLTouch V3.0 and newer smart series
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
*/
//#define BLTOUCH_V3
#if ENABLED(BLTOUCH_V3)
//#define BLTOUCH_FORCE_5V_MODE