mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-02-18 07:10:58 +00:00
🐛 Fix BLTouch, Runout pins for Ender 2P v2.4 S4 (#27520)
This commit is contained in:
parent
9e96b89856
commit
25b9bb35ab
1 changed files with 4 additions and 4 deletions
|
@ -75,7 +75,7 @@
|
|||
// Servos
|
||||
//
|
||||
#ifndef SERVO0_PIN
|
||||
#define SERVO0_PIN PB0 // BLTouch OUT *
|
||||
#define SERVO0_PIN PB1
|
||||
#endif
|
||||
|
||||
//
|
||||
|
@ -83,17 +83,17 @@
|
|||
//
|
||||
#define X_STOP_PIN PA5
|
||||
#define Y_STOP_PIN PA6
|
||||
#define Z_STOP_PIN PB0 // BLTOUCH *
|
||||
#define Z_STOP_PIN PB0
|
||||
|
||||
#ifndef Z_MIN_PROBE_PIN
|
||||
#define Z_MIN_PROBE_PIN PB1 // BLTouch IN *
|
||||
#define Z_MIN_PROBE_PIN PB2
|
||||
#endif
|
||||
|
||||
//
|
||||
// Filament Runout Sensor
|
||||
//
|
||||
#ifndef FIL_RUNOUT_PIN
|
||||
#define FIL_RUNOUT_PIN PC15 // "Pulled-high" *
|
||||
#define FIL_RUNOUT_PIN PA4 // "Pulled-high" *
|
||||
#endif
|
||||
|
||||
//
|
||||
|
|
Loading…
Reference in a new issue