A more substantial tutorial might eventually surface here!
General workflow overview:
This youtube video gives a good overview of the steps involved in the process, he is however working with another machine than we have. But the principles are the same!
READ the Manual
Software choices:
CAD:
CAM:
This website can quickly show you a visualization of your g-code
CNC:
Fourth axis:
The 4th-axis is found in box in shelf and mounted on the table of the mill using the two Aluminum profiles. You will need to remove the “elevated” table if this is present and the probe if this is mounted. The 4th-axis connection-cable is connected inside the cabinet on the left side of the spindle and X axis.
You may need to turn on and off the machine to be able to use it. Will be visible on the PC and can turn A-axis (fourth axis) using the hand-held controller
To Generate code using fourth axis:
CAN use rotary in fusion, but need to set up the roland post prosessor for this as 3-axis is default-- be aware!! there are bugs with this post-prosesssor when using rotary in fusion!! :
This works:
-------------
if (true) { // note: setup your machine here
var aAxis = createAxis({coordinate:0, table:false, axis:[1, 0, 0], range:[-360, 360], preference:1});
//var cAxis = createAxis({coordinate:2, table:false, axis:[0, 0, 1], range:[-360, 360], preference:1});
machineConfiguration = new MachineConfiguration(aAxis); //, cAxis
setMachineConfiguration(machineConfiguration);
optimizeMachineAngles2(0); // map tip mode
}
---------------
Other options is also possible