在 Marlin 中哪里启用挤出机温度控制风扇?
为了在 Marlin 中启用根据挤出机温度自动控制的风扇(即:如果挤出机热,打开风扇),打开 Configuration_adv.h 并查找 Extruder cooling fans 部分,并将例如 E0_AUTO_FAN_PIN 设置为你想自动控制的任何引脚。
Configuration_adv.h
/**
* 挤出机冷却风扇
*
* 挤出机自动风扇在其挤出机
* 温度超过 EXTRUDER_AUTO_FAN_TEMPERATURE 时自动打开。
*
* 你的板的引脚文件指定了推荐引脚。在此覆盖它们
* 或设置为 -1 以完全禁用。
*
* 多个挤出机可以分配到同一引脚,在这种情况下
* 当任何选定的挤出机超过阈值时风扇将打开。
*/
#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 -1Check out similar posts by category:
3D Printing, Electronics
If this post helped you, please consider buying me a coffee or donating via PayPal to support research & publishing of new posts on TechOverflow