You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
951 B

(Superfly cycle for tormach CNC)
(Removes thickness in 0.5mm steps in straight lines across part)
(Assumes 0 at back left top of part)
(Adjust X/Y values as noted)
(Can be used by itself, or pasted into beginning of generated code using only lines between comments noting what to copy)
G21 (set machine to metric)
G90 (absolute mode)
G17 (x/y plane)
(begin section to copy for FreeCAD programs)
M6 T3 G43 H3 (change tool to superfly)
M8 (coolant on)
M3 S3000 (spindle on, speed 3000RPM)
G0 Z10 (rapid move above part)
G0 X-45 Y-38.1 (rapid move to left center of part)(adjust Y to -1/2 of part width)
G0 Z0 (rapid to 0 height of part)
G1 X131 F200 (pass across to right side, and set feed to 200mm/m)(adjust x to part width +45)
G1 Z-0.5 (lower Z 0.5mm to -0.5mm)
G1 X-45 (pass across to left side)
G0 Z10 (raise cutter to safe location above part)
M9 (coolant off)
M5 (turn spindle off)
(end of section to copy for FreeCAD programs)
M2 (end program)