Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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 (smile)  


Software choices:

CAD:

  • Siemens NX - high end, windows, possible on mac
  • Solidworks - high end, 
  • Fusion 360 - fully featured, free
  • Onshape - fully featured, free, browser based, platform independent!
  • FreeCAD
  • TinkerCAD
  • OpenSCAD
  • .
  • .
  • the list goes on. As long as you end up with a .stl file of your 3D object, you're fine!

...

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!!  :

https://forums.autodesk.com/t5/hsm-post-processor-forum/how-to-set-up-a-4-5-axis-machine-configuration/td-p/6488176

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

...