Hello Guest it is March 18, 2024, 11:57:02 PM

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - TPS

881
General Mach Discussion / Re: Are G33 & G76 supported in Mach3?
« on: July 17, 2020, 05:27:51 AM »
i am affraid G76 will only work on in turn mode, but i am not a specialist.

882
General Mach Discussion / Re: Are G33 & G76 supported in Mach3?
« on: July 17, 2020, 05:03:43 AM »
here:

https://www.youtube.com/watch?v=xO-GHEIIOQQ

is a Video, where he demonstrates how it works.

883
General Mach Discussion / Re: Are G33 & G76 supported in Mach3?
« on: July 17, 2020, 04:58:24 AM »
for thread milling i am using a cam Programm called Estlcam.
it is cheap and easy to handle, also for other parts to create cnc code.

https://estlcam.de/

sorry the side is in German, but the Software can be switched to english.

885
i do not think that the G04 is causing the Problem. try to run a simple test like this


G01 X10 F300
G04 P0.1
G01 X0
G04 P0.1
G01 X10
G04 P0.1
G01 X0
G04 P0.1
G01 X10
G04 P0.1
G01 X0
G04 P0.1



886
General Mach Discussion / Re: G82 Drilling Cycle
« on: July 15, 2020, 05:30:51 AM »
in your main Folder (noramly c:\Mach3) should be a file named:

Mach3MillGcode.htm

this file contains the G-Code help and can also be opened with any browser.

887
General Mach Discussion / Re: G82 Drilling Cycle
« on: July 15, 2020, 02:52:53 AM »
here is a screenshot of Mach G-Code help, witch explains the retract Position of z-axis.

888
General Mach Discussion / Re: G82 Drilling Cycle
« on: July 14, 2020, 05:17:52 AM »
yes just Play a bit around and drill some hole in the air.

889
General Mach Discussion / Re: G82 Drilling Cycle
« on: July 14, 2020, 04:18:20 AM »
G54 is the fixture Offset (if specified)
you can use the G-Code button on Mach3 Standard Screen set for help, and examples for the G-Code as well.

here an other example by using the L Parameter
Code: [Select]
G90 G0 G54 X0 Y0 S2000 M3
G91 G82 G98 X4 Y5 Z-6 R1 P1 F150 L3

G0 Z5
M5

machine will move to X0/Y0
then to X4/Y5 drill the first hole
then to X8/Y10 drill the 2nd hole
then to X12/Y15 and drill the 3rd hole

890
General Mach Discussion / Re: G82 Drilling Cycle
« on: July 14, 2020, 03:23:31 AM »
here a small example to drill 4 holes

Code: [Select]
G90 G0 G54 X-55 Y-55 S2000 M3
G82 G98 Z-6 R1 P1 F150
Y55
X55
Y-55
G80

G0 Z5
M5

X/Y Zero is in Center of the holes

1st hole at X-55 Y-55
2nd hole at X-55 Y55
3rd hole at X55 Y55
4th hola at X55 Y-55

hope that helps