Hello Guest it is April 26, 2024, 03:37:45 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

1201
G-Code, CAD, and CAM discussions / Re: real meaning of G28 ?
« on: March 18, 2010, 03:50:28 PM »
Mach3 Version 4 is much more compliant with the standard, but in saying that not many modern CNC controls follow the standard to the letter, Mach3 will be the same, there are enhancements and omissions and as such running any code created for any other G-code control must be run with care.

Regards
Graham
  

1202
G-Code, CAD, and CAM discussions / Re: real meaning of G28 ?
« on: March 18, 2010, 02:26:06 PM »
Who said that Mach3 is NIST compatable ?

Graham

1203
G-Code, CAD, and CAM discussions / Re: real meaning of G28 ?
« on: March 17, 2010, 06:20:10 PM »
G28 X0 Y0 Z0 will send the machine to a known home position, e.g. you have homed the machine manually.

G28.1 X0 Y0 Z0 will search for the home position.

G28 X5. will go to home via the position X5. ( used to avoid obstructions and the like )

Graham

1204
G-Code, CAD, and CAM discussions / Re: Mach3 path over-run
« on: March 16, 2010, 06:07:22 PM »
you need to do a feed/lead out line into open space within your rectangle.

Search the forum and manual for lead in and/or lead out

Graham

1205
Are you in table view?

Try toggling the table view button.

Graham

1206
Are you running the DEMO version?

When Mach3 draws the tool path the feed lines are in blue and the rapid lines are in red.

If you double click the display the zoom is reset, left click rotates and right click pans the image.

Graham

1207
G-Code, CAD, and CAM discussions / Re: MasterCAM X and Tool Offsets
« on: March 12, 2010, 07:10:59 AM »
That is correct, when you specify the tool in MC you will need to also specify the offset to use, it may be in the tool library or you may need to adjust it as you pick the tool.

Graham

1208
G-Code, CAD, and CAM discussions / Re: MasterCAM X and Tool Offsets
« on: March 11, 2010, 05:40:54 PM »
Hi,

its not a mach3 problem, you need to edit the post processor to resolve this issue, if you search the web you will find modified versions of the mach3 mastercam post.

Graham

1209
VB and the development of wizards / Re: Spindle open
« on: March 08, 2010, 07:21:15 AM »
You need something like this in your M3 macro

If IsActive(INPUT3) then
  Dospincw()
End If

Graham

1210
The only thing that I can see in the previous code is that the G52 should be cancelled (G52 X0) before the next one is commanded.

Graham