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