mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-02-17 06:48:05 +00:00
🐛 Fix MKS Robin E3/E3D Z Stop/Probe pins (#23034)
This commit is contained in:
parent
aa2c6387e9
commit
a1c4aad147
1 changed files with 8 additions and 2 deletions
|
@ -54,8 +54,14 @@
|
|||
//
|
||||
#define X_STOP_PIN PA12
|
||||
#define Y_STOP_PIN PA11
|
||||
#define Z_MIN_PIN PC6
|
||||
#define Z_MAX_PIN PB1
|
||||
#define Z_STOP_PIN PC6
|
||||
|
||||
//
|
||||
// Z Probe
|
||||
//
|
||||
#ifndef Z_MIN_PROBE_PIN
|
||||
#define Z_MIN_PROBE_PIN PB1
|
||||
#endif
|
||||
|
||||
//
|
||||
// Steppers
|
||||
|
|
Loading…
Reference in a new issue