hosted services
3d printing
A 3D printer turns ideas into reality.
beep
I wanted to get a audio tone from the printer at the end of the job. I put this in the end gcode to beep four times, after each S261 tones there's a silent tone:
M300 S261 P900;
M300 S00 P900;
M300 S261 P900;
M300 S00 P900;
M300 S261 P900;
M300 S00 P900;
M300 S261 P900;
M300 S00 P900;
It'll beep for a bit so you can get to the printer before it cools down. This is important as it'll get on with the next job quicker as the warm up sequence will be reduced.
openscad
I wanted to get into blender a bit, but I struggle with it. I found openscad to be much more up my street. To make objects, the following commands can get you most of the way there:
cube
cylinder
translate
difference
import
group
union
cube
can do cuboids, cylinder
can do cones!
translate
will move you around.
difference
is a function that cuts away from an object. If you want to
make a ring, you could do it this way:
difference() {
cylinder(h=10, d1=20, d2=20);
cylinder(h=10, d1=15, d2=15);
}
This gets you a ring with outer diameter 20 and inner diameter 15.