makerbase-mks / MKS-SGEN_L-V2

MKS SGEN_L V2.0 is powerful 32-bit 3D printer control board. The CPU is LPC1769 120MHZ, SGEN_L V2 hardware Integrated 4KB EEPROM, 5AXIS and dual Z interface, has 2 way FANs and Dc12/24V out interface, support TMC UART and SPI mode...
https://www.aliexpress.com/item/4001283346331.html?spm=a2g0o.store_home.slider_165457030.0
GNU General Public License v3.0
70 stars 28 forks source link

Parts cooling fan set up #69

Open bdelia opened 2 years ago

bdelia commented 2 years ago

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

/**

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`

furkankarayel commented 2 years ago

Have you solved your problem yet? I'm stuck with this issue