AI script
-
I've been trying to write a script to put in the start up code in Simplify3D to prime the nozzle. I want it to sweep downward to the bed while extruding (had a machine that did that), i tried working with Grok and it tries but doesnt quit get it. Heres the code grok wrote: ; Slicer start G-code with fully dynamic sweep
G28 ; home all axes (ends at G31 Z via IR probe)
M83 ; relative extrusion mode
G1 E5 F600 ; prime 5mm at probed height
G91 ; relative positioning
G1 Z10 F1200 ; lift 10mm above G31 Z
G1 X40 Y5 Z-10 E15 F600 ; sweep down 10mm (to probed Z), across 40mm, Y+5mm, extruding 15mm
G90 ; absolute positioningDoes anyone have such a script that works?
-
What do you want it to do that it isn't doing now? It looks like a passable start to tweak.