Last active
March 20, 2023 17:56
-
-
Save Skinner927/6eec289bd5d00fc8d18e4269db54aec9 to your computer and use it in GitHub Desktop.
start g-code gcode cr-10 hotend
This file contains 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
; Place this at the beginning of the start g-code. | |
; It will allow the hotend and bed to heat at the same time. | |
M140 S{material_bed_temperature} ; start heating the bed | |
M104 S{material_print_temperature} T0 ; start heating the hotend | |
M109 S{material_print_temperature} T0 ; wait for hotend to hit target temp | |
M190 S{material_bed_temperature} ; wait for bed temp (should be there) | |
M105 ; report temp |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment