From c778a0b1c9c55443ad3a0b2f9334eb7cea7fea49 Mon Sep 17 00:00:00 2001 From: macocha Date: Tue, 15 Jul 2025 17:51:50 +0000 Subject: [PATCH] fan_tach_monitor.cfg modified - 07/15/2025 - 05:51:47 PM --- printer_data/config/macros/fan_tach_monitor.cfg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/printer_data/config/macros/fan_tach_monitor.cfg b/printer_data/config/macros/fan_tach_monitor.cfg index 51f95a0..29f05d8 100644 --- a/printer_data/config/macros/fan_tach_monitor.cfg +++ b/printer_data/config/macros/fan_tach_monitor.cfg @@ -19,7 +19,7 @@ gcode: {% if (he_target >= fan_on_temp) and (rpm < min_rpm) and (he_temp >= fan_on_temp) %} SET_GCODE_VARIABLE MACRO=HOTEND_FAN_CHECK VARIABLE=he_stop_count VALUE={he_stop_count + 1} - RESPOND PREFIX="HOTEND FAN CHECK:" MSG="Fan stoppage detected ({he_stop_count+1}/{max_consecutive_stops})." + RESPOND PREFIX="HOTEND FAN CHECK:" MSG="Hotend fan stoppage detected ({he_stop_count+1}/{max_consecutive_stops})." {% if printer["gcode_macro HOTEND_FAN_CHECK"].he_stop_count|int >= max_consecutive_stops-1 %} M400 FAN_STOPPAGE_ROUTINE @@ -35,7 +35,7 @@ gcode: # If not already paused {% if printer['pause_resume'].is_paused|int == 0 %} M117 !!FAN STOPPAGE!! - M118 FAN STOPPAGE DETECTED. PAUSING... + RESPOND PREFIX="FAN CHECK:" MSG="Fan stoppage detected. Pausing print." PAUSE # Turn off the hotend. # !! Don't forget to turn your hotend back on before resume. !!