Duet 3 6hc canned cycle
-
I seen that this has been brought up once before in a older post, but am wondering if the newer reprap can do canned cycles
I am in the process of purchasing all the things I need to build a new mill fixed gantry, I not sure what motion controller I want to go with, I would like the options for tapping and boring.Also is reprap capable of i-0. J-0. Commands
I see the administrator responded
But I don't see a way to respond to thank you
A i-0.0 and j-.0
Would look something like
G03 x location i-0.234 j-0.0038
It's just a way to cut circle without having to do every arc move as a single step -
@Tool88 in RepRapFirmware you can define your own canned cycles using macro files. For example, RRF does not implement G84 internally so you can create a macro file called G84.g in the /sys folder of the SD card. That file will be executed when you send the G84 command and the parameters you provide will be passed to it.
The macro file may contain regular GCode commands along with conditionals, loops and other special commands documented at https://docs.duet3d.com/en/User_manual/Reference/Gcode_meta_commands.
I am not familiar with the term "i-0. J-0. Commands. Please explain what you mean.
-
undefined Tool88 marked this topic as a question
-
undefined Tool88 has marked this topic as solved
-
undefined Tool88 marked this topic as a regular topic
-
@Tool88 said in Duet 3 6hc canned cycle:
Also is reprap capable of i-0. J-0. Commands
I see the administrator responded
But I don't see a way to respond to thank you
A i-0.0 and j-.0
Would look something like
G03 x location i-0.234 j-0.0038
It's just a way to cut circle without having to do every arc move as a single stepYes, RRF supports G2 and G3 using I and J parameters, see https://docs.duet3d.com/User_manual/Reference/Gcodes#g3-controlled-arc-move
Ian