Skip to content

Commit

Permalink
Fix E0_AUTO_FAN_PIN on BOARD_CREALITY_F401RE (Ender-5 S1)
Browse files Browse the repository at this point in the history
PA1 cannot be both the hotend & hotend cooling fan pin. Official Creality Klipper configs list PC0 as the correct pin.
  • Loading branch information
thisiskeithb committed Jun 27, 2024
1 parent f76790b commit 1c35ea1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Marlin/src/pins/stm32f4/pins_CREALITY_F401.h
Original file line number Diff line number Diff line change
Expand Up @@ -111,11 +111,11 @@
#define HEATER_BED_PIN PA7 // BED_HEAT_1 FET

#define FAN0_PIN PA0 // Part cooling fan FET
//#define FAN1_PIN PE11 // Extruder fan FET
#define FAN1_PIN PC0 // Extruder fan FET
//#define FAN2_PIN PE1 // Controller fan FET

#ifndef E0_AUTO_FAN_PIN
#define E0_AUTO_FAN_PIN PA1 // FAN1_PIN
#define E0_AUTO_FAN_PIN FAN1_PIN
#endif

//
Expand Down

0 comments on commit 1c35ea1

Please sign in to comment.