MKS-SGEN_L-V2
MKS-SGEN_L-V2 copied to clipboard
Parts cooling fan set up
Hello, I am having troubles figuring out how to set up my parts cooling fan. I have my Extruder Cooling Fan set up on FAN1_PIN. Now I am trying to set up the parts cooling fan, but I am not sure what to set below. I have the fan plugged into P1.04 and I have the parts cooling fan plugged into P2.04. Any help is appreciated. I have tried setting each COOLER_AUTO_FAN_PIN and COOLER_FAN_PIN equal to FAN_PIN but have not had luck with the parts cooling fan working yet. I know the fan is good, already tested that.
Below is the fan section of my Config_adv.config: ` #define E0_AUTO_FAN_PIN FAN1_PIN #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 E5_AUTO_FAN_PIN -1 #define E6_AUTO_FAN_PIN -1 #define E7_AUTO_FAN_PIN -1 #define CHAMBER_AUTO_FAN_PIN -1 #define COOLER_AUTO_FAN_PIN -1 #define COOLER_FAN_PIN -1
#define EXTRUDER_AUTO_FAN_TEMPERATURE 50 #define EXTRUDER_AUTO_FAN_SPEED 255 // 255 == full speed #define CHAMBER_AUTO_FAN_TEMPERATURE 30 #define CHAMBER_AUTO_FAN_SPEED 255 #define COOLER_AUTO_FAN_TEMPERATURE 18 #define COOLER_AUTO_FAN_SPEED 255
/**
- 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 FAN_PIN #define FANMUX1_PIN -1 #define FANMUX2_PIN -1
Here is my pins_MKS_SGEN_L_V2 relevant section: // // Heaters / Fans // #define HEATER_BED_PIN P2_05 #define HEATER_0_PIN P2_07 #if HAS_MULTI_HOTEND #ifndef HEATER_1_PIN #define HEATER_1_PIN P2_06 #endif #else #ifndef FAN2_PIN #define FAN2_PIN P2_06 // HE1 for FAN3 #endif #endif #ifndef FAN_PIN #define FAN_PIN P2_04 // FAN1 #endif #ifndef FAN1_PIN #define FAN1_PIN P1_04 // FAN2 #endif`
Have you solved your problem yet? I'm stuck with this issue