From f8f83054c427cbe614bd68833c1fe6a854c06a58 Mon Sep 17 00:00:00 2001 From: IDKHTS <2811212491@qq.com> Date: Fri, 7 Jun 2024 12:16:14 +0800 Subject: [PATCH] Fix: Artisan 10w laser print at wrong z height after camera capture --- src/server/services/machine/ConnectionManager.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server/services/machine/ConnectionManager.ts b/src/server/services/machine/ConnectionManager.ts index a0b0ba3f5..cc35ba776 100644 --- a/src/server/services/machine/ConnectionManager.ts +++ b/src/server/services/machine/ConnectionManager.ts @@ -667,7 +667,7 @@ class ConnectionManager { // Fixme: multi call to set work orign coordinate // Camera Aid Background mode, force machine to work on machine coordinates (Origin = 0,0) if (background.enabled && !isRotate && !useABPosition) { - await this.channel.setAbsoluteWorkOrigin({ x: 0, y: 0, z: 0, isRotate }); + await this.channel.setAbsoluteWorkOrigin({ x: 0, y: 0, isRotate }); } }