From 8375b82c2e0a6e6d99e41399c1162c89b2ab5df4 Mon Sep 17 00:00:00 2001 From: Aerospacesmith Date: Fri, 19 Jun 2015 11:45:46 -0500 Subject: [PATCH] Remove Azteeg X3 Pro conflict of Fan and Heater_1 (PR#2318) Removes a default conflict on Azteeg X3 Pro boards with the Fan and second heater (Heater_1). Change sets fan to 8th heater terminal on board. --- Marlin/pins.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Marlin/pins.h b/Marlin/pins.h index 3bd6cb385a..12165e319f 100644 --- a/Marlin/pins.h +++ b/Marlin/pins.h @@ -655,8 +655,10 @@ #define LED_PIN 13 #endif - #if MB(RAMPS_13_EFB) || MB(RAMPS_13_EFF) || MB(AZTEEG_X3) || MB(AZTEEG_X3_PRO) + #if MB(RAMPS_13_EFB) || MB(RAMPS_13_EFF) || MB(AZTEEG_X3) #define FAN_PIN 9 // (Sprinter config) + #elif MB(AZTEEG_X3_PRO) + #define FAN_PIN 11 // Last Heater Pin on board #else #define FAN_PIN 4 // IO pin. Buffer needed #endif