Hello Guest it is April 19, 2024, 12:28:22 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 - Graham Waterworth

841
One on one phone support. / Re: Mach3 Errors
« on: September 18, 2018, 08:03:20 PM »
What version of Mach3 are you running?

842
Your steps per is out or you have scaling set to 1.75

843
That is not a good post, in most cases you would move X&Y to a safe start point and then do your first Z move e.g.

N1 (END MILL)
T24 M6
G00 G90 X1. Y2. S1600 M3
G43 Z4. H24
Z0
G01 Etc.

or like this :-

N1 (END MILL)
T24 M6
G00 G90 G43 X1. Y2. Z4. H24 S1600 M3
Z0
G01 Etc.

Ether way is much safer because the tool offset is active before it is above the work, a long tool could hit the job the way you have it now.


844
In most cases the probe will be your master tool as this is the tool you will set your fixture offsets with.

Are you using just a spindle probe or do you have a tool setter too?

Now,

It depends how you have your machine set but the other tool lengths can be relative to the master tool (probe) or if you are working from the spindle end face every tool offset including the master tool (probe) has the length from the spindle face to the end of the working face of the tool.  I say working face because the tool tip is not always on the end of the tool e.g. back spot facing bar.

Both methods have advantages/disadvantages most hobby users use master tool and relative tool offsets, industrial use spindle end and tool lengths.

In most cases you can use any tool number as long as its got the right tool length in the offset.  Normally zero for relative way and the tool/probe trigger length for spindle end way.



845
Mach4 General Discussion / Re: G32 funny feedrate issue
« on: August 06, 2018, 04:09:44 PM »
Are you running steppers or servos?

846
G-Code, CAD, and CAM discussions / Re: Inside of the ring engraving
« on: July 20, 2018, 08:45:15 PM »
I have seen it done with the indexer on its back and the tool has a side mount diamond the text is drawn in the XZ plane and wrapped to the cylinder z up and down indexer rotates.


847
What happens if you just run this bit of code no extra bits or edits.

%
G21 G40 G49 G80
G91 G28.1 Y0 Z0
M30
%

848
On my machines I do it this way :-

%
G21 G40 G49 G80
G91 G28.1 Y0 Z0

N1(TOOL 1)
T1 M6                           
G54 G00 G90 Y-79                                   
S3250 M3
G43 H1 Z15               
G1 F250   
Etc....
%

849
CS-Lab / Re: Confused on how to address outputs in VB with CSMIO
« on: June 01, 2018, 06:45:19 PM »
Cslabs do not use pin numbers they use output numbers so Machs output4 pin number is not Cslabs pin number but the output number on that pin.

So on the Cslabs IP-A device, connection unit terminal 5(out) & 14(return) is output4 so in Mach3 you set output pin to 4

Then in VB you can call  ActivateSignal(OUTPUT4) or DeActivatSignal(OUTPUT4)

Even more confused now?


850
Do you do an absolute return to start before the second cut ?