From e345067286e9621a28e2de9de7715961dd42cfe4 Mon Sep 17 00:00:00 2001 From: devdesk Date: Thu, 4 Dec 2025 14:40:58 +0200 Subject: [PATCH] Add plotter_disable_command parameter with default value M5 --- plotter-lod.inx | 3 ++- plotter-lod.py | 3 +++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/plotter-lod.inx b/plotter-lod.inx index abc0ac5..59afef4 100644 --- a/plotter-lod.inx +++ b/plotter-lod.inx @@ -6,7 +6,8 @@ inkex M03 - M05 + M03 + M05 3000 750 1000 diff --git a/plotter-lod.py b/plotter-lod.py index 4590798..89caa54 100644 --- a/plotter-lod.py +++ b/plotter-lod.py @@ -622,6 +622,9 @@ class LaserGcode(inkex.Effect): {"name": "--plotter-off-command", "type": str, "dest": "plotter_off_command", "default": "M05", "help": "Laser gcode end command"}, + {"name": "--plotter-disable-command", "type": str, "dest": "plotter_disable_command", + "default": "M5", "help": "Plotter disable command"}, + {"name": "--plotter-speed", "type": int, "dest": "plotter_speed", "default": 750, "help": "Laser speed (mm/min},"},