From 8f53ff4a0ff4b4da0106c3c0eec5112a8c9ddc73 Mon Sep 17 00:00:00 2001 From: Nicanor Romero Venier Date: Wed, 22 Jul 2015 11:45:03 +0200 Subject: [PATCH 1/3] Changed end_gcode in Hephestos and Hephestos XL At the end of the print, the extruder is moved up 10 mm instead of going all the way to the top. --- resources/settings/hephestos.json | 2 +- resources/settings/hephestos_XL.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/settings/hephestos.json b/resources/settings/hephestos.json index 2d11c81395..7e126813fb 100644 --- a/resources/settings/hephestos.json +++ b/resources/settings/hephestos.json @@ -9,7 +9,7 @@ "default": "; -- START GCODE --\n;Sliced at: {day} {date} {time}\n;Basic settings: Layer height: {layer_height} Walls: {wall_thickness} Fill: {fill_density}\n;Print time: {print_time}\n;Filament used: {filament_amount}m {filament_weight}g\n;Filament cost: {filament_cost}\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": { - "default": "; -- 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\nG90 ;set to absolute positioning\nG1 Z180 ;move extruder to the top\nG1 X0 Y180 F1200 ;expose the platform\nM84 ;turn off steppers\n; -- end of END GCODE --" + "default": "; -- 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": { "default": 215 diff --git a/resources/settings/hephestos_XL.json b/resources/settings/hephestos_XL.json index b2d42aa9a4..271aaa7e95 100644 --- a/resources/settings/hephestos_XL.json +++ b/resources/settings/hephestos_XL.json @@ -9,7 +9,7 @@ "default": "; -- START GCODE --\n;Sliced at: {day} {date} {time}\n;Basic settings: Layer height: {layer_height} Walls: {wall_thickness} Fill: {fill_density}\n;Print time: {print_time}\n;Filament used: {filament_amount}m {filament_weight}g\n;Filament cost: {filament_cost}\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": { - "default": "; -- 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\nG90 ;set to absolute positioning\nG1 Z180 ;move extruder to the top\nG1 X0 Y180 F1200 ;expose the platform\nM84 ;turn off steppers\n; -- end of END GCODE --" + "default": "; -- 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": { "default": 200 From f846d3384c144010c8ef2fa4379e9c0c9579ba98 Mon Sep 17 00:00:00 2001 From: Tim Kuipers Date: Thu, 23 Jul 2015 10:18:19 +0200 Subject: [PATCH 2/3] bugfix? UM2 now has empty start-gcode and end-gcode --- resources/settings/ultimaker2.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/resources/settings/ultimaker2.json b/resources/settings/ultimaker2.json index 6cee1d8eb4..f845573ec7 100644 --- a/resources/settings/ultimaker2.json +++ b/resources/settings/ultimaker2.json @@ -8,6 +8,8 @@ "inherits": "fdmprinter.json", "machine_settings": { + "machine_start_gcode" : { "default": "" }, + "machine_end_gcode" : { "default": "" }, "machine_width": { "default": 230 }, "machine_depth": { "default": 225 }, "machine_height": { "default": 205 }, From 7475bd1af4f11ab6ab4ccf7bce82b1b6d036b576 Mon Sep 17 00:00:00 2001 From: Nicanor Romero Venier Date: Thu, 23 Jul 2015 16:37:08 +0200 Subject: [PATCH 3/3] Changed default value for support. --- resources/settings/hephestos.json | 2 +- resources/settings/hephestos_XL.json | 2 +- resources/settings/witbox.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/settings/hephestos.json b/resources/settings/hephestos.json index 7e126813fb..ce97fc21a5 100644 --- a/resources/settings/hephestos.json +++ b/resources/settings/hephestos.json @@ -168,7 +168,7 @@ "support": { "settings": { "support_enable": { - "default": false + "default": true }, "support_z_distance": { "default": 0.2, diff --git a/resources/settings/hephestos_XL.json b/resources/settings/hephestos_XL.json index 271aaa7e95..5a308bab2b 100644 --- a/resources/settings/hephestos_XL.json +++ b/resources/settings/hephestos_XL.json @@ -168,7 +168,7 @@ "support": { "settings": { "support_enable": { - "default": false + "default": true }, "support_z_distance": { "default": 0.2, diff --git a/resources/settings/witbox.json b/resources/settings/witbox.json index 4fefa77e89..bafcceccdd 100644 --- a/resources/settings/witbox.json +++ b/resources/settings/witbox.json @@ -168,7 +168,7 @@ "support": { "settings": { "support_enable": { - "default": false + "default": true }, "support_z_distance": { "default": 0.2,