-
Notifications
You must be signed in to change notification settings - Fork 1
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
Disable pre-heating by default #16
Comments
I suggest to remove 'pre-heating' as well as 'cooling down to pre-heat temperature' from the default start and end-code. If pre-heating is still considered useful I think it should be a custom gcode call done by the app. |
Why? |
I mean for safety it would be better to cool down to 0 just like other slicers do.
If the app is still open it can re-preheat again if the user is still active.
So instead of this is:
M104 S{preheatTemp}
{if heatedBed}M140 S{preheatBedTemp}
I would suggest this:
M104 S0
{if heatedBed}M140 S0
|
I would suggest disabling the This means people can still enable preheat and we don't need to change logic, we only need to change the default settings. |
Currently we pre-heat printers their nozzle and bed so that in a demo context users can print rapidly. But maybe this shouldn't be the default?
The text was updated successfully, but these errors were encountered: