We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I have a dual nozzle set up, and im using something like this in prusa slicer to save some power
{if is_extruder_used[0]} M104 S130 T0 ; Preheat extruder 0 {endif}
{if is_extruder_used[1]} M104 S130 T1 ; Preheat extruder 1 {endif}
{if initial_extruder == 0} T0 ; Select toolhead T0 {elsif initial_extruder == 1} T1 ; Select toolhead T1 {endif}
what would the placeholder for something like this be in superslicer? pls help tyty
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have a dual nozzle set up, and im using something like this in prusa slicer to save some power
{if is_extruder_used[0]}
M104 S130 T0 ; Preheat extruder 0
{endif}
{if is_extruder_used[1]}
M104 S130 T1 ; Preheat extruder 1
{endif}
{if initial_extruder == 0}
T0 ; Select toolhead T0
{elsif initial_extruder == 1}
T1 ; Select toolhead T1
{endif}
what would the placeholder for something like this be in superslicer?
pls help tyty
The text was updated successfully, but these errors were encountered: