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.
This commit is contained in:
Jeff Kazules 2019-12-03 13:39:50 +01:00 committed by Ghostkeeper
parent 45bbb189ce
commit 726561bf30
No known key found for this signature in database
GPG Key ID: 59A4C0959592C05C

View File

@ -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],