Over the weekend I received some new parts and some spare parts for the machine. The most important ones were the new grease manifold for the Y axis and also a new way cover for the Z axis:
The way cover that came with the machine was a ratty fabric bellows that looked terrible and didn't work properly so I'm glad I am able to replace it with a proper cover.
The grease manifold went on nicely (after a bit of persuasion) which was nice. I'm still waiting on one part for the grease system on the Y axis, but after I receive that the machine is ready to start going back together! Pretty excited to get started actually using it!
One other little thing I did was put some neoprene rubber strips under the spindle motor fan cowl. At high spindle RPMs the cover would rattle and make a hell of a racket. With the foam in place it's dead quiet and the machine is pleasant to stand next to even when running at full speed. The foam was basically just weather-stripping:
Programming a machine like this is done one of two ways.
1) Manually typing in commands, each line explaining how the machine should move
2) By running a program on your computer to turn a CAD file into toolpaths.
Programming these machines is something that a lot of people seem scared of, but basically it's fairly straight forward. For example:
Code:
F100.0 X10.0 Y10.0
S1000 M3
F10.0 Z-1.5
F10.0 Z0.0
F100.0 Tells the machine to move at 100 inches per minute
X10.0 Tells the machine to move to a position 10.0 inches from the home position on the X axis
Y10.0 Tells the machine to move to a position 10.0 inches from the home position on the Y axis
S1000 tells the machine that the spindle speed should be 1000RPM
M3 tells the machine to turn the spindle on in a clockwise direction
F10.0 tells the machine to move at 10 inches per minute
Z-1.5 tells the machine to move the spindle downward 1.5 inches
Z0.0 tells the machine to move back up to the zero position
With this sequence of commands you could have theoretically drilled a hole in a part exact 10 inches from it's top left corner. This is a bit of an oversimplification but it's not far off!
If you were to run a program on your computer to turn a CAD model into a toolpath it would produce code exactly like what you see above but much more complicated. For instance it might use lots of little movements to trace the outline of your knife design. The machine would follow that path while cutting with an endmill and then you'd have your knife!