end-gcode.gcode
· 313 B · Text
原始檔案
G91 ;Relative positioning
G1 E-2 F2700 ;Retract a bit
G1 E-2 Z0.2 F2400 ;Retract and raise Z
G1 X5 Y5 F3000 ;Wipe out
G1 Z10 ;Raise Z more
G90 ;Absolute positionning
G1 X0 Y{machine_depth} ;Present print
M106 S0 ;Turn-off fan
M104 S0 ;Turn-off hotend
M140 S0 ;Turn-off bed
M84 X Y E ;Disable all steppers but Z
| 1 | G91 ;Relative positioning |
| 2 | G1 E-2 F2700 ;Retract a bit |
| 3 | G1 E-2 Z0.2 F2400 ;Retract and raise Z |
| 4 | G1 X5 Y5 F3000 ;Wipe out |
| 5 | G1 Z10 ;Raise Z more |
| 6 | G90 ;Absolute positionning |
| 7 | |
| 8 | G1 X0 Y{machine_depth} ;Present print |
| 9 | M106 S0 ;Turn-off fan |
| 10 | M104 S0 ;Turn-off hotend |
| 11 | M140 S0 ;Turn-off bed |
| 12 | |
| 13 | M84 X Y E ;Disable all steppers but Z |
| 14 |
start-gcode.gcode
· 1.4 KiB · Text
原始檔案
; Script based on an original created by tjjfvi (https://github.com/tjjfvi)
; An up-to-date version of the tjjfvi's original script can be found
; here: https://csi.t6.fyi/
; Note - This script will only work in Cura V4.2 and above!
; --- Global Settings
; layer_height = {layer_height}
; smooth_spiralized_contours = {smooth_spiralized_contours}
; magic_mesh_surface_mode = {magic_mesh_surface_mode}
; machine_extruder_count = {machine_extruder_count}
; --- Single Extruder Settings
; speed_z_hop = {speed_z_hop}
; retraction_amount = {retraction_amount}
; retraction_hop = {retraction_hop}
; retraction_hop_enabled = {retraction_hop_enabled}
; retraction_enable = {retraction_enable}
; retraction_speed = {retraction_speed}
; retraction_retract_speed = {retraction_retract_speed}
; retraction_prime_speed = {retraction_prime_speed}
; speed_travel = {speed_travel}
; Ender 3 Custom Start G-code
G21 ; Set units to mm
G92 E0 ; Reset Extruder
G28 ; Home all axes
; G29 ; BL Touch
M420 S1 ; Load BL Touch
G1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed
G1 X0.1 Y20 Z0.3 F5000.0 ; Move to start position
G1 X0.1 Y200.0 Z0.3 F1500.0 E15 ; Draw the first line
G1 X0.4 Y200.0 Z0.3 F5000.0 ; Move to side a little
G1 X0.4 Y20 Z0.3 F1500.0 E30 ; Draw the second line
G92 E0 ; Reset Extruder
G1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed
G1 X5 Y20 Z0.3 F5000.0 ; Move over to prevent blob squish
| 1 | ; Script based on an original created by tjjfvi (https://github.com/tjjfvi) |
| 2 | ; An up-to-date version of the tjjfvi's original script can be found |
| 3 | ; here: https://csi.t6.fyi/ |
| 4 | ; Note - This script will only work in Cura V4.2 and above! |
| 5 | ; --- Global Settings |
| 6 | ; layer_height = {layer_height} |
| 7 | ; smooth_spiralized_contours = {smooth_spiralized_contours} |
| 8 | ; magic_mesh_surface_mode = {magic_mesh_surface_mode} |
| 9 | ; machine_extruder_count = {machine_extruder_count} |
| 10 | ; --- Single Extruder Settings |
| 11 | ; speed_z_hop = {speed_z_hop} |
| 12 | ; retraction_amount = {retraction_amount} |
| 13 | ; retraction_hop = {retraction_hop} |
| 14 | ; retraction_hop_enabled = {retraction_hop_enabled} |
| 15 | ; retraction_enable = {retraction_enable} |
| 16 | ; retraction_speed = {retraction_speed} |
| 17 | ; retraction_retract_speed = {retraction_retract_speed} |
| 18 | ; retraction_prime_speed = {retraction_prime_speed} |
| 19 | ; speed_travel = {speed_travel} |
| 20 | |
| 21 | ; Ender 3 Custom Start G-code |
| 22 | G21 ; Set units to mm |
| 23 | G92 E0 ; Reset Extruder |
| 24 | G28 ; Home all axes |
| 25 | ; G29 ; BL Touch |
| 26 | M420 S1 ; Load BL Touch |
| 27 | G1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed |
| 28 | G1 X0.1 Y20 Z0.3 F5000.0 ; Move to start position |
| 29 | G1 X0.1 Y200.0 Z0.3 F1500.0 E15 ; Draw the first line |
| 30 | G1 X0.4 Y200.0 Z0.3 F5000.0 ; Move to side a little |
| 31 | G1 X0.4 Y20 Z0.3 F1500.0 E30 ; Draw the second line |
| 32 | G92 E0 ; Reset Extruder |
| 33 | G1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed |
| 34 | G1 X5 Y20 Z0.3 F5000.0 ; Move over to prevent blob squish |