From 726561bf309616107ad874d4e508b3a3ec9e5701 Mon Sep 17 00:00:00 2001 From: Jeff Kazules Date: Tue, 3 Dec 2019 13:39:50 +0100 Subject: [PATCH] Increase printer size and add disallowed areas With the stock firmware of the Ender 3, the size of the original printer was wrong, causing the model to land in a different place on the build plate. This led people to believe that the printer could take bigger prints. However it couldn't; it was just not allowing to print all the way down to the coordinate origin at 0,0. This makes the printer bigger but also adds disallowed areas so that you can't print anything near 0,0. Fixes #6267. --- resources/definitions/creality_ender3.def.json | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/resources/definitions/creality_ender3.def.json b/resources/definitions/creality_ender3.def.json index 645be52bc8..e0b651deea 100644 --- a/resources/definitions/creality_ender3.def.json +++ b/resources/definitions/creality_ender3.def.json @@ -9,9 +9,14 @@ }, "overrides": { "machine_name": { "default_value": "Creality Ender-3" }, - "machine_width": { "default_value": 220 }, - "machine_depth": { "default_value": 220 }, + "machine_width": { "default_value": 235 }, + "machine_depth": { "default_value": 235 }, "machine_height": { "default_value": 250 }, + "machine_disallowed_areas": { + "default_value": [ + [[-117.5, 117.5], [-117.5, 108], [117.5, 108], [117.5, 117.5]], + [[-117.5, -108], [-117.5, -117.5], [117.5, -117.5], [117.5, -108]] + ]}, "machine_head_polygon": { "default_value": [ [-1, 1], [-1, -1],