How to run a gcode loop X times
-
Can someone give me a suggestion on a code statement that I can use to run a gcode loop X number of times?
-
@code7 where would you like to do the loop?
in a print file or in a macro?EDIT:
If it is in a macro then something like this:while iterations < X your gcode
-
@cosmowave Thanks. Much simpler than I expected. This works in the print file.