Browse Source

Swap Trigorilla Pro Z_MIN / MAX endstop pins (#21095)

vanilla_fb_2.0.x
ellensp 3 years ago
committed by GitHub
parent
commit
c076a7f7a2
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      Marlin/src/pins/stm32f1/pins_TRIGORILLA_PRO.h

8
Marlin/src/pins/stm32f1/pins_TRIGORILLA_PRO.h

@ -58,8 +58,12 @@
//
#define X_STOP_PIN PG10
#define Y_STOP_PIN PA12
#define Z_MAX_PIN PA14
#define Z_MIN_PIN PA13
#ifndef Z_MIN_PIN
#define Z_MIN_PIN PA14
#endif
#ifndef Z_MAX_PIN
#define Z_MAX_PIN PA13
#endif
//
// Steppers

Loading…
Cancel
Save