Created
June 22, 2024 19:14
-
-
Save drifterz28/4bc2bb503f07ff3153e13557d2ed5821 to your computer and use it in GitHub Desktop.
SV04
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;SV04 end | |
G91 ;Relative positioning | |
G1 E-2 F2700 ;Retract a bit | |
G1 E-2 Z0.2 F2400 ;Retract and raise Z | |
G1 X0 Y240 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;SV04 start | |
M140 S{material_bed_temperature}; | |
M104 S{material_print_temperature}; | |
M280 P0 S160; | |
G4 P100; | |
M420 S1; | |
M190 S{material_bed_temperature}; | |
M109 S{material_print_temperature}; | |
G28; | |
G34; Z Steppers Auto-Alignment | |
G29; Bed Leveling | |
G92 E0; | |
G1 X10.1 Y20 Z0.28 F5000.0; | |
G1 X10.1 Y200.0 Z0.28 F1500.0 E15; | |
G1 X10.4 Y200.0 Z0.28 F5000.0; | |
G1 X10.4 Y20 Z0.28 F1500.0 E30; | |
G92 E0 ;Reset Extruder | |
G1 Z2.0 F3000; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment