Creality3DPrinting / CR10-V2

The CR-10 V2 is Creality's newest addition to the tremendously popular CR-10 series
17 stars 6 forks source link

BLTouch Pins File #2

Open rigg77 opened 4 years ago

rigg77 commented 4 years ago

Recommend adding lines to the pins_RAMPS.h to swap Z_MIN and Z_MAX pins to allow more simply activating BLTouch by uncommenting two lines in Configuration.h (#define Z_PROBE_USES_Z_MIN_PIN and #define BLTOUCH)

#ifdef BLTOUCH
  #ifndef Z_MIN_PIN
    #define Z_MIN_PIN                         19
    #define Z_MAX_PIN                         18
  #endif
#endif

Edit: Corrected my sloppy code.