|
Bigtree Tech SKR 1.3 Fan configuration October 28, 2019 01:16AM |
Registered: 6 years ago Posts: 19 |
|
Re: Bigtree Tech SKR 1.3 Fan configuration October 28, 2019 03:20AM |
Admin Registered: 14 years ago Posts: 7,289 |
#if PIN_EXISTS(FAN3) REPORT_NAME_DIGITAL(__LINE__, FAN3_PIN) #endifchnage it to
#if PIN_EXISTS(FAN3) REPORT_NAME_DIGITAL(__LINE__, FAN3_PIN) #endif #if PIN_EXISTS(FANMUX0) REPORT_NAME_DIGITAL(__LINE__, FANMUX0_PIN) #endif
SENDING:M43 P126 PIN: 1.26 FANMUX0_PIN Output = 0
|
Re: Bigtree Tech SKR 1.3 Fan configuration October 28, 2019 08:06AM |
Registered: 6 years ago Posts: 19 |
|
Re: Bigtree Tech SKR 1.3 Fan configuration October 28, 2019 09:04AM |
Admin Registered: 14 years ago Posts: 7,289 |
//
// Heaters / Fans
//
#ifndef HEATER_0_PIN
#define HEATER_0_PIN P2_07 //yes do this
#endif
#if HOTENDS == 1 //not in your case, so ignore this and do the else
#ifndef FAN1_PIN
#define FAN1_PIN P2_04
#endif
#else //this else is run.
#ifndef HEATER_1_PIN
#define HEATER_1_PIN P2_04
#endif
#endif
#ifndef FAN_PIN
#define FAN_PIN P2_03 //yes do this
#endif
#ifndef HEATER_BED_PIN
#define HEATER_BED_PIN P2_05 //yest do this
#endif
add after this#ifndef FAN1_PIN #define FAN1_PIN P1_28 #endif
|
Re: Bigtree Tech SKR 1.3 Fan configuration October 28, 2019 10:50AM |
Registered: 6 years ago Posts: 19 |
R in a dual extruder set up with a part cooling fan, you need to move the part cooling fan to the CNC fan pin and add two additional MOSFETS OR use the same signal pin for both fans and reduce some of the wiring and additional boards and not consume a PIN.#define E0_AUTO_FAN_PIN P1_26 //-1 #define E1_AUTO_FAN_PIN P1_28 //-1
// Heaters / Fans // #define HEATER_0_PIN P2_07 #if HOTENDS == 1 #define FAN1_PIN P2_04 #else #define HEATER_1_PIN P2_04 #endif #define FAN_PIN P2_03 #define HEATER_BED_PIN P2_05