We need a better and simple way to implement the M600 command at specific heights.
In prusa slicer you can add it automatically with just a mouse click after slicing using the layer slider!
Yes, and place an m600 where you want just with mouse click! Same way for pause at a certain height...the m600 is the generic filament change. The pause at height can be m601, M0, M25, this latest one works with Artillery3D printers, need to test it with and ender for example, by I thing is the generic command for this!
Code: Select all
{IF "[current_layer_number] == 25"}M600
Cool, we already know that...However I think a more intuitive way of doing this is crucial...S3D-Jason wrote: ↑Thu Jun 08, 2023 1:59 pm I want to mention that you can already add a M600 command at a specific point in the print using the V5 scripting options. For example, to insert a M600 pause command at layer 25, go to Edit Process Settings > Scripts tab > Layer change, and enter the following for the pre layer change script:
That will pause the print automatically at layer 25.Code: Select all
{IF "[current_layer_number] == 25"}M600
If you want to pause multiple times, just duplicate that line multiple times.
What exactly happens: is the print paused *before* the layer is been printed or *after it completed* printing layer 25?S3D-Jason wrote: ↑Thu Jun 08, 2023 1:59 pmThat will pause the print automatically at layer 25.Code: Select all
{IF "[current_layer_number] == 25"}M600