|
Cura 2.1.2 Alternative Drucker - Workaround 23. July 2016 03:26 |
Registrierungsdatum: 11 Jahre zuvor Beiträge: 489 |
. Im Gegensatz zu vorherigen 2.1.1openBeta ist es nun möglich andere Drucker
"id": "corexy",
"version": 1,
"name": "CoreXY",
"manufacturer": "Other",
"author": "Other",
"icon": "icon_ultimaker2.png",
"platform": "corexy_platform.stl",
"file_formats": "text/x-gcode",
"inherits": "fdmprinter.json",
...
und speichern diese als C:\Program Files\Cura 2.1\resources\machines\corexy.json ab.
{
"id": "corexy",
"version": 1,
"name": "CoreXY",
"manufacturer": "Other",
"author": "Other",
"icon": "icon_ultimaker2.png",
"platform": "corexy_platform.stl",
"file_formats": "text/x-gcode",
"inherits": "fdmprinter.json",
"machine_settings": {
"machine_heated_bed": { "default": true },
"machine_width": { "default": 200 },
"machine_height": { "default": 170 },
"machine_depth": { "default": 200 },
"machine_center_is_zero": { "default": false },
"machine_nozzle_size": { "default": 0.3 },
"material_diameter": { "default": 1.75 },
"machine_nozzle_heat_up_speed": { "default": 2.0 },
"machine_nozzle_cool_down_speed": { "default": 2.0 },
"machine_head_shape_min_x": { "default": 75 },
"machine_head_shape_min_y": { "default": 18 },
"machine_head_shape_max_x": { "default": 18 },
"machine_head_shape_max_y": { "default": 35 },
"machine_nozzle_gantry_distance": { "default": 55 },
"machine_gcode_flavor": { "default": "RepRap (Marlin/Sprinter)" },
"machine_start_gcode": {
"default": "G21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 X0 Y0 Z0 ;move X,Y,Z to min endstops\nG1 Z8 F9000\nG1 X2 Y2
F7000\nG4 S3 ;3sec pause\nG92 E0 ;reset extruder\nG1 Z0.15\nG1 Y20\nG1 E3 F200 ;extrude 3mm\nG92 E0\nG1 Y50 F800"
},
"machine_end_gcode": {
"default": "G1 Y10 X210\nG91\nG1 Z5"
}
}
}
In der corexy.json finden wir in Zeile 10 ' "inherits": "fdmprinter.json",' , das ist ein Verweis auf eine weitere config-Datei.
...
"machine_start_gcode": {
"description": "Gcode commands to be executed at the very start - separated by \\n.",
"default": "G28 ; Home\nG1 Z15.0 F6000 ;move the platform down 15mm\n;Prime the extruder\nG92 E0\nG1 F200 E3\nG92 E0",
"global_only": false
},
"machine_end_gcode": {
"description": "Gcode commands to be executed at the very end - separated by \\n.",
"default": "M104 S0 ;turn off Hotend\nM140 S0 ;turn off Headbed\nG92 E1\nG1 E-2 F300 ;Retract the filament\nM84 ;disable motors",
"global_only": true
...
Das wars auch schon... .|
Re: Cura 2.1.2 Alternative Drucker - Workaround 23. July 2016 04:03 |
Registrierungsdatum: 12 Jahre zuvor Beiträge: 129 |
|
Re: Cura 2.1.2 Alternative Drucker - Workaround 23. July 2016 04:26 |
Registrierungsdatum: 11 Jahre zuvor Beiträge: 137 |
|
Re: Cura 2.1.2 Alternative Drucker - Workaround 23. July 2016 05:21 |
Registrierungsdatum: 10 Jahre zuvor Beiträge: 318 |
|
Re: Cura 2.1.2 Alternative Drucker - Workaround 23. July 2016 05:44 |
Registrierungsdatum: 11 Jahre zuvor Beiträge: 489 |