You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First of all thank you for the firmware, I use it on my MK3S it's great everything is well configured.
I did not want to change the fan of mine because ultimately it is completely compatible with the SKR 1.4 TURBO.
To be able to use it, I replaced in "pins_BTT_SKR_common.h" the value #define FAN_PIN P2_03 by #define FAN_PIN P1_24.
I actually use the PIN PWM of NEOPIXEL and it works perfectly.
Connect the red wire to pin P1_24, the black to the GND and the yellow remains unused.
The text was updated successfully, but these errors were encountered:
Taking PIN PWM for controlling a fan might not be a good idea, this pin is not driven by a MOSFET, but an 74LVC1G125, which is rated for 50mA and 250mW. It is meant as a BUS Driver, which makes sense for the Neopixel data.
Also, at one point, I will install NeoPixels, so I'll use FAN0 adapted to 5V as well as the E1 (as I am only using extruder E0), for the extruder cooling so:
I will do the following:
Both fans will be hooked up for their positive wire to +5V (from 5V or NPWR or a separate voltage regulator, making power for the fans)
Negative wire for part cooling fan: Pin1 of FAN0, this is pwm controled by FAN_PWM, which is pin 70 or P2.3/PWM1.4
Negative wire for hotend cooling fan: Pin2 of E1, this is pwm controlled by HE1_PWM, which is pin 69 or P2.4/PWM1.5
The positive wire is not taken from the sockets, as the other pins in these connectors or connected to VBB=24V (Pin2 of FAN0 and pin1 of E1).
There is no need to "redefine" any pins, as in pins_BTT_SKR_common.h, pin P2_04 is already defined as FAN1_PIN when you only use one hotend... Also P2.03 for FAN0, but this is less surprising. Clearly extruder1 is meant to be used as fan driver for system with one heated extruder.
Hello,
First of all thank you for the firmware, I use it on my MK3S it's great everything is well configured.
I did not want to change the fan of mine because ultimately it is completely compatible with the SKR 1.4 TURBO.
To be able to use it, I replaced in "pins_BTT_SKR_common.h" the value #define FAN_PIN P2_03 by #define FAN_PIN P1_24.
I actually use the PIN PWM of NEOPIXEL and it works perfectly.
Connect the red wire to pin P1_24, the black to the GND and the yellow remains unused.
The text was updated successfully, but these errors were encountered: