mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-09 14:55:03 -06:00
Fix brackets in start_gcode
Had square brackets instead of curly brackets in M109 commands. Still worked OK from SD, but not from Octoprint.
This commit is contained in:
parent
e8b37ea39c
commit
930b716cc2
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@
|
|||
|
||||
"material_diameter": { "default_value": 1.75 },
|
||||
"machine_start_gcode": {
|
||||
"default_value": "; FELIXprinters | www.FELIXprinters.com | Zeemanlaan 15 3401 MV IJsselstein The Netherlands\n; FELIX Tec 4 | Start Code Dual Extruders v1.0\n; Modified by kerog777@gmail.com\n;================================ \n;Initializing\nM80 ; Turn on the power supply\nM107 ; Turn off fans\nM117 Heating up\nM140 S{bed_temperature} ; Heatup Bed and continue\nM104 T0 S{print_temperature} ; Heatup hot-end and continue\nM104 T1 120 ; Heat extruder #2 to homing temp\nG28 ; Home all\nM109 T0 S[print_temperature] ; Heatup hot-end and continue\nM117 Purging\nT0 ; Select extruder 1\nG92 E0 ; Reset extruder\nM109 T0 S[extruder0_temperature] ; Heatup hot-end and wait\nT0 ; Select extruder 1\n\n;================================ ; Initializing done\nM117 FELIXprinting"
|
||||
"default_value": "; FELIXprinters | www.FELIXprinters.com | Zeemanlaan 15 3401 MV IJsselstein The Netherlands\n; FELIX Tec 4 | Start Code Dual Extruders v1.0\n; Modified by kerog777@gmail.com\n;================================ \n;Initializing\nM80 ; Turn on the power supply\nM107 ; Turn off fans\nM117 Heating up\nM140 S{bed_temperature} ; Heatup Bed and continue\nM104 T0 S{print_temperature} ; Heatup hot-end and continue\nM104 T1 120 ; Heat extruder #2 to homing temp\nG28 ; Home all\nM109 T0 S{print_temperature} ; Heatup hot-end and continue\nM117 Purging\nT0 ; Select extruder 1\nG92 E0 ; Reset extruder\nM109 T0 S{extruder0_temperature} ; Heatup hot-end and wait\nT0 ; Select extruder 1\n\n;================================ ; Initializing done\nM117 FELIXprinting"
|
||||
},
|
||||
"machine_end_gcode": {
|
||||
"default_value": "; FELIXprinters End Code Tec Series v1.0\n; Modified by kerog777@gmail.com\n; ================================= \n; Move extruder to park position\nG91 ; Make coordinates relative\nG1 Z2 F1000 ; Move z 2mm up\nG90 ; Use absolute coordinates again\n G1 X0 Y0 F15240 ; Move bed and printhead to ergonomic position\n\n; ================================= ; Turn off heaters\nM140 S0 ; Turn off bed heater\nT0 ; Select left extruder\nM104 T0 S0 ; Turn off heater and continue\n G92 E0 ; Reset extruder position\nG1 E-6 ; Retract filament 8mm\nG92 E0 ; Reset extruder position\nT1 ; Select right extruder\nM104 T1 S0 ; Turn off heater and continue\nG92 E0 ; Reset extruder position\nG1 E-6 ; Retract filament 8mm\nG92 E0 ; Reset extruder position\nT0 ; Select left extruder\n\n; ================================= ; Turn the rest off\nM107 ; Turn off fan\nM84 ; Disable steppers\nM117 Finished Printing!"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue