Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Surion79 committed Apr 29, 2023
1 parent 52632ec commit 9d74301
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions macros/base/start_print.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,12 @@ gcode:
_MODULE_BED_MESH
{% elif action == "primeline" %}
_MODULE_PRIMELINE
{% elif action == "custom1" %}
_MODULE_CUSTOM1
{% elif action == "custom2" %}
_MODULE_CUSTOM2
{% elif action == "custom3" %}
_MODULE_CUSTOM3
{% else %}
{ action_raise_error("Unknown module called in START_PRINT! Please verify your startprint_actions variable override!") }
{% endif %}
Expand Down Expand Up @@ -393,3 +399,43 @@ gcode:
ADAPTIVE_BED_MESH SIZE={FL_SIZE}
{% endif %}
{% endif %}


[gcode_macro _MODULE_CUSTOM1]
gcode:
# ---- CUSTOM Macro section
# this section is reserved for personal customized start actions, which can be combined with all other start actions
# in order to use this, create a new macro in overrides.cfg
# [gcode_macro _MODULE_CUSTOM1]
# renaming_existing: BASE_MODULE_CUSTOM1
# gcode:
# ## Your custom code here
#
# ## don't deleted following line
# BASE_MODULE_CUSTOM1

[gcode_macro _MODULE_CUSTOM2]
gcode:
# ---- CUSTOM Macro section
# this section is reserved for personal customized start actions, which can be combined with all other start actions
# in order to use this, create a new macro in overrides.cfg
# [gcode_macro _MODULE_CUSTOM1]
# renaming_existing: BASE_MODULE_CUSTOM1
# gcode:
# ## Your custom code here
#
# ## don't deleted following line
# BASE_MODULE_CUSTOM1

[gcode_macro _MODULE_CUSTOM3]
gcode:
# ---- CUSTOM Macro section
# this section is reserved for personal customized start actions, which can be combined with all other start actions
# in order to use this, create a new macro in overrides.cfg
# [gcode_macro _MODULE_CUSTOM1]
# renaming_existing: BASE_MODULE_CUSTOM1
# gcode:
# ## Your custom code here
#
# ## don't deleted following line
# BASE_MODULE_CUSTOM1

0 comments on commit 9d74301

Please sign in to comment.