Hello Guest it is May 03, 2024, 02:37:29 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

1251
General Mach Discussion / Re: What is a "MODERATOR"?
« on: January 15, 2010, 06:18:32 PM »
 ;D

Graham

1252
General Mach Discussion / Re: What is a "MODERATOR"?
« on: January 14, 2010, 06:28:00 PM »
The original idea was to have moderators from all time zones so we had 24 hour coverage.  As we have just about stopped the spammers that used to drive us all mad with there constant bombardment we probably don't need as many, but what the hell it costs nothing to have plenty.

Graham

1253
G-Code, CAD, and CAM discussions / Re: support for touch probes
« on: January 13, 2010, 05:23:20 PM »
No, Mach3 has to have a file loaded into memory, Mach3 has no limit on file size.

Graham

1254
G-Code, CAD, and CAM discussions / Re: support for touch probes
« on: January 13, 2010, 04:44:28 PM »
G31 z-10 f25. will move the z axis minus 10mm unless it senses the probe touch something. At the touch point it stops and you can take a reading and do what ever you want with the data by calling a M code.

Graham

1255
When you are playing with macro language commands most g-code systems are different, # is not part of the standard, Mach3 follows the Fanuc standard.

The only way round it is search and replace.

Graham

1256
G-Code, CAD, and CAM discussions / Re: support for touch probes
« on: January 13, 2010, 04:08:04 PM »
The probe can be mounted anywhere on the machine, you will have to know where it is in relation to the spindle so you know how much to offset the x,y positions by.

You can write your own commands into the g-code to take measurements at known points to do this you can use the G31 command.

Graham
 

1257
General Mach Discussion / Re: 4th Axis running to slow
« on: January 13, 2010, 03:44:12 PM »
Have you set use radius for feed in toolpath config?

Have you set the radius of the part in the setting screen?

Graham

1258
VB and the development of wizards / Re: counting iterations of macro
« on: January 12, 2010, 07:00:34 AM »
If you set your DRO to 222 and run this program the DRO counts down to zero, you have to use a small delay to give mach time to update the DRO's.

Graham

%
G18 (X-Z plane)
G20 (inch units)
G90 (absolute coordinates)
M98 P01 L6 (perform subroutine 01 6 times)
M30 (end program)

O01 (the subroutine)
G00 Z0.2500
G00 Z0.0000
G4 P100
M99 (return)
%

1259
SmoothStepper USB / Re: Smoothstepper and Mach problems
« on: January 10, 2010, 07:21:27 AM »
So do I take it you are setting a new zero point in mid program run?

Graham

1260
General Mach Discussion / Re: Stupid Probing Question....
« on: January 02, 2010, 09:31:49 AM »
Most probing routines take 2 or 3 hits per reading, first is a fast traverse to find the object, it then backs off say 1mm (.040") and then slow feeds to find position. For very fine detail it backs off again .25mm (.010") and then creeps to find the position. At this point the final reading is taken. The accuracy is then down to the trigger action of the probe.

Graham