initial commit

This commit is contained in:
2022-11-13 22:49:29 +01:00
commit 054b2b429d
13 changed files with 725 additions and 0 deletions

19
macros.cfg Normal file
View File

@@ -0,0 +1,19 @@
[gcode_macro LOAD_FILAMENT]
gcode:
{% set speed = params.SPEED|default(300) %}
{% set max_velocity = printer.configfile.settings['extruder'].max_extrude_only_velocity %}
M300 # beep
G91
G92 E0
G1 E350 F{max_velocity}
G1 E25 F{speed} #purge
M300
M300
[gcode_macro UNLOAD_FILAMENT]
gcode:
{% set speed = params.SPEED|default(500) %}
G91
G1 E-400 F{speed}
G1 E-400 F{speed}
G92