Wo extrudertemperaturgesteuerte Lüfter in Marlin aktivieren?

Um in Marlin einen Lüfter zu aktivieren, der automatisch basierend auf der Extrudertemperatur gesteuert wird (d.h. wenn der Extruder heiß ist, den Lüfter einschalten), Configuration_adv.h öffnen und nach dem Abschnitt Extruder cooling fans suchen und z.B. E0_AUTO_FAN_PIN auf den Pin setzen, der automatisch gesteuert werden soll.

Configuration_adv.h
/**
 * Extruder cooling fans
 *
 * Extruder auto fans automatically turn on when their extruders'
 * temperatures go above EXTRUDER_AUTO_FAN_TEMPERATURE.
 *
 * Your board's pins file specifies the recommended pins. Override those here
 * or set to -1 to disable completely.
 *
 * 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 PA_8
#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

Check out similar posts by category: 3D Printing, Electronics