Basic Information:
Printer Model: LDO Voron 2.4 RevD
MCU / Printerboard: Leviathan
Host / SBC: Raspberry Pi 4
klippy.log
klippy.zip (3.1 MB)
Fill out above information and in all cases attach your klippy.log file (use zip to compress it, if too big). Pasting your printer.cfg is not needed
Be sure to check our “Knowledge Base” Category first. Most relevant items, e.g. error messages, are covered there
Describe your issue:
I have been at this for days and cannot get to the bottom of the issue.
I have idle timeout configured:
gcode:
IDLE_TIMEOUT
timeout: 1800
but it never fires, manually running my macros work as expected, so I read the docs and using the API explored states.
When my print completes the state transitions is correct as standby or idle
GET ``http://voron24.local/printer/objects/query?print_stats
{
"result": {
"eventtime": 147363.244125516,
"status": {
"print_stats": {
"filename": "",
"total_duration": 0.0,
"print_duration": 0.0,
"filament_used": 0.0,
"state": "standby",
"message": "",
"info": {
"total_layer": null,
"current_layer": null
}
}
}
}
}
When I query idle_timout however it always remains ‘printing’
GET ``http://voron24.local/printer/objects/query?idle_timeout
{
"result": {
"eventtime": 147508.385373504,
"status": {
"idle_timeout": {
"state": "Printing",
"printing_time": 4582.452879657998,
"idle_timeout": 1800.0
}
}
}
}
This is true regardless of what I do, even after a complete restart or power cycle, the state is always printing.
I cannot find any hints in the documentation of what I can possible have misconfigured and I also don’t see anything useful in the logs that hinting at possible errors in my setup.
Any pointers will be much appreciated.
…