|
@@ -109,7 +109,7 @@
|
109
|
109
|
//
|
110
|
110
|
#define TEMP_0_PIN 13 // Analog Input
|
111
|
111
|
#define TEMP_1_PIN 15 // Analog Input
|
112
|
|
-#define TEMP_BED_PIN 3 // Analog Input
|
|
112
|
+#define TEMP_BED_PIN 14 // Analog Input
|
113
|
113
|
|
114
|
114
|
// SPI for Max6675 or Max31855 Thermocouple
|
115
|
115
|
#if DISABLED(SDSUPPORT)
|
|
@@ -118,22 +118,7 @@
|
118
|
118
|
#define MAX6675_SS_PIN 66 // Do not use pin 49 as this is tied to the switch inside the SD card socket to detect if there is an SD card present
|
119
|
119
|
#endif
|
120
|
120
|
|
121
|
|
-//
|
122
|
|
-// Augmentation for auto-assigning RAMPS plugs
|
123
|
|
-//
|
124
|
|
-#if DISABLED(IS_RAMPS_EEB) && DISABLED(IS_RAMPS_EEF) && DISABLED(IS_RAMPS_EFB) && DISABLED(IS_RAMPS_EFF) && DISABLED(IS_RAMPS_SF) && !PIN_EXISTS(MOSFET_D)
|
125
|
|
- #if HOTENDS > 1
|
126
|
|
- #if TEMP_SENSOR_BED
|
127
|
|
- #define IS_RAMPS_EEB
|
128
|
|
- #else
|
129
|
|
- #define IS_RAMPS_EEF
|
130
|
|
- #endif
|
131
|
|
- #elif TEMP_SENSOR_BED
|
132
|
|
- #define IS_RAMPS_EFB
|
133
|
|
- #else
|
134
|
|
- #define IS_RAMPS_EFF
|
135
|
|
- #endif
|
136
|
|
-#endif
|
|
121
|
+
|
137
|
122
|
|
138
|
123
|
//
|
139
|
124
|
// Heaters / Fans
|
|
@@ -143,8 +128,9 @@
|
143
|
128
|
#define HEATER_BED_PIN 8
|
144
|
129
|
|
145
|
130
|
#define FAN_PIN 9
|
146
|
|
-//#define FAN1_PIN 4
|
|
131
|
+#define FAN1_PIN 12
|
147
|
132
|
|
|
133
|
+#define NUM_RUNOUT_SENSORS 2
|
148
|
134
|
#define FIL_RUNOUT_PIN 23
|
149
|
135
|
#define FIL_RUNOUT2_PIN 21
|
150
|
136
|
|
|
@@ -157,6 +143,9 @@
|
157
|
143
|
#define LED_PIN 13
|
158
|
144
|
#endif
|
159
|
145
|
|
|
146
|
+#define SPINDLE_LASER_PWM_PIN 7 // MUST BE HARDWARE PWM
|
|
147
|
+#define SPINDLE_LASER_ENABLE_PIN 4 // Pin should have a pullup!
|
|
148
|
+
|
160
|
149
|
// Use the RAMPS 1.4 Analog input 5 on the AUX2 connector
|
161
|
150
|
#define FILWIDTH_PIN 5 // Analog Input
|
162
|
151
|
|