Allow FAN_PIN override, pins cleanup (#10956)

This commit is contained in:
Scott Lahteine 2018-06-07 16:46:13 -05:00 committed by GitHub
parent 55aedf036b
commit 7ba5afff01
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
63 changed files with 329 additions and 240 deletions

View File

@ -132,7 +132,9 @@
#define HEATER_0_PIN 15 // C5 #define HEATER_0_PIN 15 // C5
#define HEATER_BED_PIN 14 // C4 #define HEATER_BED_PIN 14 // C4
#define FAN_PIN 16 // C6 PWM3A #ifndef FAN_PIN
#define FAN_PIN 16 // C6 PWM3A
#endif
// //
// Misc. Functions // Misc. Functions

View File

@ -107,7 +107,9 @@
#define HEATER_3_PIN 97 // PC20 on piggy #define HEATER_3_PIN 97 // PC20 on piggy
#define HEATER_BED_PIN 69 // PA0 #define HEATER_BED_PIN 69 // PA0
#define FAN_PIN 92 // PA5 #ifndef FAN_PIN
#define FAN_PIN 92 // PA5
#endif
#define FAN1_PIN 31 // PA7 #define FAN1_PIN 31 // PA7
// //

View File

@ -133,7 +133,10 @@
// //
#define HEATER_0_PIN 13 // (extruder) #define HEATER_0_PIN 13 // (extruder)
#define HEATER_BED_PIN 12 // (bed) #define HEATER_BED_PIN 12 // (bed)
#define FAN_PIN 4
#ifndef FAN_PIN
#define FAN_PIN 4
#endif
// //
// Misc. Functions // Misc. Functions

View File

@ -148,7 +148,9 @@
// //
// Heaters / Fans // Heaters / Fans
// //
#define FAN_PIN 4 // D4 PC26 FET_PWM1 #ifndef FAN_PIN
#define FAN_PIN 4 // D4 PC26 FET_PWM1
#endif
#define FAN1_PIN 5 // D5 PC25 FET_PWM2 #define FAN1_PIN 5 // D5 PC25 FET_PWM2
#define HEATER_0_PIN 6 // D6 PC24 FET_PWM3 #define HEATER_0_PIN 6 // D6 PC24 FET_PWM3

View File

@ -82,7 +82,9 @@
// EFB // EFB
#define HEATER_0_PIN P2_04 #define HEATER_0_PIN P2_04
#define HEATER_BED_PIN P2_05 #define HEATER_BED_PIN P2_05
#define FAN_PIN P2_07 #ifndef FAN_PIN
#define FAN_PIN P2_07
#endif
#define FAN1_PIN P0_26 #define FAN1_PIN P0_26
#if ENABLED(AZSMZ_12864) #if ENABLED(AZSMZ_12864)

View File

@ -24,22 +24,29 @@
* AZTEEG_X3_PRO (Arduino Mega) pin assignments * AZTEEG_X3_PRO (Arduino Mega) pin assignments
*/ */
#ifndef __AVR_ATmega2560__
#error "Oops! Make sure you have 'Arduino Mega 2560' selected from the 'Tools -> Boards' menu."
#endif
#if HOTENDS > 5 || E_STEPPERS > 5 #if HOTENDS > 5 || E_STEPPERS > 5
#error "Azteeg X3 Pro supports up to 5 hotends / E-steppers. Comment out this line to continue." #error "Azteeg X3 Pro supports up to 5 hotends / E-steppers. Comment out this line to continue."
#endif #endif
#if ENABLED(CASE_LIGHT_ENABLE) && !PIN_EXISTS(CASE_LIGHT)
#define CASE_LIGHT_PIN 44 // Define before RAMPS pins include
#endif
#define BOARD_NAME "Azteeg X3 Pro" #define BOARD_NAME "Azteeg X3 Pro"
#include "pins_RAMPS.h" //
// RAMPS pins overrides
#ifndef __AVR_ATmega2560__ //
#error "Oops! Make sure you have 'Arduino Mega 2560' selected from the 'Tools -> Boards' menu." #if ENABLED(CASE_LIGHT_ENABLE) && !PIN_EXISTS(CASE_LIGHT)
#define CASE_LIGHT_PIN 44
#endif #endif
#ifndef FAN_PIN
#define FAN_PIN 6
#endif
#include "pins_RAMPS.h"
// DIGIPOT slave addresses // DIGIPOT slave addresses
#define DIGIPOT_I2C_ADDRESS_A 0x2C // unshifted slave address for first DIGIPOT 0x2C (0x58 <- 0x2C << 1) #define DIGIPOT_I2C_ADDRESS_A 0x2C // unshifted slave address for first DIGIPOT 0x2C (0x58 <- 0x2C << 1)
#define DIGIPOT_I2C_ADDRESS_B 0x2E // unshifted slave address for second DIGIPOT 0x2E (0x5C <- 0x2E << 1) #define DIGIPOT_I2C_ADDRESS_B 0x2E // unshifted slave address for second DIGIPOT 0x2E (0x5C <- 0x2E << 1)
@ -116,9 +123,6 @@
#define HEATER_6_PIN 6 #define HEATER_6_PIN 6
#define HEATER_7_PIN 11 #define HEATER_7_PIN 11
#undef FAN_PIN
#define FAN_PIN 6 // Part Cooling System
#ifndef CONTROLLER_FAN_PIN #ifndef CONTROLLER_FAN_PIN
#define CONTROLLER_FAN_PIN 4 // Pin used for the fan to cool motherboard (-1 to disable) #define CONTROLLER_FAN_PIN 4 // Pin used for the fan to cool motherboard (-1 to disable)
#endif #endif

View File

@ -85,7 +85,9 @@
#define HEATER_BED_PIN P2_07 #define HEATER_BED_PIN P2_07
#define HEATER_0_PIN P2_04 #define HEATER_0_PIN P2_04
#define HEATER_1_PIN P2_05 #define HEATER_1_PIN P2_05
#define FAN_PIN P0_26 #ifndef FAN_PIN
#define FAN_PIN P0_26
#endif
#define FAN1_PIN P1_22 #define FAN1_PIN P1_22
// //

View File

@ -103,7 +103,9 @@
#define HEATER_BED2_PIN -1 // BED2 #define HEATER_BED2_PIN -1 // BED2
#define HEATER_BED3_PIN -1 // BED3 #define HEATER_BED3_PIN -1 // BED3
#define FAN_PIN PB10 #ifndef FAN_PIN
#define FAN_PIN PB10
#endif
#define FAN_SOFT_PWM #define FAN_SOFT_PWM

View File

@ -82,7 +82,9 @@
// //
#define HEATER_0_PIN P2_7 #define HEATER_0_PIN P2_7
#define HEATER_BED_PIN P2_5 #define HEATER_BED_PIN P2_5
#define FAN_PIN P2_4 #ifndef FAN_PIN
#define FAN_PIN P2_4
#endif
// //
// Unused // Unused

View File

@ -115,7 +115,9 @@
#define HEATER_0_PIN 32 // A4 Extruder #define HEATER_0_PIN 32 // A4 Extruder
#define HEATER_BED_PIN 18 // E6 Bed #define HEATER_BED_PIN 18 // E6 Bed
#define FAN_PIN 31 // A3 Fan #ifndef FAN_PIN
#define FAN_PIN 31 // A3 Fan
#endif
// //
// Misc. Functions // Misc. Functions

View File

@ -125,7 +125,9 @@
// //
#define HEATER_0_PIN 27 // B7 #define HEATER_0_PIN 27 // B7
#define HEATER_BED_PIN 26 // B6 Bed #define HEATER_BED_PIN 26 // B6 Bed
#define FAN_PIN 16 // C6 Fan, PWM3A #ifndef FAN_PIN
#define FAN_PIN 16 // C6 Fan, PWM3A
#endif
// //
// Misc. Functions // Misc. Functions

View File

@ -31,6 +31,7 @@
#endif #endif
#define BOARD_NAME "Cheaptronic v2.0" #define BOARD_NAME "Cheaptronic v2.0"
// //
// Limit Switches // Limit Switches
// //
@ -80,10 +81,32 @@
// //
// Heaters / Fans // Heaters / Fans
// //
#define HEATER_0_PIN 6 #define HEATER_0_PIN 6
#define HEATER_1_PIN 7 #define HEATER_1_PIN 7
#define HEATER_2_PIN 8 #define HEATER_2_PIN 8
#define HEATER_BED_PIN 9 #define HEATER_BED_PIN 9
#ifndef FAN_PIN
#define FAN_PIN 3
#endif
#define FAN2_PIN 58 // additional fan or light control output
//
// Other board specific pins
//
#ifndef FIL_RUNOUT_PIN
#define FIL_RUNOUT_PIN 37 // board input labeled as F-DET
#endif
#define Z_MIN_PROBE_PIN 36 // additional external board input labeled as E-SENS (should be used for Z-probe)
#define LED_PIN 13
#define SPINDLE_ENABLE_PIN 4 // additional PWM pin 1 at JP1 connector - should be used for laser control too
#define EXT_2 5 // additional PWM pin 2 at JP1 connector
#define EXT_3 2 // additional PWM pin 3 at JP1 connector
#define PS_ON_PIN 45
#define KILL_PIN 46
#ifndef FILWIDTH_PIN
#define FILWIDTH_PIN 11 // shared with TEMP_3 analog input
#endif
// //
// LCD // LCD
@ -105,23 +128,3 @@
#define BTN_EN1 11 #define BTN_EN1 11
#define BTN_EN2 12 #define BTN_EN2 12
#define BTN_ENC 43 #define BTN_ENC 43
//
// Other board specific pins
//
#ifndef FIL_RUNOUT_PIN
#define FIL_RUNOUT_PIN 37 // board input labeled as F-DET
#endif
#define Z_MIN_PROBE_PIN 36 // additional external board input labeled as E-SENS (should be used for Z-probe)
#define LED_PIN 13
#define SPINDLE_ENABLE_PIN 4 // additional PWM pin 1 at JP1 connector - should be used for laser control too
#define EXT_2 5 // additional PWM pin 2 at JP1 connector
#define EXT_3 2 // additional PWM pin 3 at JP1 connector
#define FAN_PIN 3
#define FAN2_PIN 58 // additional fan or light control output
#define PS_ON_PIN 45
#define KILL_PIN 46
#ifndef FILWIDTH_PIN
#define FILWIDTH_PIN 11 // shared with TEMP_3 analog input
#endif

View File

@ -102,7 +102,9 @@
#define HEATER_BED2_PIN -1 // BED2 #define HEATER_BED2_PIN -1 // BED2
#define HEATER_BED3_PIN -1 // BED3 #define HEATER_BED3_PIN -1 // BED3
#define FAN_PIN PG14 // MAIN BOARD FAN #ifndef FAN_PIN
#define FAN_PIN PG14 // MAIN BOARD FAN
#endif
#define FAN_SOFT_PWM #define FAN_SOFT_PWM

View File

@ -65,7 +65,9 @@
#define HEATER_3_PIN 46 #define HEATER_3_PIN 46
#define HEATER_BED_PIN 2 #define HEATER_BED_PIN 2
//#define FAN_PIN 7 // common PWM pin for all tools #ifndef FAN_PIN
//#define FAN_PIN 7 // common PWM pin for all tools
#endif
#define ORIG_E0_AUTO_FAN_PIN 7 #define ORIG_E0_AUTO_FAN_PIN 7
#define ORIG_E1_AUTO_FAN_PIN 7 #define ORIG_E1_AUTO_FAN_PIN 7

View File

@ -65,7 +65,9 @@
#define HEATER_3_PIN 3 #define HEATER_3_PIN 3
#define HEATER_BED_PIN 24 #define HEATER_BED_PIN 24
#define FAN_PIN 5 // 5 is PWMtool3 -> 7 is common PWM pin for all tools #ifndef FAN_PIN
#define FAN_PIN 5 // 5 is PWMtool3 -> 7 is common PWM pin for all tools
#endif
#define ORIG_E0_AUTO_FAN_PIN 7 #define ORIG_E0_AUTO_FAN_PIN 7
#define ORIG_E1_AUTO_FAN_PIN 7 #define ORIG_E1_AUTO_FAN_PIN 7

View File

@ -98,12 +98,15 @@
// //
#define HEATER_BED_PIN P2_05 #define HEATER_BED_PIN P2_05
#define HEATER_0_PIN P2_07 // FET 1 #define HEATER_0_PIN P2_07 // FET 1
#define AUTO_FAN_PIN P2_04 // FET 4 #ifndef FAN_PIN
#define FAN_PIN P2_06 // ReMix FET 4, Mini FET 3 #define FAN_PIN P2_06 // ReMix FET 4, Mini FET 3
#endif
// //
// Auto fans // Auto fans
// //
#define AUTO_FAN_PIN P2_04 // FET 4
#define ORIG_E0_AUTO_FAN_PIN AUTO_FAN_PIN #define ORIG_E0_AUTO_FAN_PIN AUTO_FAN_PIN
#define ORIG_E1_AUTO_FAN_PIN AUTO_FAN_PIN #define ORIG_E1_AUTO_FAN_PIN AUTO_FAN_PIN
#define ORIG_E2_AUTO_FAN_PIN AUTO_FAN_PIN #define ORIG_E2_AUTO_FAN_PIN AUTO_FAN_PIN

View File

@ -115,17 +115,19 @@
#define HEATER_BED_PIN P2_05 #define HEATER_BED_PIN P2_05
#define HEATER_0_PIN P2_07 // FET 1 #define HEATER_0_PIN P2_07 // FET 1
#define HEATER_1_PIN P1_23 // FET 2 #define HEATER_1_PIN P1_23 // FET 2
#if HOTENDS == 3 #define HEATER_2_PIN P1_22 // FET 3
#define HEATER_2_PIN P1_22 // FET 3 #ifndef FAN_PIN
#define AUTO_FAN_PIN P1_18 // FET 6 #define FAN_PIN P2_06 // ReMix FET 4, Mini FET 3
#else
#define AUTO_FAN_PIN P1_22 // FET 3
#endif #endif
#define FAN_PIN P2_06 // ReMix FET 4, Mini FET 3
// //
// Auto fans // Auto fans
// //
#if HOTENDS == 3
#define AUTO_FAN_PIN P1_18 // FET 6
#else
#define AUTO_FAN_PIN P1_22 // FET 3
#endif
#define ORIG_E0_AUTO_FAN_PIN AUTO_FAN_PIN #define ORIG_E0_AUTO_FAN_PIN AUTO_FAN_PIN
#define ORIG_E1_AUTO_FAN_PIN AUTO_FAN_PIN #define ORIG_E1_AUTO_FAN_PIN AUTO_FAN_PIN
#define ORIG_E2_AUTO_FAN_PIN AUTO_FAN_PIN #define ORIG_E2_AUTO_FAN_PIN AUTO_FAN_PIN

View File

@ -97,7 +97,9 @@
#define HEATER_1_PIN 8 // HOTEND1 MOSFET #define HEATER_1_PIN 8 // HOTEND1 MOSFET
#define HEATER_BED_PIN 39 // BED MOSFET #define HEATER_BED_PIN 39 // BED MOSFET
#define FAN_PIN 11 // FAN1 header on board - PRINT FAN #ifndef FAN_PIN
#define FAN_PIN 11 // FAN1 header on board - PRINT FAN
#endif
#define FAN1_PIN 9 // FAN2 header on board - CONTROLLER FAN #define FAN1_PIN 9 // FAN2 header on board - CONTROLLER FAN
#define FAN2_PIN 12 // FAN3 header on board - EXTRUDER0 FAN #define FAN2_PIN 12 // FAN3 header on board - EXTRUDER0 FAN

View File

@ -88,7 +88,9 @@
#define HEATER_0_PIN 13 // HOTEND0 MOSFET #define HEATER_0_PIN 13 // HOTEND0 MOSFET
#define HEATER_BED_PIN 7 // BED MOSFET #define HEATER_BED_PIN 7 // BED MOSFET
#define FAN_PIN 11 // FAN1 header on board - PRINT FAN #ifndef FAN_PIN
#define FAN_PIN 11 // FAN1 header on board - PRINT FAN
#endif
#define FAN1_PIN 12 // FAN2 header on board - CONTROLLER FAN #define FAN1_PIN 12 // FAN2 header on board - CONTROLLER FAN
#define FAN2_PIN 9 // FAN3 header on board - EXTRUDER0 FAN #define FAN2_PIN 9 // FAN3 header on board - EXTRUDER0 FAN
//#define FAN3_PIN 8 // FAN0 4-pin header on board //#define FAN3_PIN 8 // FAN0 4-pin header on board

View File

@ -117,7 +117,9 @@
#define HEATER_0_PIN 3 #define HEATER_0_PIN 3
#define HEATER_BED_PIN 4 #define HEATER_BED_PIN 4
#define FAN_PIN 8 #ifndef FAN_PIN
#define FAN_PIN 8
#endif
#define FAN1_PIN 6 #define FAN1_PIN 6
// //

View File

@ -134,7 +134,9 @@
#define HEATER_0_PIN 3 #define HEATER_0_PIN 3
#define HEATER_BED_PIN 4 #define HEATER_BED_PIN 4
#define FAN_PIN 8 #ifndef FAN_PIN
#define FAN_PIN 8
#endif
#define FAN1_PIN 6 #define FAN1_PIN 6
// //

View File

@ -90,7 +90,9 @@
#define HEATER_2_PIN 17 // 12V PWM3 #define HEATER_2_PIN 17 // 12V PWM3
#define HEATER_BED_PIN 44 // DOUBLE 12V PWM #define HEATER_BED_PIN 44 // DOUBLE 12V PWM
#define FAN_PIN 16 // 5V PWM #ifndef FAN_PIN
#define FAN_PIN 16 // 5V PWM
#endif
// //
// Misc. Functions // Misc. Functions

View File

@ -112,8 +112,8 @@
#define HEATER_0_PIN 4 #define HEATER_0_PIN 4
#define HEATER_BED_PIN 3 #define HEATER_BED_PIN 3
#if GEN7_VERSION < 13 // Gen7 v1.3 removed the fan pin #if !defined(FAN_PIN) && GEN7_VERSION < 13 // Gen7 v1.3 removed the fan pin
#define FAN_PIN 31 #define FAN_PIN 31
#endif #endif
// //

View File

@ -81,7 +81,9 @@
#define HEATER_0_PIN 2 #define HEATER_0_PIN 2
#define HEATER_1_PIN 3 #define HEATER_1_PIN 3
#define HEATER_BED_PIN 4 #define HEATER_BED_PIN 4
#define FAN_PIN 7 #ifndef FAN_PIN
#define FAN_PIN 7
#endif
// //
// Misc. Functions // Misc. Functions

View File

@ -85,10 +85,11 @@
#define HEATER_0_PIN PB4 // EXTRUDER 1 #define HEATER_0_PIN PB4 // EXTRUDER 1
#define HEATER_1_PIN PB5 // EXTRUDER 2 #define HEATER_1_PIN PB5 // EXTRUDER 2
#define HEATER_2_PIN PB0 // EXTRUDER 3 #define HEATER_2_PIN PB0 // EXTRUDER 3
#define HEATER_BED_PIN PB1 // BED #define HEATER_BED_PIN PB1 // BED
#define FAN_PIN PB7 // (Sprinter config) #ifndef FAN_PIN
#define FAN_PIN PB7 // (Sprinter config)
#endif
#define FAN1_PIN PB8 #define FAN1_PIN PB8
#define FAN2_PIN PB9 #define FAN2_PIN PB9

View File

@ -76,13 +76,16 @@
#define HEATER_0_PIN PB6 // HOTEND0 MOSFET #define HEATER_0_PIN PB6 // HOTEND0 MOSFET
#define HEATER_BED_PIN PB7 // BED MOSFET #define HEATER_BED_PIN PB7 // BED MOSFET
// FAN_PIN is commented out here because the M200 example
// Configuration_adv.h does NOT override E0_AUTO_FAN_PIN.
#ifndef FAN_PIN
//#define FAN_PIN PB8 // FAN1 header on board - PRINT FAN
#endif
#define FAN1_PIN PB3 // FAN2 header on board - CONTROLLER FAN
#define FAN2_PIN -1 // FAN3 header on board - EXTRUDER0 FAN
// This board has only the controller fan and the extruder fan // This board has only the controller fan and the extruder fan
// If someone hacks to put a direct power fan on the controller, PB3 could // If someone hacks to put a direct power fan on the controller, PB3 could
// be used as a separate print cooling fan. // be used as a separate print cooling fan.
#define ORIG_E0_AUTO_FAN_PIN PB8 #define ORIG_E0_AUTO_FAN_PIN PB8
// FAN_PIN is commented out here because the M200 example
// Configuration_adv.h does NOT override E0_AUTO_FAN_PIN.
//#define FAN_PIN PB8 // FAN1 header on board - PRINT FAN
#define FAN1_PIN PB3 // FAN2 header on board - CONTROLLER FAN
#define FAN2_PIN -1 // FAN3 header on board - EXTRUDER0 FAN

View File

@ -112,7 +112,9 @@
#define HEATER_1_PIN 34 #define HEATER_1_PIN 34
#define HEATER_BED_PIN 28 #define HEATER_BED_PIN 28
#define FAN_PIN 39 #ifndef FAN_PIN
#define FAN_PIN 39
#endif
#define FAN1_PIN 35 #define FAN1_PIN 35
#define FAN2_PIN 36 #define FAN2_PIN 36

View File

@ -87,7 +87,9 @@
#define HEATER_1_PIN 8 #define HEATER_1_PIN 8
#define HEATER_BED_PIN 10 #define HEATER_BED_PIN 10
#define FAN_PIN 7 // IO pin. Buffer needed #ifndef FAN_PIN
#define FAN_PIN 7 // IO pin. Buffer needed
#endif
// //
// Misc. Functions // Misc. Functions

View File

@ -101,7 +101,9 @@
#define HEATER_1_PIN 8 #define HEATER_1_PIN 8
#define HEATER_BED_PIN 10 #define HEATER_BED_PIN 10
#define FAN_PIN 7 #ifndef FAN_PIN
#define FAN_PIN 7
#endif
#define FAN1_PIN 6 #define FAN1_PIN 6
// //

View File

@ -118,7 +118,9 @@
#define HEATER_2_PIN 8 #define HEATER_2_PIN 8
#define HEATER_BED_PIN 10 #define HEATER_BED_PIN 10
#define FAN_PIN 6 #ifndef FAN_PIN
#define FAN_PIN 6
#endif
#define FAN1_PIN 7 #define FAN1_PIN 7
// //

View File

@ -172,23 +172,24 @@
#define HEATER_0_PIN MOSFET_A_PIN #define HEATER_0_PIN MOSFET_A_PIN
#if ENABLED(IS_EFB) // Hotend, Fan, Bed #if ENABLED(IS_EFB) // Hotend, Fan, Bed
#define FAN_PIN MOSFET_B_PIN #define HEATER_BED_PIN MOSFET_C_PIN
#define HEATER_BED_PIN MOSFET_C_PIN
#elif ENABLED(IS_EEF) // Hotend, Hotend, Fan #elif ENABLED(IS_EEF) // Hotend, Hotend, Fan
#define HEATER_1_PIN MOSFET_B_PIN #define HEATER_1_PIN MOSFET_B_PIN
#define FAN_PIN MOSFET_C_PIN
#elif ENABLED(IS_EEB) // Hotend, Hotend, Bed #elif ENABLED(IS_EEB) // Hotend, Hotend, Bed
#define HEATER_1_PIN MOSFET_B_PIN #define HEATER_1_PIN MOSFET_B_PIN
#define HEATER_BED_PIN MOSFET_C_PIN #define HEATER_BED_PIN MOSFET_C_PIN
#elif ENABLED(IS_EFF) // Hotend, Fan, Fan #elif ENABLED(IS_EFF) // Hotend, Fan, Fan
#define FAN_PIN MOSFET_B_PIN #define FAN1_PIN MOSFET_C_PIN
#define FAN1_PIN MOSFET_C_PIN
#elif ENABLED(IS_SF) // Spindle, Fan
#define FAN_PIN MOSFET_C_PIN
#endif #endif
#ifndef FAN_PIN #ifndef FAN_PIN
#define FAN_PIN MOSFET_D_PIN #if ENABLED(IS_EFB) || ENABLED(IS_EFF) // Hotend, Fan, Bed or Hotend, Fan, Fan
#define FAN_PIN MOSFET_B_PIN
#elif ENABLED(IS_EEF) || ENABLED(IS_SF) // Hotend, Hotend, Fan or Spindle, Fan
#define FAN_PIN MOSFET_C_PIN
#else
#define FAN_PIN MOSFET_D_PIN
#endif
#endif #endif
// //

View File

@ -106,7 +106,9 @@
#endif #endif
#define HEATER_BED_PIN 4 #define HEATER_BED_PIN 4
#define FAN_PIN 8 #ifndef FAN_PIN
#define FAN_PIN 8
#endif
#define FAN1_PIN 6 #define FAN1_PIN 6
// //

View File

@ -87,7 +87,9 @@
#define HEATER_1_PIN 8 // EXTRUDER 2 #define HEATER_1_PIN 8 // EXTRUDER 2
#define HEATER_BED_PIN 3 // BED #define HEATER_BED_PIN 3 // BED
#define FAN_PIN 9 #ifndef FAN_PIN
#define FAN_PIN 9
#endif
// //
// Misc. Functions // Misc. Functions

View File

@ -36,11 +36,10 @@
// unused // unused
/* /*
#define PIN_P0_27 P0_27 #define PIN_P0_27 P0_27
#define PIN_P0_28 P0_28 #define PIN_P0_28 P0_28
*/ */
// //
// Servo pin // Servo pin
// //
@ -86,25 +85,20 @@
// Temperature Sensors // Temperature Sensors
// 3.3V max when defined as an analog input // 3.3V max when defined as an analog input
// //
#define TEMP_BED_PIN 0 // A0 (TH1) #define TEMP_BED_PIN 0 // A0 (TH1)
#define TEMP_0_PIN 1 // A1 (TH2) #define TEMP_0_PIN 1 // A1 (TH2)
#define TEMP_1_PIN 2 // A2 (TH3) #define TEMP_1_PIN 2 // A2 (TH3)
#define TEMP_2_PIN 3 // A3 (TH4) #define TEMP_2_PIN 3 // A3 (TH4)
// //
// Heaters / Fans // Heaters / Fans
// //
#define HEATER_BED_PIN P2_05 #define HEATER_BED_PIN P2_05
#define HEATER_0_PIN P2_07 #define HEATER_0_PIN P2_07
#define HEATER_1_PIN P2_06 #define HEATER_1_PIN P2_06
#define FAN_PIN P2_04 #ifndef FAN_PIN
#define FAN_PIN P2_04
#endif
#define PS_ON_PIN P0_25
// //
// Connector J7 // Connector J7
@ -132,13 +126,18 @@
// //
// Prusa i3 MK2 Multi Material Multiplexer Support // Prusa i3 MK2 Multi Material Multiplexer Support
// //
#if ENABLED(MK2_MULTIPLEXER) #if ENABLED(MK2_MULTIPLEXER)
#define E_MUX0_PIN P1_23 // J8-3 #define E_MUX0_PIN P1_23 // J8-3
#define E_MUX1_PIN P2_12 // J8-4 #define E_MUX1_PIN P2_12 // J8-4
#define E_MUX2_PIN P2_11 // J8-5 #define E_MUX2_PIN P2_11 // J8-5
#endif #endif
//
// Misc. Functions
//
#define PS_ON_PIN P0_25
#define LPC_SOFTWARE_SPI // MKS_SBASE needs a software SPI because the
// selected pins are not on a hardware SPI controller
/** /**
* Smart LCD adapter * Smart LCD adapter
@ -180,12 +179,6 @@
#define ENET_TXD0 P1_00 // J12-11 #define ENET_TXD0 P1_00 // J12-11
#define ENET_TXD1 P1_01 // J12-12 #define ENET_TXD1 P1_01 // J12-12
//
// Misc. Functions
//
#define LPC_SOFTWARE_SPI // MKS_SBASE needs a software SPI because the
// selected pins are not on a hardware SPI controller
// A custom cable is needed. See the README file in the // A custom cable is needed. See the README file in the
// Marlin\src\config\examples\Mks\Sbase directory // Marlin\src\config\examples\Mks\Sbase directory

View File

@ -129,7 +129,9 @@
#define HEATER_0_PIN 3 // DONE PWM on RIGHT connector #define HEATER_0_PIN 3 // DONE PWM on RIGHT connector
#define HEATER_BED_PIN 4 #define HEATER_BED_PIN 4
#define FAN_PIN 14 // PWM on MIDDLE connector #ifndef FAN_PIN
#define FAN_PIN 14 // PWM on MIDDLE connector
#endif
// //
// Misc. Functions // Misc. Functions

View File

@ -125,7 +125,9 @@
// //
#define HEATER_0_PIN 4 #define HEATER_0_PIN 4
#define FAN_PIN 3 #ifndef FAN_PIN
#define FAN_PIN 3
#endif
// //
// Misc. Functions // Misc. Functions

View File

@ -110,8 +110,9 @@
#define HEATER_2_PIN 45 // F7 #define HEATER_2_PIN 45 // F7
#define HEATER_BED_PIN 14 // C4 PWM3C #define HEATER_BED_PIN 14 // C4 PWM3C
#ifndef FAN_PIN
#define FAN_PIN 16 // C6 PWM3A #define FAN_PIN 16 // C6 PWM3A
#endif
// //
// Misc. Functions // Misc. Functions

View File

@ -190,7 +190,9 @@
#endif #endif
#endif #endif
#define FAN_PIN 16 // C6 PWM3A #ifndef FAN_PIN
#define FAN_PIN 16 // C6 PWM3A
#endif
// //
// LCD / Controller // LCD / Controller

View File

@ -149,7 +149,9 @@
#define HEATER_2_PIN 11 #define HEATER_2_PIN 11
#define HEATER_BED_PIN 7 // BED #define HEATER_BED_PIN 7 // BED
#define FAN_PIN 9 #ifndef FAN_PIN
#define FAN_PIN 9
#endif
#define FAN1_PIN 8 #define FAN1_PIN 8
// //

View File

@ -127,7 +127,9 @@
#define HEATER_2_PIN 6 #define HEATER_2_PIN 6
#define HEATER_BED_PIN 3 #define HEATER_BED_PIN 3
#define FAN_PIN 8 #ifndef FAN_PIN
#define FAN_PIN 8
#endif
#define FAN1_PIN 6 #define FAN1_PIN 6
#define FAN2_PIN 2 #define FAN2_PIN 2

View File

@ -231,46 +231,48 @@
// Heaters / Fans // Heaters / Fans
// //
#ifndef MOSFET_D_PIN #ifndef MOSFET_D_PIN
#define MOSFET_D_PIN -1 #define MOSFET_D_PIN -1
#endif #endif
#ifndef RAMPS_D8_PIN #ifndef RAMPS_D8_PIN
#define RAMPS_D8_PIN 8 #define RAMPS_D8_PIN 8
#endif #endif
#ifndef RAMPS_D9_PIN #ifndef RAMPS_D9_PIN
#define RAMPS_D9_PIN 9 #define RAMPS_D9_PIN 9
#endif #endif
#ifndef RAMPS_D10_PIN #ifndef RAMPS_D10_PIN
#define RAMPS_D10_PIN 10 #define RAMPS_D10_PIN 10
#endif #endif
#define HEATER_0_PIN RAMPS_D10_PIN #define HEATER_0_PIN RAMPS_D10_PIN
#if ENABLED(IS_RAMPS_EFB) // Hotend, Fan, Bed #if ENABLED(IS_RAMPS_EFB) // Hotend, Fan, Bed
#define FAN_PIN RAMPS_D9_PIN #define HEATER_BED_PIN RAMPS_D8_PIN
#define HEATER_BED_PIN RAMPS_D8_PIN
#elif ENABLED(IS_RAMPS_EEF) // Hotend, Hotend, Fan #elif ENABLED(IS_RAMPS_EEF) // Hotend, Hotend, Fan
#define HEATER_1_PIN RAMPS_D9_PIN #define HEATER_1_PIN RAMPS_D9_PIN
#define FAN_PIN RAMPS_D8_PIN
#elif ENABLED(IS_RAMPS_EEB) // Hotend, Hotend, Bed #elif ENABLED(IS_RAMPS_EEB) // Hotend, Hotend, Bed
#define HEATER_1_PIN RAMPS_D9_PIN #define HEATER_1_PIN RAMPS_D9_PIN
#define HEATER_BED_PIN RAMPS_D8_PIN #define HEATER_BED_PIN RAMPS_D8_PIN
#elif ENABLED(IS_RAMPS_EFF) // Hotend, Fan, Fan #elif ENABLED(IS_RAMPS_EFF) // Hotend, Fan, Fan
#define FAN_PIN RAMPS_D9_PIN #define FAN1_PIN RAMPS_D8_PIN
#define FAN1_PIN RAMPS_D8_PIN #elif DISABLED(IS_RAMPS_SF) // Not Spindle, Fan (i.e., "EFBF" or "EFBE")
#elif ENABLED(IS_RAMPS_SF) // Spindle, Fan #define HEATER_BED_PIN RAMPS_D8_PIN
#define FAN_PIN RAMPS_D8_PIN
#else // Non-specific are "EFB" (i.e., "EFBF" or "EFBE")
#define FAN_PIN RAMPS_D9_PIN
#define HEATER_BED_PIN RAMPS_D8_PIN
#if HOTENDS == 1 #if HOTENDS == 1
#define FAN1_PIN MOSFET_D_PIN #define FAN1_PIN MOSFET_D_PIN
#else #else
#define HEATER_1_PIN MOSFET_D_PIN #define HEATER_1_PIN MOSFET_D_PIN
#endif #endif
#endif #endif
#ifndef FAN_PIN #ifndef FAN_PIN
#define FAN_PIN 4 // IO pin. Buffer needed #if ENABLED(IS_RAMPS_EFB) || ENABLED(IS_RAMPS_EFF) // Hotend, Fan, Bed or Hotend, Fan, Fan
#define FAN_PIN RAMPS_D9_PIN
#elif ENABLED(IS_RAMPS_EEF) || ENABLED(IS_RAMPS_SF) // Hotend, Hotend, Fan or Spindle, Fan
#define FAN_PIN RAMPS_D8_PIN
#elif ENABLED(IS_RAMPS_EEB) // Hotend, Hotend, Bed
#define FAN_PIN 4 // IO pin. Buffer needed
#else // Non-specific are "EFB" (i.e., "EFBF" or "EFBE")
#define FAN_PIN RAMPS_D9_PIN
#endif
#endif #endif
// //

View File

@ -127,7 +127,9 @@
#define HEATER_2_PIN 11 #define HEATER_2_PIN 11
#define HEATER_BED_PIN 8 #define HEATER_BED_PIN 8
#define FAN_PIN 12 #ifndef FAN_PIN
#define FAN_PIN 12
#endif
#define CONTROLLER_FAN_PIN -1 #define CONTROLLER_FAN_PIN -1
// //

View File

@ -88,11 +88,15 @@
#if ENABLED(RAMPS_V_1_0) #if ENABLED(RAMPS_V_1_0)
#define HEATER_0_PIN 12 #define HEATER_0_PIN 12
#define HEATER_BED_PIN -1 #define HEATER_BED_PIN -1
#define FAN_PIN 11 #ifndef FAN_PIN
#define FAN_PIN 11
#endif
#else // RAMPS_V_1_1 or RAMPS_V_1_2 #else // RAMPS_V_1_1 or RAMPS_V_1_2
#define HEATER_0_PIN 10 #define HEATER_0_PIN 10
#define HEATER_BED_PIN 8 #define HEATER_BED_PIN 8
#define FAN_PIN 9 #ifndef FAN_PIN
#define FAN_PIN 9
#endif
#endif #endif
// //

View File

@ -150,46 +150,48 @@
// Heaters / Fans // Heaters / Fans
// //
#ifndef MOSFET_D_PIN #ifndef MOSFET_D_PIN
#define MOSFET_D_PIN -1 #define MOSFET_D_PIN -1
#endif #endif
#ifndef RAMPS_D8_PIN #ifndef RAMPS_D8_PIN
#define RAMPS_D8_PIN P2_07 // (8) #define RAMPS_D8_PIN P2_07 // (8)
#endif #endif
#ifndef RAMPS_D9_PIN #ifndef RAMPS_D9_PIN
#define RAMPS_D9_PIN P2_04 // (9) #define RAMPS_D9_PIN P2_04 // (9)
#endif #endif
#ifndef RAMPS_D10_PIN #ifndef RAMPS_D10_PIN
#define RAMPS_D10_PIN P2_05 // (10) #define RAMPS_D10_PIN P2_05 // (10)
#endif #endif
#define HEATER_0_PIN RAMPS_D10_PIN #define HEATER_0_PIN RAMPS_D10_PIN
#if ENABLED(IS_RAMPS_EFB) // Hotend, Fan, Bed #if ENABLED(IS_RAMPS_EFB) // Hotend, Fan, Bed
#define FAN_PIN RAMPS_D9_PIN #define HEATER_BED_PIN RAMPS_D8_PIN
#define HEATER_BED_PIN RAMPS_D8_PIN
#elif ENABLED(IS_RAMPS_EEF) // Hotend, Hotend, Fan #elif ENABLED(IS_RAMPS_EEF) // Hotend, Hotend, Fan
#define HEATER_1_PIN RAMPS_D9_PIN #define HEATER_1_PIN RAMPS_D9_PIN
#define FAN_PIN RAMPS_D8_PIN
#elif ENABLED(IS_RAMPS_EEB) // Hotend, Hotend, Bed #elif ENABLED(IS_RAMPS_EEB) // Hotend, Hotend, Bed
#define HEATER_1_PIN RAMPS_D9_PIN #define HEATER_1_PIN RAMPS_D9_PIN
#define HEATER_BED_PIN RAMPS_D8_PIN #define HEATER_BED_PIN RAMPS_D8_PIN
#elif ENABLED(IS_RAMPS_EFF) // Hotend, Fan, Fan #elif ENABLED(IS_RAMPS_EFF) // Hotend, Fan, Fan
#define FAN_PIN RAMPS_D9_PIN #define FAN1_PIN RAMPS_D8_PIN
#define FAN1_PIN RAMPS_D8_PIN #elif DISABLED(IS_RAMPS_SF) // Not Spindle, Fan (i.e., "EFBF" or "EFBE")
#elif ENABLED(IS_RAMPS_SF) // Spindle, Fan #define HEATER_BED_PIN RAMPS_D8_PIN
#define FAN_PIN RAMPS_D8_PIN
#else // Non-specific are "EFB" (i.e., "EFBF" or "EFBE")
#define FAN_PIN RAMPS_D9_PIN
#define HEATER_BED_PIN RAMPS_D8_PIN
#if HOTENDS == 1 #if HOTENDS == 1
#define FAN1_PIN MOSFET_D_PIN #define FAN1_PIN MOSFET_D_PIN
#else #else
#define HEATER_1_PIN MOSFET_D_PIN #define HEATER_1_PIN MOSFET_D_PIN
#endif #endif
#endif #endif
#ifndef FAN_PIN #ifndef FAN_PIN
#define FAN_PIN P1_18 // (4) IO pin. Buffer needed #if ENABLED(IS_RAMPS_EFB) || ENABLED(IS_RAMPS_EFF) // Hotend, Fan, Bed or Hotend, Fan, Fan
#define FAN_PIN RAMPS_D9_PIN
#elif ENABLED(IS_RAMPS_EEF) || ENABLED(IS_RAMPS_SF) // Hotend, Hotend, Fan or Spindle, Fan
#define FAN_PIN RAMPS_D8_PIN
#elif ENABLED(IS_RAMPS_EEB) // Hotend, Hotend, Bed
#define FAN_PIN P1_18 // (4) IO pin. Buffer needed
#else // Non-specific are "EFB" (i.e., "EFBF" or "EFBE")
#define FAN_PIN RAMPS_D9_PIN
#endif
#endif #endif
// //

View File

@ -85,8 +85,9 @@
#undef HEATER_BED_PIN #undef HEATER_BED_PIN
#define HEATER_BED_PIN 10 #define HEATER_BED_PIN 10
#undef FAN_PIN #ifndef FAN_PIN
#define FAN_PIN 8 // Same as RAMPS_13_EEF #define FAN_PIN 8 // Same as RAMPS_13_EEF
#endif
// //
// Misc. Functions // Misc. Functions

View File

@ -124,7 +124,9 @@
#define HEATER_3_PIN 8 #define HEATER_3_PIN 8
#define HEATER_BED_PIN 9 #define HEATER_BED_PIN 9
#define FAN_PIN 7 #ifndef FAN_PIN
#define FAN_PIN 7
#endif
#define FAN1_PIN 8 #define FAN1_PIN 8
// //

View File

@ -122,7 +122,9 @@
#define HEATER_2_PIN 11 #define HEATER_2_PIN 11
#define HEATER_BED_PIN 7 // BED H1 #define HEATER_BED_PIN 7 // BED H1
#define FAN_PIN 9 #ifndef FAN_PIN
#define FAN_PIN 9
#endif
#define FAN1_PIN 8 #define FAN1_PIN 8
#define CONTROLLER_FAN_PIN -1 #define CONTROLLER_FAN_PIN -1

View File

@ -100,7 +100,7 @@
#define Z_ENABLE_PIN 26 #define Z_ENABLE_PIN 26
#define E0_ENABLE_PIN 14 #define E0_ENABLE_PIN 14
#if ENABLED(LCD_I2C_PANELOLU2) #if !defined(FAN_PIN) && ENABLED(LCD_I2C_PANELOLU2)
#define FAN_PIN 4 // Uses Transistor1 (PWM) on Panelolu2's Sanguino Adapter Board to drive the fan #define FAN_PIN 4 // Uses Transistor1 (PWM) on Panelolu2's Sanguino Adapter Board to drive the fan
#endif #endif
@ -114,7 +114,7 @@
#endif #endif
#if MB(AZTEEG_X1) || MB(STB_11) || ENABLED(IS_MELZI) #if !defined(FAN_PIN) && (MB(AZTEEG_X1) || MB(STB_11) || ENABLED(IS_MELZI))
#define FAN_PIN 4 // Works for Panelolu2 too #define FAN_PIN 4 // Works for Panelolu2 too
#endif #endif

View File

@ -114,7 +114,9 @@
#define HEATER_0_PIN 15 // C5 PWM3B - Extruder #define HEATER_0_PIN 15 // C5 PWM3B - Extruder
#define HEATER_BED_PIN 14 // C4 PWM3C - Bed #define HEATER_BED_PIN 14 // C4 PWM3C - Bed
#define FAN_PIN 16 // C6 PWM3A #ifndef FAN_PIN
#define FAN_PIN 16 // C6 PWM3A
#endif
// //
// Misc. Functions // Misc. Functions

View File

@ -106,7 +106,9 @@
#define HEATER_1_PIN 7 #define HEATER_1_PIN 7
#define HEATER_BED_PIN 3 #define HEATER_BED_PIN 3
#define FAN_PIN 8 #ifndef FAN_PIN
#define FAN_PIN 8
#endif
#define FAN1_PIN 6 #define FAN1_PIN 6
#define FAN2_PIN 2 #define FAN2_PIN 2

View File

@ -86,7 +86,9 @@
#define HEATER_BED2_PIN P2_04 #define HEATER_BED2_PIN P2_04
#define HEATER_0_PIN P2_07 #define HEATER_0_PIN P2_07
#define HEATER_1_PIN P2_06 #define HEATER_1_PIN P2_06
#define FAN_PIN P1_24 #ifndef FAN_PIN
#define FAN_PIN P1_24
#endif
#define FAN1_PIN P1_26 #define FAN1_PIN P1_26
// //

View File

@ -98,12 +98,13 @@
#define HEATER_0_PIN 4 #define HEATER_0_PIN 4
#define HEATER_BED_PIN 3 #define HEATER_BED_PIN 3
#ifndef FAN_PIN
#if GEN7_VERSION >= 13 #if GEN7_VERSION >= 13
// Gen7 v1.3 removed the fan pin // Gen7 v1.3 removed the fan pin
#define FAN_PIN -1 #define FAN_PIN -1
#else #else
#define FAN_PIN 31 #define FAN_PIN 31
#endif
#endif #endif
// //

View File

@ -56,7 +56,9 @@
#define FIL_RUNOUT_PIN 34 // X_MAX unless overridden #define FIL_RUNOUT_PIN 34 // X_MAX unless overridden
#endif #endif
#define FAN_PIN 5 #ifndef FAN_PIN
#define FAN_PIN 5
#endif
#define HEATER_0_PIN 7 #define HEATER_0_PIN 7

View File

@ -34,34 +34,30 @@
// Ignore temp readings during develpment. // Ignore temp readings during develpment.
#define BOGUS_TEMPERATURE_FAILSAFE_OVERRIDE #define BOGUS_TEMPERATURE_FAILSAFE_OVERRIDE
//
// Limit Switches
//
#define U_MIN_PIN -1
#define V_MIN_PIN -1
#define W_MIN_PIN -1
#define X_STOP_PIN PB3
#define Y_STOP_PIN PB4
#define Z_STOP_PIN PB5
// //
// Steppers // Steppers
// //
#define X_STEP_PIN PC0 #define X_STEP_PIN PC0
#define X_DIR_PIN PC1 #define X_DIR_PIN PC1
#define X_ENABLE_PIN PA8 #define X_ENABLE_PIN PA8
#define X_MIN_PIN PB3
#define X_MAX_PIN -1
#define Y_STEP_PIN PC2 #define Y_STEP_PIN PC2
#define Y_DIR_PIN PC3 #define Y_DIR_PIN PC3
#define Y_ENABLE_PIN PA8 #define Y_ENABLE_PIN PA8
#define Y_MIN_PIN -1
#define Y_MAX_PIN PB4
#define Z_STEP_PIN PC4 #define Z_STEP_PIN PC4
#define Z_DIR_PIN PC5 #define Z_DIR_PIN PC5
#define Z_ENABLE_PIN PA8 #define Z_ENABLE_PIN PA8
#define Z_MIN_PIN -1
#define Z_MAX_PIN PB5
#define Y2_STEP_PIN -1
#define Y2_DIR_PIN -1
#define Y2_ENABLE_PIN -1
#define Z2_STEP_PIN -1
#define Z2_DIR_PIN -1
#define Z2_ENABLE_PIN -1
#define E0_STEP_PIN PC6 #define E0_STEP_PIN PC6
#define E0_DIR_PIN PC7 #define E0_DIR_PIN PC7
@ -82,25 +78,16 @@
// //
// Misc. Functions // Misc. Functions
// //
#define SDPOWER -1
#define SDSS PA4 #define SDSS PA4
#define LED_PIN PD2 #define LED_PIN PD2
#define PS_ON_PIN -1
#define KILL_PIN -1
// //
// Heaters / Fans // Heaters / Fans
// //
#define HEATER_0_PIN PB0 // EXTRUDER 1 #define HEATER_0_PIN PB0 // EXTRUDER 1
#define HEATER_1_PIN PB1 #define HEATER_1_PIN PB1
#define HEATER_2_PIN -1
#define HEATER_BED_PIN PA3 // BED #define HEATER_BED_PIN PA3 // BED
#define HEATER_BED2_PIN -1 // BED2
#define HEATER_BED3_PIN -1 // BED3
#define FAN_PIN -1 // (Sprinter config)
// //
// Temperature Sensors // Temperature Sensors
@ -108,7 +95,6 @@
#define TEMP_BED_PIN PA0 // ANALOG NUMBERING #define TEMP_BED_PIN PA0 // ANALOG NUMBERING
#define TEMP_0_PIN PA1 // ANALOG NUMBERING #define TEMP_0_PIN PA1 // ANALOG NUMBERING
#define TEMP_1_PIN PA2 // ANALOG NUMBERING #define TEMP_1_PIN PA2 // ANALOG NUMBERING
#define TEMP_2_PIN -1 // ANALOG NUMBERING
// //
// LCD Pins // LCD Pins
@ -276,7 +262,3 @@
#endif // NEWPANEL #endif // NEWPANEL
#endif // ULTRA_LCD #endif // ULTRA_LCD
#define U_MIN_PIN -1
#define V_MIN_PIN -1
#define W_MIN_PIN -1

View File

@ -115,7 +115,9 @@
#define HEATER_1_PIN PA2 #define HEATER_1_PIN PA2
#define HEATER_BED_PIN PA0 #define HEATER_BED_PIN PA0
#define FAN_PIN PC6 #ifndef FAN_PIN
#define FAN_PIN PC6
#endif
#define FAN1_PIN PC7 #define FAN1_PIN PC7
#define FAN2_PIN PC8 #define FAN2_PIN PC8

View File

@ -37,34 +37,30 @@
// Ignore temp readings during develpment. // Ignore temp readings during develpment.
#define BOGUS_TEMPERATURE_FAILSAFE_OVERRIDE #define BOGUS_TEMPERATURE_FAILSAFE_OVERRIDE
//
// Limit Switches
//
#define U_MIN_PIN -1
#define V_MIN_PIN -1
#define W_MIN_PIN -1
#define X_STOP_PIN PD0
#define Y_STOP_PIN PD1
#define Z_STOP_PIN PD4
// //
// Steppers // Steppers
// //
#define X_STEP_PIN PE1 #define X_STEP_PIN PE1
#define X_DIR_PIN PE0 #define X_DIR_PIN PE0
#define X_ENABLE_PIN PC0 #define X_ENABLE_PIN PC0
#define X_MIN_PIN PD0
#define X_MAX_PIN -1
#define Y_STEP_PIN PE3 #define Y_STEP_PIN PE3
#define Y_DIR_PIN PE2 #define Y_DIR_PIN PE2
#define Y_ENABLE_PIN PC1 #define Y_ENABLE_PIN PC1
#define Y_MIN_PIN PD1
#define Y_MAX_PIN
#define Z_STEP_PIN PE5 #define Z_STEP_PIN PE5
#define Z_DIR_PIN PE4 #define Z_DIR_PIN PE4
#define Z_ENABLE_PIN PC2 #define Z_ENABLE_PIN PC2
#define Z_MIN_PIN PD4
#define Z_MAX_PIN -1
#define Y2_STEP_PIN -1
#define Y2_DIR_PIN -1
#define Y2_ENABLE_PIN -1
#define Z2_STEP_PIN -1
#define Z2_DIR_PIN -1
#define Z2_ENABLE_PIN -1
#define E0_STEP_PIN PE7 #define E0_STEP_PIN PE7
#define E0_DIR_PIN PE6 #define E0_DIR_PIN PE6
@ -81,25 +77,22 @@
// //
// Misc. Functions // Misc. Functions
// //
//#define SDPOWER -1
#define SDSS PA15 #define SDSS PA15
#define LED_PIN PB2 #define LED_PIN PB2
//#define PS_ON_PIN -1
//#define KILL_PIN -1
// //
// Heaters / Fans // Heaters / Fans
// //
#define HEATER_0_PIN PD12 // EXTRUDER 1 #define HEATER_0_PIN PD12 // EXTRUDER 1
//#define HEATER_1_PIN PD13 //#define HEATER_1_PIN PD13
//#define HEATER_2_PIN -1
#define HEATER_BED_PIN PB9 // BED #define HEATER_BED_PIN PB9 // BED
//#define HEATER_BED2_PIN -1 // BED2 //#define HEATER_BED2_PIN -1 // BED2
//#define HEATER_BED3_PIN -1 // BED3 //#define HEATER_BED3_PIN -1 // BED3
#define FAN_PIN PD14 #ifndef FAN_PIN
#define FAN_PIN PD14
#endif
#define FAN1_PIN PD13 #define FAN1_PIN PD13
#define FAN_SOFT_PWM #define FAN_SOFT_PWM
@ -114,8 +107,8 @@
// Laser control // Laser control
#if ENABLED(SPINDLE_LASER_ENABLE) #if ENABLED(SPINDLE_LASER_ENABLE)
#define SPINDLE_LASER_PWM_PIN PB8 #define SPINDLE_LASER_PWM_PIN PB8
#define SPINDLE_LASER_ENABLE_PIN PD5 #define SPINDLE_LASER_ENABLE_PIN PD5
#endif #endif
// //
@ -285,7 +278,3 @@
#endif // NEWPANEL #endif // NEWPANEL
#endif // ULTRA_LCD #endif // ULTRA_LCD
#define U_MIN_PIN -1
#define V_MIN_PIN -1
#define W_MIN_PIN -1

View File

@ -149,7 +149,9 @@
// //
#define HEATER_0_PIN 15 // C5 PWM3B Extruder #define HEATER_0_PIN 15 // C5 PWM3B Extruder
#define HEATER_BED_PIN 14 // C4 PWM3C #define HEATER_BED_PIN 14 // C4 PWM3C
#define FAN_PIN 16 // C6 PWM3A Fan #ifndef FAN_PIN
#define FAN_PIN 16 // C6 PWM3A Fan
#endif
// //
// Misc. Functions // Misc. Functions

View File

@ -79,6 +79,16 @@ D8 HEATER_BED_PIN CS1 RX4 A12 31 | 46 * * 47 | 34 A15 PWM
*/ */
//
// Limit Switches
//
#define X_STOP_PIN 24
#define Y_STOP_PIN 26
#define Z_STOP_PIN 28
//
// Steppers
//
#define X_STEP_PIN 22 #define X_STEP_PIN 22
#define X_DIR_PIN 21 #define X_DIR_PIN 21
#define X_ENABLE_PIN 39 #define X_ENABLE_PIN 39
@ -102,11 +112,9 @@ D8 HEATER_BED_PIN CS1 RX4 A12 31 | 46 * * 47 | 34 A15 PWM
#define HEATER_0_PIN 30 #define HEATER_0_PIN 30
#define HEATER_1_PIN 36 #define HEATER_1_PIN 36
#define HEATER_BED_PIN 31 #define HEATER_BED_PIN 31
#define FAN_PIN 2 #ifndef FAN_PIN
#define FAN_PIN 2
#define X_STOP_PIN 24 #endif
#define Y_STOP_PIN 26
#define Z_STOP_PIN 28
#define TEMP_0_PIN 2 // Extruder / Analog pin numbering: 2 => A2 #define TEMP_0_PIN 2 // Extruder / Analog pin numbering: 2 => A2
#define TEMP_1_PIN 0 #define TEMP_1_PIN 0

View File

@ -127,7 +127,9 @@
#define HEATER_0_PIN 15 // C5 PWM3B - Extruder #define HEATER_0_PIN 15 // C5 PWM3B - Extruder
#define HEATER_BED_PIN 14 // C4 PWM3C #define HEATER_BED_PIN 14 // C4 PWM3C
#define FAN_PIN 16 // C6 PWM3A #ifndef FAN_PIN
#define FAN_PIN 16 // C6 PWM3A
#endif
// //
// Misc. Functions // Misc. Functions

View File

@ -125,7 +125,9 @@
#define HEATER_1_PIN PD14 #define HEATER_1_PIN PD14
#define HEATER_BED_PIN PF6 #define HEATER_BED_PIN PF6
#define FAN_PIN PD13 #ifndef FAN_PIN
#define FAN_PIN PD13
#endif
#define FAN1_PIN PA0 #define FAN1_PIN PA0
#define FAN2_PIN PA1 #define FAN2_PIN PA1

View File

@ -93,7 +93,9 @@
#define HEATER_1_PIN 3 #define HEATER_1_PIN 3
#define HEATER_BED_PIN 4 #define HEATER_BED_PIN 4
#define FAN_PIN 7 #ifndef FAN_PIN
#define FAN_PIN 7
#endif
// //
// Misc. Functions // Misc. Functions

View File

@ -99,7 +99,9 @@
#define HEATER_1_PIN 3 #define HEATER_1_PIN 3
#define HEATER_BED_PIN 4 #define HEATER_BED_PIN 4
#define FAN_PIN 7 #ifndef FAN_PIN
#define FAN_PIN 7
#endif
// //
// Misc. Functions // Misc. Functions

View File

@ -100,7 +100,9 @@
#define HEATER_3_PIN 9 #define HEATER_3_PIN 9
#define HEATER_BED_PIN 2 #define HEATER_BED_PIN 2
#define FAN_PIN 6 #ifndef FAN_PIN
#define FAN_PIN 6
#endif
#define FAN2_PIN 5 #define FAN2_PIN 5
// //