diff options
author | Eddie Ehlin <eddiex@eddiex.se> | 2021-10-16 18:26:13 +0200 |
---|---|---|
committer | Eddie Ehlin <eddiex@eddiex.se> | 2021-10-16 18:26:13 +0200 |
commit | 8056e60eeeb30037febc112d734a9ba61c880614 (patch) | |
tree | 46a49d88db99aad1d9731115393f658eaadfe247 /marlinfw-skr-e3-mini-v2 | |
parent | d8c76e7ef7089cfc73c49b3548c2af2b98949c85 (diff) | |
download | 3DPrinter-CR10S-8056e60eeeb30037febc112d734a9ba61c880614.tar.gz 3DPrinter-CR10S-8056e60eeeb30037febc112d734a9ba61c880614.zip |
Added extruder fan related configuration (using FAN1_PIN as extruder fan)
Diffstat (limited to 'marlinfw-skr-e3-mini-v2')
-rw-r--r-- | marlinfw-skr-e3-mini-v2/config-2.0.9.2/Configuration_adv.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/marlinfw-skr-e3-mini-v2/config-2.0.9.2/Configuration_adv.h b/marlinfw-skr-e3-mini-v2/config-2.0.9.2/Configuration_adv.h index 5227362..fcf662b 100644 --- a/marlinfw-skr-e3-mini-v2/config-2.0.9.2/Configuration_adv.h +++ b/marlinfw-skr-e3-mini-v2/config-2.0.9.2/Configuration_adv.h @@ -498,7 +498,7 @@ * The fan turns on automatically whenever any driver is enabled and turns * off (or reduces to idle speed) shortly after drivers are turned off. */ -#define USE_CONTROLLER_FAN +//#define USE_CONTROLLER_FAN Disabled since we are using FAN1 pin for extruder fan. #if ENABLED(USE_CONTROLLER_FAN) //#define CONTROLLER_FAN_PIN -1 // Set a custom pin for the controller fan //#define CONTROLLER_FAN_USE_Z_ONLY // With this option only the Z axis is considered @@ -586,7 +586,7 @@ * Multiple extruders can be assigned to the same pin in which case * the fan will turn on when any selected extruder is above the threshold. */ -#define E0_AUTO_FAN_PIN -1 +#define E0_AUTO_FAN_PIN FAN1_PIN // Extruder fan on Fan1 pin #define E1_AUTO_FAN_PIN -1 #define E2_AUTO_FAN_PIN -1 #define E3_AUTO_FAN_PIN -1 |