Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGhostkeeper <rubend@tutanota.com>2020-02-07 15:40:55 +0300
committerGhostkeeper <rubend@tutanota.com>2020-02-07 15:55:24 +0300
commita168e9f8a6de70a3fd73dfedbc500095235b3a1f (patch)
tree3399cce1a3a80308df5f64f357797ee8a53b46cb /resources/definitions/anet3d_et4_x.def.json
parent050ff62344ead34c92acb87473f6cdc67e64686f (diff)
Don't use spaces in definition IDs
Use underscores. Spaces are encoded differently with the quote_plus function and also the translation system borks on these. Contributes to issue CURA-7201.
Diffstat (limited to 'resources/definitions/anet3d_et4_x.def.json')
-rw-r--r--resources/definitions/anet3d_et4_x.def.json31
1 files changed, 31 insertions, 0 deletions
diff --git a/resources/definitions/anet3d_et4_x.def.json b/resources/definitions/anet3d_et4_x.def.json
new file mode 100644
index 0000000000..0b21204dee
--- /dev/null
+++ b/resources/definitions/anet3d_et4_x.def.json
@@ -0,0 +1,31 @@
+{
+ "version": 2,
+ "name": "Anet ET4 X",
+ "inherits": "anet3d",
+ "metadata": {
+ "visible": true,
+ "machine_extruder_trains":
+ {
+ "0": "anet3d_extruder_0"
+ }
+ },
+
+ "overrides": {
+ "machine_name": { "default_value": "Anet ET4 X" },
+ "machine_width": {
+ "default_value": 220
+ },
+ "machine_depth": {
+ "default_value": 220
+ },
+ "machine_height": {
+ "default_value": 250
+ },
+ "machine_start_gcode": {
+ "default_value": "G28 ;Home\nG1 Z15.0 F2000 ;Move the platform"
+ },
+ "machine_end_gcode": {
+ "default_value": "M104 S0\nM140 S0\nG92 E80\nG1 E-80 F2000\nG28 X0 Y0\nM84"
+ }
+ }
+}