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

Flow top layer!! #8133

Closed
Mikeline94 opened this issue Mar 30, 2022 · 3 comments
Closed

Flow top layer!! #8133

Mikeline94 opened this issue Mar 30, 2022 · 3 comments

Comments

@Mikeline94
Copy link

insert flow control for the top / bottom layer only. This feature is fundamental and already present in all the other slicers. It is even present in super prusaslice!

@fe60
Copy link

fe60 commented Mar 31, 2022

At least for the first layer this has been requested already in #6025.
The first comment describes how to get this implemented using custom gcode.

@stepikovo
Copy link

@Mikeline94 What would be the use on the top layer?
As @fe60 mentioned, you can easily do it for the bottom layer in the gcode.

@rtyr
Copy link
Collaborator

rtyr commented Mar 31, 2022

I would say it is similar request to #7200.

You can already do that by using g-code substitutions, which are available since 2.4.1-beta1. Different flow for top solid layer is actually described in the changelog as an example, see https://github.com/prusa3d/PrusaSlicer/releases/tag/version_2.4.1-beta1.

An example of a quite powerful G-code modification by a reasonably complex regular expression: Increase the extrusion rate of top solid infill from the default 95 percent to 98 percent.
Find: (;TYPE:Top solid infill\n)(.*?)(;TYPE:|$)(?!Top solid infill)
Replace with: ${1}M221 S98\n${2}M221 S95\n${3}
Modifiers: regexp, single line

We are considering adding some sort of "per-feature" flow setting in the future.

I am closing this issue as a duplicate. You can continue discussion here #7200.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

4 participants