load_filament hotend position #136
-
Hi jschuh, can the load_filament position be changed in the start_print? I would like the hotend to move front and centre for easy filament loading....... |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments
-
Right now it just uses the configured parking position. I'd rather not add another config value just for a load/unload parking position, but I could update the load/unload macros to accept XY parking coordinates, which you could just override to your preferred default. |
Beta Was this translation helpful? Give feedback.
-
That sounds great 👍
…On Mon, 19 Jun 2023 at 02:04, Justin Schuh ***@***.***> wrote:
Right now it just uses the configured parking position. I'd rather not add
another config value just for a load/unload parking position, but I could
update the load/unload macros to accept XY parking coordinates, which you
could just override to your preferred default.
—
Reply to this email directly, view it on GitHub
<#136 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ATZWJXRSYUGBECSOXT73FXTXL53OZANCNFSM6AAAAAAZKWVSDI>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
by the way - using your macros - working out great - thanks
…On Mon, 19 Jun 2023 at 02:04, Justin Schuh ***@***.***> wrote:
Right now it just uses the configured parking position. I'd rather not add
another config value just for a load/unload parking position, but I could
update the load/unload macros to accept XY parking coordinates, which you
could just override to your preferred default.
—
Reply to this email directly, view it on GitHub
<#136 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ATZWJXRSYUGBECSOXT73FXTXL53OZANCNFSM6AAAAAAZKWVSDI>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
I forgot that LOAD_FILAMENT and UNLOAD_FILAMENT don't actually change the extruder position, and I really don't think they should. You can just wrap it with something like this if you want:
|
Beta Was this translation helpful? Give feedback.
-
Thanks for the advice - will give that a go - I am only starting to get my
head around macros. Cheers
…On Fri, 23 Jun 2023 at 03:13, Justin Schuh ***@***.***> wrote:
I forgot that LOAD_FILAMENT and UNLOAD_FILAMENT don't actually change the
extruder position, and I really don't think they should. You can just wrap
it with something like this if you want:
[gcode_macro LOAD_FILAMENT]
rename_existing: LOAD_FILAMENT_BASE
gcode:
PARK LAZY=1 X=<add your X or remove for default> Y=<add your Y or remove for default>
LOAD_FILAMENT_BASE {rawparams}
—
Reply to this email directly, view it on GitHub
<#136 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ATZWJXRSAK2KZLRD53MTYDLXMTGQLANCNFSM6AAAAAAZKWVSDI>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
I forgot that LOAD_FILAMENT and UNLOAD_FILAMENT don't actually change the extruder position, and I really don't think they should. You can just wrap it with something like this if you want: