0

I am working on a project to generate G-Code for 3D Model in STL Format.

Suggest me how I can do it

Basically this generated G-Code will be used with Milling CNC.

  • Please provide enough code so others can better understand or reproduce the problem. – Community Mar 12 '22 at 03:29
  • If you want something affordable I would suggest [fusion360](https://www.autodesk.com/products/fusion-360/personal), however there are a ton of options out there. Your decision should be made based on the complexity of your project and type of CNC machine you have. Almost all of the modern CAD/CAM packages will handle STL files as well as STEP and many other formats. You also need a post processor to handle the formatting of your NC files since all machines do not have the same format requirements as well as having proprietary G-code, M-code and other functions. – Rory May 06 '22 at 18:05

1 Answers1

1

You need CAM Software, a program that has an algorithm that extracts the path of the STL drawing and based in the type of your machine, generate the correct CNC commands.

There are several proprietary programs for this on the market and it really depends on your machine type and tools. Maybe this link will help you get some ideas.

If you want to develop your own CAM, I warn you that this is not a trivial job...

dwpessoa
  • 440
  • 4
  • 15