From 718fcfb870edc0606dbab6b01fa6df10b1e7834b Mon Sep 17 00:00:00 2001 From: ellensp <530024+ellensp@users.noreply.github.com> Date: Wed, 17 Dec 2025 23:37:53 +1300 Subject: [PATCH 1/2] add additional fan pins --- Marlin/src/pins/stm32f1/pins_CREALITY_V425.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Marlin/src/pins/stm32f1/pins_CREALITY_V425.h b/Marlin/src/pins/stm32f1/pins_CREALITY_V425.h index a225fe11be..ca5074fd90 100644 --- a/Marlin/src/pins/stm32f1/pins_CREALITY_V425.h +++ b/Marlin/src/pins/stm32f1/pins_CREALITY_V425.h @@ -68,6 +68,8 @@ // #define HEATER_0_PIN PA0 // HEATER1 #define HEATER_BED_PIN PA1 // HOT BED -#define FAN0_PIN PA2 // FAN +#define FAN0_PIN PA2 // FAN0 +#define FAN1_PIN PC1 // FAN1 +#define FAN2_PIN PC0 // FAN2 #include "pins_CREALITY_V4.h" From 4a24a2d47f9d42cca4ac68866a888686574a710d Mon Sep 17 00:00:00 2001 From: ellensp <530024+ellensp@users.noreply.github.com> Date: Thu, 18 Dec 2025 00:15:19 +1300 Subject: [PATCH 2/2] add LED pin --- Marlin/src/pins/stm32f1/pins_CREALITY_V425.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Marlin/src/pins/stm32f1/pins_CREALITY_V425.h b/Marlin/src/pins/stm32f1/pins_CREALITY_V425.h index ca5074fd90..42875713f1 100644 --- a/Marlin/src/pins/stm32f1/pins_CREALITY_V425.h +++ b/Marlin/src/pins/stm32f1/pins_CREALITY_V425.h @@ -72,4 +72,9 @@ #define FAN1_PIN PC1 // FAN1 #define FAN2_PIN PC0 // FAN2 +// +// Misc. Functions +// +#define LED_PIN PC14 + #include "pins_CREALITY_V4.h"