1
0
mirror of https://github.com/MarlinFirmware/Marlin.git synced 2024-12-01 07:42:37 +00:00

🐛 Fix MKS Robin E3 NeoPixel pin default (#23350)

This commit is contained in:
Keith Bennett 2021-12-25 19:41:01 -08:00 committed by GitHub
parent a47f559db1
commit 555c749fe2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -64,11 +64,6 @@
#define Z_MIN_PROBE_PIN PB1 #define Z_MIN_PROBE_PIN PB1
#endif #endif
// LED driving pin
#ifndef NEOPIXEL_PIN
#define NEOPIXEL_PIN PA2
#endif
// //
// Steppers // Steppers
// //
@ -245,6 +240,11 @@
#endif #endif
#endif #endif
// LED driving pin
#ifndef NEOPIXEL_PIN
#define NEOPIXEL_PIN PA2
#endif
// //
// SD Card // SD Card
// //