You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a repository for making an array of the same part on a 3D printer, by duplicating the gcode.
3
+
The parts are printed in one go, one at a time, as opposed to all at once layer by layer.
4
+
5
+
The advantage of this is that if one of the prints fail, the print can be cancelled and you will still have some parts succeed.
6
+
7
+
Great for small parts if you need them in high volume, like I did in a recent project. I assume you are using a marlin style gcode printer for using this code.
8
+
9
+
# Usage
10
+
-Start by slicing your stl file in your favorite marlin style slicer!
11
+
-Divide the outputted gcode into three files: start.gcode, middle.gcode, and end.gcode
12
+
-Enter in main.py your desired parameters: x and y GAP for the distance between each part, x and y items for the quantity of parts in each axis.
13
+
-Create a out.gcode file, and run main.py. The program will automatically write in the created out.gcode file.
14
+
15
+
# licesnse
16
+
I applied the MIT open source license to this project.
0 commit comments