diff --git a/Marlin/Configuration.h b/Marlin/Configuration.h index 7a9ebe5b4..16d0bfa31 100644 --- a/Marlin/Configuration.h +++ b/Marlin/Configuration.h @@ -818,9 +818,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/Marlin/src/feature/bltouch.cpp b/Marlin/src/feature/bltouch.cpp index f2dcec227..2e68835f3 100644 --- a/Marlin/src/feature/bltouch.cpp +++ b/Marlin/src/feature/bltouch.cpp @@ -71,19 +71,17 @@ bool BLTouch::set_deployed(const bool in_deploy) { } #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 + #if EITHER(BLTOUCH_FORCE_5V_MODE, 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 + #elif true || ENABLED(BLTOUCH_FORCE_OPEN_DRAIN_MODE) set_OD_mode(); #endif #endif + if (in_deploy) { _deploy(); - #if ENABLED(BLTOUCH_V3) set_SW_mode(); #endif diff --git a/config/default/Configuration.h b/config/default/Configuration.h index 7a9ebe5b4..16d0bfa31 100644 --- a/config/default/Configuration.h +++ b/config/default/Configuration.h @@ -818,9 +818,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/3DFabXYZ/Migbot/Configuration.h b/config/examples/3DFabXYZ/Migbot/Configuration.h index f82c227bf..2a7bf9b8d 100644 --- a/config/examples/3DFabXYZ/Migbot/Configuration.h +++ b/config/examples/3DFabXYZ/Migbot/Configuration.h @@ -824,9 +824,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/AlephObjects/TAZ4/Configuration.h b/config/examples/AlephObjects/TAZ4/Configuration.h index 89c867613..7db2f6399 100644 --- a/config/examples/AlephObjects/TAZ4/Configuration.h +++ b/config/examples/AlephObjects/TAZ4/Configuration.h @@ -838,9 +838,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/AliExpress/CL-260/Configuration.h b/config/examples/AliExpress/CL-260/Configuration.h index db6f79cce..60c794816 100644 --- a/config/examples/AliExpress/CL-260/Configuration.h +++ b/config/examples/AliExpress/CL-260/Configuration.h @@ -818,9 +818,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/AliExpress/UM2pExt/Configuration.h b/config/examples/AliExpress/UM2pExt/Configuration.h index f105047fa..96f7ba5bd 100644 --- a/config/examples/AliExpress/UM2pExt/Configuration.h +++ b/config/examples/AliExpress/UM2pExt/Configuration.h @@ -829,9 +829,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/Anet/A2/Configuration.h b/config/examples/Anet/A2/Configuration.h index 13303c17c..7f5c34942 100644 --- a/config/examples/Anet/A2/Configuration.h +++ b/config/examples/Anet/A2/Configuration.h @@ -818,9 +818,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/Anet/A2plus/Configuration.h b/config/examples/Anet/A2plus/Configuration.h index 0c05d7437..134985837 100644 --- a/config/examples/Anet/A2plus/Configuration.h +++ b/config/examples/Anet/A2plus/Configuration.h @@ -818,9 +818,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/Anet/A6/Configuration.h b/config/examples/Anet/A6/Configuration.h index 7b84d259c..81569f617 100644 --- a/config/examples/Anet/A6/Configuration.h +++ b/config/examples/Anet/A6/Configuration.h @@ -865,9 +865,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/Anet/A8/Configuration.h b/config/examples/Anet/A8/Configuration.h index 9f729e2fa..47b828ce4 100644 --- a/config/examples/Anet/A8/Configuration.h +++ b/config/examples/Anet/A8/Configuration.h @@ -831,9 +831,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/AnyCubic/i3/Configuration.h b/config/examples/AnyCubic/i3/Configuration.h index b645c6952..d4c6e0e01 100644 --- a/config/examples/AnyCubic/i3/Configuration.h +++ b/config/examples/AnyCubic/i3/Configuration.h @@ -828,9 +828,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/ArmEd/Configuration.h b/config/examples/ArmEd/Configuration.h index 08500063e..70c54296f 100644 --- a/config/examples/ArmEd/Configuration.h +++ b/config/examples/ArmEd/Configuration.h @@ -819,9 +819,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/Azteeg/X5GT/Configuration.h b/config/examples/Azteeg/X5GT/Configuration.h index 616bcf906..fc93873ed 100644 --- a/config/examples/Azteeg/X5GT/Configuration.h +++ b/config/examples/Azteeg/X5GT/Configuration.h @@ -818,9 +818,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/BIBO/TouchX/cyclops/Configuration.h b/config/examples/BIBO/TouchX/cyclops/Configuration.h index e0346025c..b44d38849 100644 --- a/config/examples/BIBO/TouchX/cyclops/Configuration.h +++ b/config/examples/BIBO/TouchX/cyclops/Configuration.h @@ -818,9 +818,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/BIBO/TouchX/default/Configuration.h b/config/examples/BIBO/TouchX/default/Configuration.h index 32f5b6e4b..d338ca8a5 100644 --- a/config/examples/BIBO/TouchX/default/Configuration.h +++ b/config/examples/BIBO/TouchX/default/Configuration.h @@ -818,9 +818,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/BQ/Hephestos/Configuration.h b/config/examples/BQ/Hephestos/Configuration.h index 8136f1de9..f75ed2fcf 100644 --- a/config/examples/BQ/Hephestos/Configuration.h +++ b/config/examples/BQ/Hephestos/Configuration.h @@ -806,9 +806,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/BQ/Hephestos_2/Configuration.h b/config/examples/BQ/Hephestos_2/Configuration.h index 4f3a16c50..2f2594e99 100644 --- a/config/examples/BQ/Hephestos_2/Configuration.h +++ b/config/examples/BQ/Hephestos_2/Configuration.h @@ -819,9 +819,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/BQ/WITBOX/Configuration.h b/config/examples/BQ/WITBOX/Configuration.h index 41b1c4e83..c89413b5c 100644 --- a/config/examples/BQ/WITBOX/Configuration.h +++ b/config/examples/BQ/WITBOX/Configuration.h @@ -806,9 +806,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/Cartesio/Configuration.h b/config/examples/Cartesio/Configuration.h index e992cf677..74fa02b18 100644 --- a/config/examples/Cartesio/Configuration.h +++ b/config/examples/Cartesio/Configuration.h @@ -817,9 +817,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/Creality/CR-10/Configuration.h b/config/examples/Creality/CR-10/Configuration.h index 8c3652506..0b881bcde 100644 --- a/config/examples/Creality/CR-10/Configuration.h +++ b/config/examples/Creality/CR-10/Configuration.h @@ -828,9 +828,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/Creality/CR-10S/Configuration.h b/config/examples/Creality/CR-10S/Configuration.h index 34376e57f..b372077e9 100644 --- a/config/examples/Creality/CR-10S/Configuration.h +++ b/config/examples/Creality/CR-10S/Configuration.h @@ -818,9 +818,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/Creality/CR-10_5S/Configuration.h b/config/examples/Creality/CR-10_5S/Configuration.h index a3f1d0419..17d0f49d8 100644 --- a/config/examples/Creality/CR-10_5S/Configuration.h +++ b/config/examples/Creality/CR-10_5S/Configuration.h @@ -819,9 +819,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/Creality/CR-10mini/Configuration.h b/config/examples/Creality/CR-10mini/Configuration.h index 07230ee99..ee693f30b 100644 --- a/config/examples/Creality/CR-10mini/Configuration.h +++ b/config/examples/Creality/CR-10mini/Configuration.h @@ -837,9 +837,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/Creality/CR-8/Configuration.h b/config/examples/Creality/CR-8/Configuration.h index e0edae8b1..6285715af 100644 --- a/config/examples/Creality/CR-8/Configuration.h +++ b/config/examples/Creality/CR-8/Configuration.h @@ -828,9 +828,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/Creality/Ender-2/Configuration.h b/config/examples/Creality/Ender-2/Configuration.h index 1c0b68b61..8e0722135 100644 --- a/config/examples/Creality/Ender-2/Configuration.h +++ b/config/examples/Creality/Ender-2/Configuration.h @@ -822,9 +822,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/Creality/Ender-3/Configuration.h b/config/examples/Creality/Ender-3/Configuration.h index 3241d6521..ebf1455c9 100644 --- a/config/examples/Creality/Ender-3/Configuration.h +++ b/config/examples/Creality/Ender-3/Configuration.h @@ -822,9 +822,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/Creality/Ender-4/Configuration.h b/config/examples/Creality/Ender-4/Configuration.h index 76b12a87d..af5f71e93 100644 --- a/config/examples/Creality/Ender-4/Configuration.h +++ b/config/examples/Creality/Ender-4/Configuration.h @@ -828,9 +828,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/Einstart-S/Configuration.h b/config/examples/Einstart-S/Configuration.h index 27a965287..fd1a17976 100644 --- a/config/examples/Einstart-S/Configuration.h +++ b/config/examples/Einstart-S/Configuration.h @@ -829,9 +829,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/Felix/Configuration.h b/config/examples/Felix/Configuration.h index 2eeb726f2..3d951698f 100644 --- a/config/examples/Felix/Configuration.h +++ b/config/examples/Felix/Configuration.h @@ -800,9 +800,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/Felix/DUAL/Configuration.h b/config/examples/Felix/DUAL/Configuration.h index c4c8e7744..841da015d 100644 --- a/config/examples/Felix/DUAL/Configuration.h +++ b/config/examples/Felix/DUAL/Configuration.h @@ -800,9 +800,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/FlashForge/CreatorPro/Configuration.h b/config/examples/FlashForge/CreatorPro/Configuration.h index b908634de..a267439e7 100644 --- a/config/examples/FlashForge/CreatorPro/Configuration.h +++ b/config/examples/FlashForge/CreatorPro/Configuration.h @@ -810,9 +810,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/FolgerTech/i3-2020/Configuration.h b/config/examples/FolgerTech/i3-2020/Configuration.h index f6011262e..ec04f9753 100644 --- a/config/examples/FolgerTech/i3-2020/Configuration.h +++ b/config/examples/FolgerTech/i3-2020/Configuration.h @@ -824,9 +824,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/Formbot/Raptor/Configuration.h b/config/examples/Formbot/Raptor/Configuration.h index 1e88235fb..a12778960 100644 --- a/config/examples/Formbot/Raptor/Configuration.h +++ b/config/examples/Formbot/Raptor/Configuration.h @@ -901,9 +901,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/Formbot/T_Rex_2+/Configuration.h b/config/examples/Formbot/T_Rex_2+/Configuration.h index d1ba7376f..451e35256 100644 --- a/config/examples/Formbot/T_Rex_2+/Configuration.h +++ b/config/examples/Formbot/T_Rex_2+/Configuration.h @@ -847,9 +847,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/Formbot/T_Rex_3/Configuration.h b/config/examples/Formbot/T_Rex_3/Configuration.h index ebf1b4095..6935056e8 100644 --- a/config/examples/Formbot/T_Rex_3/Configuration.h +++ b/config/examples/Formbot/T_Rex_3/Configuration.h @@ -834,9 +834,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/Geeetech/A10M/Configuration.h b/config/examples/Geeetech/A10M/Configuration.h index 193d1ebb4..f8be81c5e 100644 --- a/config/examples/Geeetech/A10M/Configuration.h +++ b/config/examples/Geeetech/A10M/Configuration.h @@ -801,9 +801,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/Geeetech/A20M/Configuration.h b/config/examples/Geeetech/A20M/Configuration.h index 23dbec24b..8d52093c0 100644 --- a/config/examples/Geeetech/A20M/Configuration.h +++ b/config/examples/Geeetech/A20M/Configuration.h @@ -801,9 +801,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/Geeetech/GT2560/Configuration.h b/config/examples/Geeetech/GT2560/Configuration.h index 3f4c1f2e5..d5c52b694 100644 --- a/config/examples/Geeetech/GT2560/Configuration.h +++ b/config/examples/Geeetech/GT2560/Configuration.h @@ -833,9 +833,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/Geeetech/MeCreator2/Configuration.h b/config/examples/Geeetech/MeCreator2/Configuration.h index c1ed782e0..9a7d4c704 100644 --- a/config/examples/Geeetech/MeCreator2/Configuration.h +++ b/config/examples/Geeetech/MeCreator2/Configuration.h @@ -825,9 +825,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/Geeetech/Prusa i3 Pro B/bltouch/Configuration.h b/config/examples/Geeetech/Prusa i3 Pro B/bltouch/Configuration.h index f97b7658d..ee0e8166d 100644 --- a/config/examples/Geeetech/Prusa i3 Pro B/bltouch/Configuration.h +++ b/config/examples/Geeetech/Prusa i3 Pro B/bltouch/Configuration.h @@ -834,9 +834,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/Geeetech/Prusa i3 Pro B/noprobe/Configuration.h b/config/examples/Geeetech/Prusa i3 Pro B/noprobe/Configuration.h index 575b29083..12f48870e 100644 --- a/config/examples/Geeetech/Prusa i3 Pro B/noprobe/Configuration.h +++ b/config/examples/Geeetech/Prusa i3 Pro B/noprobe/Configuration.h @@ -833,9 +833,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/Geeetech/Prusa i3 Pro C/Configuration.h b/config/examples/Geeetech/Prusa i3 Pro C/Configuration.h index bd113a3be..5698c217d 100644 --- a/config/examples/Geeetech/Prusa i3 Pro C/Configuration.h +++ b/config/examples/Geeetech/Prusa i3 Pro C/Configuration.h @@ -818,9 +818,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/Geeetech/Prusa i3 Pro W/Configuration.h b/config/examples/Geeetech/Prusa i3 Pro W/Configuration.h index 09fadb8d0..79ea41315 100644 --- a/config/examples/Geeetech/Prusa i3 Pro W/Configuration.h +++ b/config/examples/Geeetech/Prusa i3 Pro W/Configuration.h @@ -818,9 +818,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/Infitary/i3-M508/Configuration.h b/config/examples/Infitary/i3-M508/Configuration.h index cee2cf7df..2d25e6afe 100644 --- a/config/examples/Infitary/i3-M508/Configuration.h +++ b/config/examples/Infitary/i3-M508/Configuration.h @@ -822,9 +822,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/JGAurora/A5/Configuration.h b/config/examples/JGAurora/A5/Configuration.h index 16b1dae84..686a90d9d 100644 --- a/config/examples/JGAurora/A5/Configuration.h +++ b/config/examples/JGAurora/A5/Configuration.h @@ -830,9 +830,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/MakerParts/Configuration.h b/config/examples/MakerParts/Configuration.h index eaf7eed8c..ec81d59d0 100644 --- a/config/examples/MakerParts/Configuration.h +++ b/config/examples/MakerParts/Configuration.h @@ -838,9 +838,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/Malyan/M150/Configuration.h b/config/examples/Malyan/M150/Configuration.h index dc415e447..f4e390a9f 100644 --- a/config/examples/Malyan/M150/Configuration.h +++ b/config/examples/Malyan/M150/Configuration.h @@ -838,9 +838,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/Malyan/M200/Configuration.h b/config/examples/Malyan/M200/Configuration.h index 4be3735af..7ef45d737 100644 --- a/config/examples/Malyan/M200/Configuration.h +++ b/config/examples/Malyan/M200/Configuration.h @@ -817,9 +817,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/Micromake/C1/basic/Configuration.h b/config/examples/Micromake/C1/basic/Configuration.h index 2cfbf3034..165c59b6c 100644 --- a/config/examples/Micromake/C1/basic/Configuration.h +++ b/config/examples/Micromake/C1/basic/Configuration.h @@ -822,9 +822,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/Micromake/C1/enhanced/Configuration.h b/config/examples/Micromake/C1/enhanced/Configuration.h index 3801d831f..ebc346557 100644 --- a/config/examples/Micromake/C1/enhanced/Configuration.h +++ b/config/examples/Micromake/C1/enhanced/Configuration.h @@ -822,9 +822,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/Mks/Robin/Configuration.h b/config/examples/Mks/Robin/Configuration.h index 4b3599def..badacbb6d 100644 --- a/config/examples/Mks/Robin/Configuration.h +++ b/config/examples/Mks/Robin/Configuration.h @@ -819,9 +819,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/Mks/Sbase/Configuration.h b/config/examples/Mks/Sbase/Configuration.h index 1167b1227..18dc3f9d6 100644 --- a/config/examples/Mks/Sbase/Configuration.h +++ b/config/examples/Mks/Sbase/Configuration.h @@ -818,9 +818,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/Printrbot/PrintrboardG2/Configuration.h b/config/examples/Printrbot/PrintrboardG2/Configuration.h index 216aa4c27..0c2b1cd67 100644 --- a/config/examples/Printrbot/PrintrboardG2/Configuration.h +++ b/config/examples/Printrbot/PrintrboardG2/Configuration.h @@ -826,9 +826,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/RapideLite/RL200/Configuration.h b/config/examples/RapideLite/RL200/Configuration.h index 70edfd87d..b1940d723 100644 --- a/config/examples/RapideLite/RL200/Configuration.h +++ b/config/examples/RapideLite/RL200/Configuration.h @@ -818,9 +818,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/RepRapPro/Huxley/Configuration.h b/config/examples/RepRapPro/Huxley/Configuration.h index 5a8028e0a..9e8b5c55f 100644 --- a/config/examples/RepRapPro/Huxley/Configuration.h +++ b/config/examples/RepRapPro/Huxley/Configuration.h @@ -858,9 +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 - * 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/RepRapWorld/Megatronics/Configuration.h b/config/examples/RepRapWorld/Megatronics/Configuration.h index 77a1f1a17..4b6cd06ab 100644 --- a/config/examples/RepRapWorld/Megatronics/Configuration.h +++ b/config/examples/RepRapWorld/Megatronics/Configuration.h @@ -818,9 +818,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/RigidBot/Configuration.h b/config/examples/RigidBot/Configuration.h index 40f447d0d..27c9471f7 100644 --- a/config/examples/RigidBot/Configuration.h +++ b/config/examples/RigidBot/Configuration.h @@ -816,9 +816,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/SCARA/Configuration.h b/config/examples/SCARA/Configuration.h index 10940c250..8b5284655 100644 --- a/config/examples/SCARA/Configuration.h +++ b/config/examples/SCARA/Configuration.h @@ -831,9 +831,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/STM32F10/Configuration.h b/config/examples/STM32F10/Configuration.h index f569d7c22..da9b22431 100644 --- a/config/examples/STM32F10/Configuration.h +++ b/config/examples/STM32F10/Configuration.h @@ -820,9 +820,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/STM32F4/Configuration.h b/config/examples/STM32F4/Configuration.h index 3e2337bd3..8979f40fc 100644 --- a/config/examples/STM32F4/Configuration.h +++ b/config/examples/STM32F4/Configuration.h @@ -818,9 +818,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/Sanguinololu/Configuration.h b/config/examples/Sanguinololu/Configuration.h index ca588258f..5382da453 100644 --- a/config/examples/Sanguinololu/Configuration.h +++ b/config/examples/Sanguinololu/Configuration.h @@ -849,9 +849,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/TheBorg/Configuration.h b/config/examples/TheBorg/Configuration.h index 8d7369138..787d2dad6 100644 --- a/config/examples/TheBorg/Configuration.h +++ b/config/examples/TheBorg/Configuration.h @@ -818,9 +818,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/TinyBoy2/Configuration.h b/config/examples/TinyBoy2/Configuration.h index 309f358c7..f4ddd1d5a 100644 --- a/config/examples/TinyBoy2/Configuration.h +++ b/config/examples/TinyBoy2/Configuration.h @@ -869,9 +869,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/Tronxy/X1/Configuration.h b/config/examples/Tronxy/X1/Configuration.h index a4f9d1cef..22489b6ba 100644 --- a/config/examples/Tronxy/X1/Configuration.h +++ b/config/examples/Tronxy/X1/Configuration.h @@ -818,9 +818,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/Tronxy/X3A/Configuration.h b/config/examples/Tronxy/X3A/Configuration.h index 8b3c5648d..c20bac923 100644 --- a/config/examples/Tronxy/X3A/Configuration.h +++ b/config/examples/Tronxy/X3A/Configuration.h @@ -818,9 +818,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/Tronxy/X5S-2E/Configuration.h b/config/examples/Tronxy/X5S-2E/Configuration.h index fd1e5d527..b57f79975 100644 --- a/config/examples/Tronxy/X5S-2E/Configuration.h +++ b/config/examples/Tronxy/X5S-2E/Configuration.h @@ -839,9 +839,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/Tronxy/X5S/Configuration.h b/config/examples/Tronxy/X5S/Configuration.h index a846fe123..c93f4d158 100644 --- a/config/examples/Tronxy/X5S/Configuration.h +++ b/config/examples/Tronxy/X5S/Configuration.h @@ -817,9 +817,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/Tronxy/XY100/Configuration.h b/config/examples/Tronxy/XY100/Configuration.h index 120042e84..a68dd5fb6 100644 --- a/config/examples/Tronxy/XY100/Configuration.h +++ b/config/examples/Tronxy/XY100/Configuration.h @@ -829,9 +829,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/UltiMachine/Archim1/Configuration.h b/config/examples/UltiMachine/Archim1/Configuration.h index a189f4947..15696b31b 100644 --- a/config/examples/UltiMachine/Archim1/Configuration.h +++ b/config/examples/UltiMachine/Archim1/Configuration.h @@ -818,9 +818,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/UltiMachine/Archim2/Configuration.h b/config/examples/UltiMachine/Archim2/Configuration.h index 67629cc41..8425c5006 100644 --- a/config/examples/UltiMachine/Archim2/Configuration.h +++ b/config/examples/UltiMachine/Archim2/Configuration.h @@ -818,9 +818,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/VORONDesign/Configuration.h b/config/examples/VORONDesign/Configuration.h index 241201352..422eb1827 100644 --- a/config/examples/VORONDesign/Configuration.h +++ b/config/examples/VORONDesign/Configuration.h @@ -827,9 +827,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/Velleman/K8200/Configuration.h b/config/examples/Velleman/K8200/Configuration.h index 72a06f933..6b7b5cc48 100644 --- a/config/examples/Velleman/K8200/Configuration.h +++ b/config/examples/Velleman/K8200/Configuration.h @@ -847,9 +847,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/Velleman/K8400/Configuration.h b/config/examples/Velleman/K8400/Configuration.h index d7d497e7b..81e6768de 100644 --- a/config/examples/Velleman/K8400/Configuration.h +++ b/config/examples/Velleman/K8400/Configuration.h @@ -818,9 +818,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/Velleman/K8400/Dual-head/Configuration.h b/config/examples/Velleman/K8400/Dual-head/Configuration.h index b8b0d55ee..d0807339a 100644 --- a/config/examples/Velleman/K8400/Dual-head/Configuration.h +++ b/config/examples/Velleman/K8400/Dual-head/Configuration.h @@ -818,9 +818,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/WASP/PowerWASP/Configuration.h b/config/examples/WASP/PowerWASP/Configuration.h index 1c7301d7c..c2b841855 100644 --- a/config/examples/WASP/PowerWASP/Configuration.h +++ b/config/examples/WASP/PowerWASP/Configuration.h @@ -837,9 +837,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/Wanhao/Duplicator 6/Configuration.h b/config/examples/Wanhao/Duplicator 6/Configuration.h index 0837d640b..e554ec3e3 100644 --- a/config/examples/Wanhao/Duplicator 6/Configuration.h +++ b/config/examples/Wanhao/Duplicator 6/Configuration.h @@ -828,9 +828,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/adafruit/ST7565/Configuration.h b/config/examples/adafruit/ST7565/Configuration.h index 22f883d23..80b886900 100644 --- a/config/examples/adafruit/ST7565/Configuration.h +++ b/config/examples/adafruit/ST7565/Configuration.h @@ -818,9 +818,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/delta/Anycubic/Kossel/Configuration.h b/config/examples/delta/Anycubic/Kossel/Configuration.h index 39e8e995c..737c76103 100644 --- a/config/examples/delta/Anycubic/Kossel/Configuration.h +++ b/config/examples/delta/Anycubic/Kossel/Configuration.h @@ -954,9 +954,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/delta/FLSUN/auto_calibrate/Configuration.h b/config/examples/delta/FLSUN/auto_calibrate/Configuration.h index cb657417e..3f75b1402 100644 --- a/config/examples/delta/FLSUN/auto_calibrate/Configuration.h +++ b/config/examples/delta/FLSUN/auto_calibrate/Configuration.h @@ -900,9 +900,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/delta/FLSUN/kossel/Configuration.h b/config/examples/delta/FLSUN/kossel/Configuration.h index a06936e1d..7025ce471 100644 --- a/config/examples/delta/FLSUN/kossel/Configuration.h +++ b/config/examples/delta/FLSUN/kossel/Configuration.h @@ -900,9 +900,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/delta/FLSUN/kossel_mini/Configuration.h b/config/examples/delta/FLSUN/kossel_mini/Configuration.h index acd142ab3..e3827449c 100644 --- a/config/examples/delta/FLSUN/kossel_mini/Configuration.h +++ b/config/examples/delta/FLSUN/kossel_mini/Configuration.h @@ -900,9 +900,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/delta/Geeetech/Rostock 301/Configuration.h b/config/examples/delta/Geeetech/Rostock 301/Configuration.h index 5172ff461..f21c3fd16 100644 --- a/config/examples/delta/Geeetech/Rostock 301/Configuration.h +++ b/config/examples/delta/Geeetech/Rostock 301/Configuration.h @@ -890,9 +890,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/delta/Hatchbox_Alpha/Configuration.h b/config/examples/delta/Hatchbox_Alpha/Configuration.h index c3bc567cf..50aad9eb0 100644 --- a/config/examples/delta/Hatchbox_Alpha/Configuration.h +++ b/config/examples/delta/Hatchbox_Alpha/Configuration.h @@ -905,9 +905,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/delta/MKS/SBASE/Configuration.h b/config/examples/delta/MKS/SBASE/Configuration.h index e996fc49a..95799fca5 100644 --- a/config/examples/delta/MKS/SBASE/Configuration.h +++ b/config/examples/delta/MKS/SBASE/Configuration.h @@ -890,9 +890,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/delta/generic/Configuration.h b/config/examples/delta/generic/Configuration.h index 7372b0feb..8fa8b70bd 100644 --- a/config/examples/delta/generic/Configuration.h +++ b/config/examples/delta/generic/Configuration.h @@ -890,9 +890,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/delta/kossel_mini/Configuration.h b/config/examples/delta/kossel_mini/Configuration.h index f21dab47d..0557aaaa6 100644 --- a/config/examples/delta/kossel_mini/Configuration.h +++ b/config/examples/delta/kossel_mini/Configuration.h @@ -890,9 +890,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/delta/kossel_pro/Configuration.h b/config/examples/delta/kossel_pro/Configuration.h index dc905d476..bca0466b6 100644 --- a/config/examples/delta/kossel_pro/Configuration.h +++ b/config/examples/delta/kossel_pro/Configuration.h @@ -883,9 +883,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/delta/kossel_xl/Configuration.h b/config/examples/delta/kossel_xl/Configuration.h index 84d2730dd..c048463a6 100644 --- a/config/examples/delta/kossel_xl/Configuration.h +++ b/config/examples/delta/kossel_xl/Configuration.h @@ -893,9 +893,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/makibox/Configuration.h b/config/examples/makibox/Configuration.h index af019001a..71671c8c4 100644 --- a/config/examples/makibox/Configuration.h +++ b/config/examples/makibox/Configuration.h @@ -821,9 +821,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/stm32f103ret6/Configuration.h b/config/examples/stm32f103ret6/Configuration.h index 140624a27..31aee8c6e 100644 --- a/config/examples/stm32f103ret6/Configuration.h +++ b/config/examples/stm32f103ret6/Configuration.h @@ -820,9 +820,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/tvrrug/Round2/Configuration.h b/config/examples/tvrrug/Round2/Configuration.h index cc63975c3..9ef926d87 100644 --- a/config/examples/tvrrug/Round2/Configuration.h +++ b/config/examples/tvrrug/Round2/Configuration.h @@ -813,9 +813,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3) diff --git a/config/examples/wt150/Configuration.h b/config/examples/wt150/Configuration.h index b714760c7..306c1b5b5 100644 --- a/config/examples/wt150/Configuration.h +++ b/config/examples/wt150/Configuration.h @@ -823,9 +823,10 @@ #if ENABLED(BLTOUCH) //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed - /** 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. + /** + * BLTouch V3.0 and newer smart series + * For genuine BLTouch 3.0 sensors. Clones may be confused by 3.0 command angles. YMMV. + * If the pin trigger is not detected, first try swapping the black and white wires then toggle this. */ //#define BLTOUCH_V3 #if ENABLED(BLTOUCH_V3)