mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-15 07:45:56 +08:00
Fixed mistakes in the definitions
CURA-1278
This commit is contained in:
parent
884f2a7757
commit
f66f0658d9
@ -12,12 +12,13 @@
|
|||||||
"platform": "bq_hephestos_platform.stl"
|
"platform": "bq_hephestos_platform.stl"
|
||||||
},
|
},
|
||||||
|
|
||||||
|
"overrides": {
|
||||||
"settings": {
|
"settings": {
|
||||||
"machine_start_gcode": {
|
"machine_start_gcode": {
|
||||||
"value": "; -- START GCODE --\nG21 ;set units to millimetres\nG90 ;set to absolute positioning\nM106 S0 ;set fan speed to zero (turned off)\nG28 X0 Y0 ;move to the X/Y origin (Home)\nG28 Z0 ;move to the Z origin (Home)\nG1 Z15.0 F1200 ;move Z to position 15.0 mm\nG92 E0 ;zero the extruded length\nG1 E20 F200 ;extrude 20mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F7200 ;set feedrate to 120 mm/sec\n; -- end of START GCODE --"
|
"default_value": "; -- START GCODE --\nG21 ;set units to millimetres\nG90 ;set to absolute positioning\nM106 S0 ;set fan speed to zero (turned off)\nG28 X0 Y0 ;move to the X/Y origin (Home)\nG28 Z0 ;move to the Z origin (Home)\nG1 Z15.0 F1200 ;move Z to position 15.0 mm\nG92 E0 ;zero the extruded length\nG1 E20 F200 ;extrude 20mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F7200 ;set feedrate to 120 mm/sec\n; -- end of START GCODE --"
|
||||||
},
|
},
|
||||||
"machine_end_gcode": {
|
"machine_end_gcode": {
|
||||||
"value": "; -- END GCODE --\nM104 S0 ;set extruder temperature to zero (turned off)\nG91 ;set to relative positioning\nG1 E-20 F300 ;retract the filament a bit to release some of the pressure\nG1 Z10 ;move extruder up 10 mm\nG90 ;set to absolute positioning\nG1 X0 Y180 F1200 ;expose the platform\nM84 ;turn off steppers\n; -- end of END GCODE --"
|
"default_value": "; -- END GCODE --\nM104 S0 ;set extruder temperature to zero (turned off)\nG91 ;set to relative positioning\nG1 E-20 F300 ;retract the filament a bit to release some of the pressure\nG1 Z10 ;move extruder up 10 mm\nG90 ;set to absolute positioning\nG1 X0 Y180 F1200 ;expose the platform\nM84 ;turn off steppers\n; -- end of END GCODE --"
|
||||||
},
|
},
|
||||||
"machine_width": {
|
"machine_width": {
|
||||||
"value": 215
|
"value": 215
|
||||||
@ -38,7 +39,11 @@
|
|||||||
"value": "RepRap"
|
"value": "RepRap"
|
||||||
},
|
},
|
||||||
"machine_platform_offset": {
|
"machine_platform_offset": {
|
||||||
"value": [0, -82, 0]
|
"value": [
|
||||||
|
0,
|
||||||
|
-82,
|
||||||
|
0
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"layer_height": {
|
"layer_height": {
|
||||||
"value": 0.2
|
"value": 0.2
|
||||||
@ -86,4 +91,5 @@
|
|||||||
"value": true
|
"value": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
@ -14,14 +14,14 @@
|
|||||||
"author": "BQ",
|
"author": "BQ",
|
||||||
"platform": "bq_hephestos_2_platform.stl",
|
"platform": "bq_hephestos_2_platform.stl",
|
||||||
"file_formats": "text/x-gcode",
|
"file_formats": "text/x-gcode",
|
||||||
"inherits": "fdmprinter.json",
|
|
||||||
|
|
||||||
|
"overrides": {
|
||||||
"settings": {
|
"settings": {
|
||||||
"machine_start_gcode": {
|
"machine_start_gcode": {
|
||||||
"value": "; -- START GCODE --\nM800 ; Custom GCODE to fire start print procedure\n; -- end of START GCODE --"
|
"default_value": "; -- START GCODE --\nM800 ; Custom GCODE to fire start print procedure\n; -- end of START GCODE --"
|
||||||
},
|
},
|
||||||
"machine_end_gcode": {
|
"machine_end_gcode": {
|
||||||
"value": "; -- END GCODE --\nM801 ; Custom GCODE to fire end print procedure\n; -- end of END GCODE --"
|
"default_value": "; -- END GCODE --\nM801 ; Custom GCODE to fire end print procedure\n; -- end of END GCODE --"
|
||||||
},
|
},
|
||||||
"machine_width": {
|
"machine_width": {
|
||||||
"value": 210
|
"value": 210
|
||||||
@ -42,7 +42,11 @@
|
|||||||
"value": "RepRap"
|
"value": "RepRap"
|
||||||
},
|
},
|
||||||
"machine_platform_offset": {
|
"machine_platform_offset": {
|
||||||
"value": [6, 1320, 0]
|
"value": [
|
||||||
|
6,
|
||||||
|
1320,
|
||||||
|
0
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"material_print_temperature": {
|
"material_print_temperature": {
|
||||||
"value": 210.0
|
"value": 210.0
|
||||||
@ -114,4 +118,5 @@
|
|||||||
"value": false
|
"value": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -10,13 +10,13 @@
|
|||||||
"file_formats": "text/x-code",
|
"file_formats": "text/x-code",
|
||||||
"platform": "bq_hephestos_platform.stl"
|
"platform": "bq_hephestos_platform.stl"
|
||||||
},
|
},
|
||||||
|
"overrides": {
|
||||||
"settings": {
|
"settings": {
|
||||||
"machine_start_gcode": {
|
"machine_start_gcode": {
|
||||||
"value": "; -- START GCODE --\nG21 ;set units to millimetres\nG90 ;set to absolute positioning\nM106 S0 ;set fan speed to zero (turned off)\nG28 X0 Y0 ;move to the X/Y origin (Home)\nG28 Z0 ;move to the Z origin (Home)\nG1 Z15.0 F1200 ;move Z to position 15.0 mm\nG92 E0 ;zero the extruded length\nG1 E20 F200 ;extrude 20mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F7200 ;set feedrate to 120 mm/sec\n; -- end of START GCODE --"
|
"default_value": "; -- START GCODE --\nG21 ;set units to millimetres\nG90 ;set to absolute positioning\nM106 S0 ;set fan speed to zero (turned off)\nG28 X0 Y0 ;move to the X/Y origin (Home)\nG28 Z0 ;move to the Z origin (Home)\nG1 Z15.0 F1200 ;move Z to position 15.0 mm\nG92 E0 ;zero the extruded length\nG1 E20 F200 ;extrude 20mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F7200 ;set feedrate to 120 mm/sec\n; -- end of START GCODE --"
|
||||||
},
|
},
|
||||||
"machine_end_gcode": {
|
"machine_end_gcode": {
|
||||||
"value": "; -- END GCODE --\nM104 S0 ;set extruder temperature to zero (turned off)\nG91 ;set to relative positioning\nG1 E-20 F300 ;retract the filament a bit to release some of the pressure\nG1 Z10 ;move extruder up 10 mm\nG90 ;set to absolute positioning\nG1 X0 Y180 F1200 ;expose the platform\nM84 ;turn off steppers\n; -- end of END GCODE --"
|
"default_value": "; -- END GCODE --\nM104 S0 ;set extruder temperature to zero (turned off)\nG91 ;set to relative positioning\nG1 E-20 F300 ;retract the filament a bit to release some of the pressure\nG1 Z10 ;move extruder up 10 mm\nG90 ;set to absolute positioning\nG1 X0 Y180 F1200 ;expose the platform\nM84 ;turn off steppers\n; -- end of END GCODE --"
|
||||||
},
|
},
|
||||||
"machine_width": {
|
"machine_width": {
|
||||||
"value": 200
|
"value": 200
|
||||||
@ -37,7 +37,11 @@
|
|||||||
"value": "RepRap"
|
"value": "RepRap"
|
||||||
},
|
},
|
||||||
"machine_platform_offset": {
|
"machine_platform_offset": {
|
||||||
"value": [0, -82, 0]
|
"value": [
|
||||||
|
0,
|
||||||
|
-82,
|
||||||
|
0
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"layer_height": {
|
"layer_height": {
|
||||||
"value": 0.2
|
"value": 0.2
|
||||||
@ -85,4 +89,5 @@
|
|||||||
"value": true
|
"value": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
@ -10,6 +10,7 @@
|
|||||||
"file_formats": "text/x-gcode",
|
"file_formats": "text/x-gcode",
|
||||||
"platform": "bq_witbox_platform.stl"
|
"platform": "bq_witbox_platform.stl"
|
||||||
},
|
},
|
||||||
|
"overrides": {
|
||||||
"settings": {
|
"settings": {
|
||||||
"machine_start_gcode": {
|
"machine_start_gcode": {
|
||||||
"value": "; -- START GCODE --\nG21 ;set units to millimetres\nG90 ;set to absolute positioning\nM106 S0 ;set fan speed to zero (turned off)\nG28 X0 Y0 ;move to the X/Y origin (Home)\nG28 Z0 ;move to the Z origin (Home)\nG1 Z15.0 F1200 ;move Z to position 15.0 mm\nG92 E0 ;zero the extruded length\nG1 E20 F200 ;extrude 20mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F7200 ;set feedrate to 120 mm/sec\n; -- end of START GCODE --"
|
"value": "; -- START GCODE --\nG21 ;set units to millimetres\nG90 ;set to absolute positioning\nM106 S0 ;set fan speed to zero (turned off)\nG28 X0 Y0 ;move to the X/Y origin (Home)\nG28 Z0 ;move to the Z origin (Home)\nG1 Z15.0 F1200 ;move Z to position 15.0 mm\nG92 E0 ;zero the extruded length\nG1 E20 F200 ;extrude 20mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F7200 ;set feedrate to 120 mm/sec\n; -- end of START GCODE --"
|
||||||
@ -36,7 +37,11 @@
|
|||||||
"value": "RepRap"
|
"value": "RepRap"
|
||||||
},
|
},
|
||||||
"machine_platform_offset": {
|
"machine_platform_offset": {
|
||||||
"value": [0, -145, -38]
|
"value": [
|
||||||
|
0,
|
||||||
|
-145,
|
||||||
|
-38
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"layer_height": {
|
"layer_height": {
|
||||||
"value": 0.2
|
"value": 0.2
|
||||||
@ -84,4 +89,5 @@
|
|||||||
"value": true
|
"value": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user