Kühlung bei einem bestimmten Layer abschalten

Moin
Gibt es die Möglichkeit die Kühlung ab einem bestimmten Layer abzuschalten? (Wie bei Cura)

Hi,

Just add a custom g-code at the specific layer:

In the preview window select the specific layer, right click in the plus sign and select add a custom G-code.

image

In the custom G-code add the following G-code, aftwe selectring which [1, 2 or 3] you wish to turn off.

M106 P[1, 2 or 3] S0

Where,
1 - Extruder
2 - Auxiliary (if exist)
3 - Chamber (if exist)

For example, for turning the auxiliary fan:

M106 P2 S0

For the extruder, or if only have one fan, you can omit (not mandatory) the fan indication term from the G-code, i.e., you can stop cooling by the following G-code:

M106 S0
3 Likes