Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added custom4..9 in start_print #539

Merged
merged 1 commit into from
Mar 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
72 changes: 72 additions & 0 deletions macros/base/start_print.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,18 @@ gcode:
_MODULE_CUSTOM2 {rawparams}
{% elif action == "custom3" %}
_MODULE_CUSTOM3 {rawparams}
{% elif action == "custom4" %}
_MODULE_CUSTOM4 {rawparams}
{% elif action == "custom5" %}
_MODULE_CUSTOM5 {rawparams}
{% elif action == "custom6" %}
_MODULE_CUSTOM6 {rawparams}
{% elif action == "custom7" %}
_MODULE_CUSTOM7 {rawparams}
{% elif action == "custom8" %}
_MODULE_CUSTOM8 {rawparams}
{% elif action == "custom9" %}
_MODULE_CUSTOM9 {rawparams}
{% else %}
{ action_raise_error("Unknown module called in START_PRINT! Please verify your startprint_actions variable override!") }
{% endif %}
Expand Down Expand Up @@ -497,3 +509,63 @@ gcode:
# gcode:
# ## Your custom code here


[gcode_macro _MODULE_CUSTOM4]
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_CUSTOM4]
# gcode:
# ## Your custom code here


[gcode_macro _MODULE_CUSTOM5]
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_CUSTOM5]
# gcode:
# ## Your custom code here


[gcode_macro _MODULE_CUSTOM6]
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_CUSTOM6]
# gcode:
# ## Your custom code here


[gcode_macro _MODULE_CUSTOM7]
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_CUSTOM7]
# gcode:
# ## Your custom code here


[gcode_macro _MODULE_CUSTOM8]
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_CUSTOM8]
# gcode:
# ## Your custom code here


[gcode_macro _MODULE_CUSTOM9]
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_CUSTOM8]
# gcode:
# ## Your custom code here