Filament runout detection pausing at start of sprint

I'm running a Mellow Filguard Filament detector. Like the title says it's pausing the print at the start of a print. When I extrude a bit of filament I see the sensor and jam sensor both turn to "detected". But if I don't do this they are initially marked as empty and when the print starts they are still empty and it pauses the print. pressing resume won't help in that case I have to disable the sensors for the print to actually start and continue. I set it up on my config in the following way: [filament_switch_sensor toolhead_filament_sensor_t0] pause_on_runout: False event_delay: 0.1 switch_pin: ^!toolboard_t0:PA0 runout_gcode: _ON_TOOLHEAD_FILAMENT_SENSOR_RUNOUT TOOLHEAD=0 insert_gcode: _ON_TOOLHEAD_FILAMENT_SENSOR_INSERT TOOLHEAD=0 [filament_motion_sensor toolhead_filament_clog_t0] switch_pin: ^!toolboard_t0:PA1 detection_length: 3.0 extruder: extruder # extruder for T0, extruder1 for T1 pause_on_runout: False event_delay: 3.0 pause_delay: 0.5 runout_gcode: _ON_TOOLHEAD_FILAMENT_SENSOR_CLOG TOOLHEAD=0 insert_gcode: [gcode_macro T0] variable_enable_insert_detection: True # enables the insert detection variable_enable_runout_detection: True # enables the runout detection variable_enable_clog_detection: True # enables the clog detection variable_unload_after_runout: True # unload filament after runout has been detected variable_resume_after_insert: True # resumes the print after inserting new filament variable_filament_grabbing_speed: 1 # filament grabbing speed in mm/s variable_filament_grabbing_length: 5 # filament grabbing length in mm variable_purge_after_load: 30 # purge x mm after the filament has been loaded to the nozzle tip variable_purge_before_unload: 0 # purge x mm before the filament unloads
12 Replies
mhermans
mhermansOP5w ago
Filament Guard Button Infeed Function [gcode_button filament_load] pin: ^!toolboard_t0:PA2 release_gcode: {% if (printer.print_stats.state == "printing") %} _ON_TOOLHEAD_FILAMENT_SENSOR_CLOG TOOLHEAD=0 {% else %} _ON_FILAMENT_SENSOR_BUTTON_PRESSED TOOLHEAD=0 {% endif %} press_gcode: anyone?
TheTik
TheTik5w ago
I don't think this is a ratos issue, just a config issue. See this post https://discord.com/channels/582187371529764864/1346189427331960872 for a similar issue and resolution.
mhermans
mhermansOP5w ago
@TheTik the post you linked to had issues with the inputs that where being used. That's not my issue unfortunately. The filament gets recognized without problems but when the printer first starts and already has filament loaded it marks it as empty
MDFPereira
MDFPereira5w ago
Can you share debug.zip and a gcode you already tried to print?
mhermans
mhermansOP5w ago
@MDFPereira sorry i'm still kinda new to klipper. how do I get the debug zip?
MDFPereira
MDFPereira5w ago
On configurator, left bottom.
mhermans
mhermansOP5w ago
@MDFPereira here are both files you asked about. if there is anything else that would be needed to figure this out please let me know
MDFPereira
MDFPereira5w ago
No. I will take a look later as soon as I can
mhermans
mhermansOP5w ago
awesome thanks
miklschmidt
miklschmidt5w ago
according to the mellow docs the detection_length is 2, not 3
mhermans
mhermansOP5w ago
I had it at 2 previously but same issue was happening. Tried upping it to see if it would help. They also suggest that in the manual i believe. In case of false positives or false false i guess
miklschmidt
miklschmidt5w ago
Fair enough, i would double check your wiring and if the switch triggers correctly in that case (bust out the multimeter). disable the motion sensor for now you can use RATOS_ECHO MSG="filament present" and RATOS_ECHO MSG="filament missing" in the runout and insert gcode sections to get console messages when the conditions are triggered by the configured pin.

Did you find this page helpful?