Move servos to the top in pins_MEGACONTROLLER.h
This commit is contained in:
parent
90f8ddfc1e
commit
932f1c109e
|
@ -9,6 +9,20 @@
|
||||||
#if EXTRUDERS > 2
|
#if EXTRUDERS > 2
|
||||||
#error Mega Controller supports up to 2 extruders. Comment this line to keep going.
|
#error Mega Controller supports up to 2 extruders. Comment this line to keep going.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef NUM_SERVOS
|
||||||
|
#define SERVO0_PIN 30
|
||||||
|
#if NUM_SERVOS > 1
|
||||||
|
#define SERVO1_PIN 31
|
||||||
|
#if NUM_SERVOS > 2
|
||||||
|
#define SERVO2_PIN 32
|
||||||
|
#if NUM_SERVOS > 3
|
||||||
|
#define SERVO3_PIN 33
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
#endif // NUM_SERVOS
|
||||||
|
|
||||||
#define X_STEP_PIN 62//A8
|
#define X_STEP_PIN 62//A8
|
||||||
#define X_DIR_PIN 63//A9
|
#define X_DIR_PIN 63//A9
|
||||||
#define X_ENABLE_PIN 61//A7
|
#define X_ENABLE_PIN 61//A7
|
||||||
|
@ -74,20 +88,6 @@
|
||||||
#define TEMP_BED_PIN 1 // ANALOG NUMBERING
|
#define TEMP_BED_PIN 1 // ANALOG NUMBERING
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef NUM_SERVOS
|
|
||||||
#define SERVO0_PIN 30
|
|
||||||
|
|
||||||
#if NUM_SERVOS > 1
|
|
||||||
#define SERVO1_PIN 31
|
|
||||||
#if NUM_SERVOS > 2
|
|
||||||
#define SERVO2_PIN 32
|
|
||||||
#if NUM_SERVOS > 3
|
|
||||||
#define SERVO3_PIN 33
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
#endif// NUM_SERVOS
|
|
||||||
|
|
||||||
#ifdef MINIPANEL
|
#ifdef MINIPANEL
|
||||||
#define BEEPER 46
|
#define BEEPER 46
|
||||||
// Pins for DOGM SPI LCD Support
|
// Pins for DOGM SPI LCD Support
|
||||||
|
|
Loading…
Reference in a new issue