How to permanently move PART COOLING FAN to pin 6 (MKS GE 1.4 second servo header) January 26, 2019 02:27AM |
Registered: 5 years ago Posts: 5 |
Re: How to permanently move PART COOLING FAN to pin 6 (MKS GE 1.4 second servo header) January 26, 2019 03:00AM |
Admin Registered: 13 years ago Posts: 7,148 |
Re: How to permanently move PART COOLING FAN to pin 6 (MKS GE 1.4 second servo header) January 26, 2019 04:35AM |
Registered: 5 years ago Posts: 5 |
// // Heaters / Fans // // Power outputs EFBF or EFBE #define MOSFET_D_PIN 7
#define E0_AUTO_FAN_PIN 9 #define E1_AUTO_FAN_PIN -1 #define E2_AUTO_FAN_PIN -1 #define E3_AUTO_FAN_PIN -1 #define E4_AUTO_FAN_PIN -1 #define CHAMBER_AUTO_FAN_PIN -1 #define EXTRUDER_AUTO_FAN_TEMPERATURE 50 #define EXTRUDER_AUTO_FAN_SPEED 255 // == full speed /** * Part-Cooling Fan Multiplexer * * This feature allows you to digitally multiplex the fan output. * The multiplexer is automatically switched at tool-change. * Set FANMUX[012]_PINs below for up to 2, 4, or 8 multiplexed fans. */ #define FANMUX0_PIN 6 #define FANMUX1_PIN -1 #define FANMUX2_PIN -1
Re: How to permanently move PART COOLING FAN to pin 6 (MKS GE 1.4 second servo header) January 26, 2019 05:34AM |
Admin Registered: 13 years ago Posts: 7,148 |
#elif DISABLED(IS_RAMPS_SF) // Not Spindle, Fan (i.e., "EFBF" or "EFBE") #define HEATER_BED_PIN RAMPS_D8_PIN #if HOTENDS == 1 #define FAN1_PIN MOSFET_D_PIN #else #define HEATER_1_PIN MOSFET_D_PIN #endif #endif
#elif DISABLED(IS_RAMPS_SF) // Not Spindle, Fan (i.e., "EFBF" or "EFBE") #define HEATER_BED_PIN RAMPS_D8_PIN #define FAN1_PIN 6 #define HEATER_1_PIN MOSFET_D_PIN #endif
Re: How to permanently move PART COOLING FAN to pin 6 (MKS GE 1.4 second servo header) January 26, 2019 06:41AM |
Registered: 5 years ago Posts: 5 |
Quote
Dust
Firstly did you check with a single hotend or dual?
Quote
Dust
I dont know what #define FANMUX0_PIN 6 is for... I would set it back to -1
#include "pins_RAMPS.h" #undef FAN_PIN #undef FAN1_PIN #define FAN1_PIN 6