📌 Overridable probe-related pins (#23107)

x301
Keith Bennett 3 years ago committed by Scott Lahteine
parent 6e284f8823
commit 2a90d93b17

@ -70,9 +70,14 @@
// //
// Probe // Probe
// //
#define PROBE_TARE_PIN PA1 #ifndef PROBE_TARE_PIN
#define PROBE_TARE_PIN PA1
#endif
#if ENABLED(PROBE_ACTIVATION_SWITCH) #if ENABLED(PROBE_ACTIVATION_SWITCH)
#define PROBE_ACTIVATION_SWITCH_PIN PC2 // Optoswitch to Enable Z Probe #ifndef PROBE_ACTIVATION_SWITCH_PIN
#define PROBE_ACTIVATION_SWITCH_PIN PC2 // Optoswitch to Enable Z Probe
#endif
#endif #endif
// //

@ -36,7 +36,9 @@
#define FAN_PIN PA0 // FAN #define FAN_PIN PA0 // FAN
#if ENABLED(PROBE_ACTIVATION_SWITCH) #if ENABLED(PROBE_ACTIVATION_SWITCH)
#define PROBE_ACTIVATION_SWITCH_PIN PC6 // Optoswitch to Enable Z Probe #ifndef PROBE_ACTIVATION_SWITCH_PIN
#define PROBE_ACTIVATION_SWITCH_PIN PC6 // Optoswitch to Enable Z Probe
#endif
#endif #endif
#include "pins_CREALITY_V45x.h" #include "pins_CREALITY_V45x.h"

@ -36,7 +36,9 @@
#define FAN_PIN PB15 // FAN #define FAN_PIN PB15 // FAN
#if ENABLED(PROBE_ACTIVATION_SWITCH) #if ENABLED(PROBE_ACTIVATION_SWITCH)
#define PROBE_ACTIVATION_SWITCH_PIN PB2 // Optoswitch to Enable Z Probe #ifndef PROBE_ACTIVATION_SWITCH_PIN
#define PROBE_ACTIVATION_SWITCH_PIN PB2 // Optoswitch to Enable Z Probe
#endif
#endif #endif
#include "pins_CREALITY_V45x.h" #include "pins_CREALITY_V45x.h"

@ -64,7 +64,9 @@
// //
// Probe // Probe
// //
#define PROBE_TARE_PIN PA5 #ifndef PROBE_TARE_PIN
#define PROBE_TARE_PIN PA5
#endif
// //
// Steppers // Steppers

@ -136,7 +136,9 @@
// Probe enable // Probe enable
// //
#if ENABLED(PROBE_ENABLE_DISABLE) #if ENABLED(PROBE_ENABLE_DISABLE)
#define PROBE_ENABLE_PIN SERVO0_PIN #ifndef PROBE_ENABLE_PIN
#define PROBE_ENABLE_PIN SERVO0_PIN
#endif
#endif #endif
// //

Loading…
Cancel
Save