Hello Guest it is May 03, 2024, 08:36:15 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

1301
G-Code, CAD, and CAM discussions / Re: For development
« on: November 29, 2009, 03:44:23 PM »
This is what I get from your code in Mach3 and also what AlphaCAM makes of it :-

1302
General Mach Discussion / Re: marking on weddingrings
« on: November 26, 2009, 06:12:16 PM »
Talk to Chris here (user name = Chris.Botha) he dose amazing things with Mach3 and rings, here is his web site :-

http://sites.google.com/site/digitaljeweller/

Graham

1303
G-Code, CAD, and CAM discussions / Re: G54-G59 Work offsets
« on: November 26, 2009, 06:04:01 PM »
 :)

1304
G-Code, CAD, and CAM discussions / Re: G54-G59 Work offsets
« on: November 26, 2009, 04:56:26 PM »
What do you have set in general config, is it like this :-

1305
G-Code, CAD, and CAM discussions / Re: G54-G59 Work offsets
« on: November 24, 2009, 07:42:53 PM »
On the offsets page click 'Save work offsets', then click 'Save' in the window that pops up.

If that dose not work, go to Config menu, select Fixtures..., click save.

Graham

1306
General Mach Discussion / Re: Servos are herky-jery/very loud w/ mach3 ??
« on: November 24, 2009, 10:43:24 AM »
What have you got set in mach's motor tuning, your counts per should be 2048 for each rev of the motor, if this is set way too low the motor will be hunting all the time.

Graham

1307
Have you a picture showing the problem?

Graham

1308
General Mach Discussion / Re: 12 ATC Initialization MACRO HELP
« on: November 19, 2009, 12:22:17 PM »
Why not do a G28.1 and let mach do a normal find home position.

You can have a 'home off position' set for the C axis which will then allow you to do a rapid move to the required starting position.

That's how I do mine.

Or am I way off what you are trying to do.

Graham

1309
General Mach Discussion / Re: Has anyone retrofitted a 4 axis lathe?
« on: November 19, 2009, 12:08:10 PM »
The main problem you will have with a 4 axis lathe is that mach blends all axis motion together, you need to be able to run each turret separate, this is not possible at the moment so one turret can not be in rapid and one cutting so you loose the benefit of the 2 turrets.

Graham


1310
General Mach Discussion / Re: Viewing Parameters
« on: November 14, 2009, 08:13:35 PM »
Now I have read your whole topic I think I get what you want.

What you need to do is create a macro like this :-

Enter the following lines into notepad and save them as M1800.m1s in the macro folder inside the profile folder you are using e.g. C:\Mach3\Macros\Mach3Mill making sure the last line has a return on the end.

SetVar(100,GetoemDRO(83))
SetVar(101,GetoemDRO(84))
SetVar(102,GetoemDRO(85))

Now in your g-code program when ever you want the current position of the machine relative to the home position command M1800

Then #100 will be equal to the x position #101= to y and #102 = to z

So your program would look like this

G00 X0 Y0 Z10.
M1800
(Do calculations here)
#100=[#100/2]
#101=[#101/2]
#102=[#102/2]
G00 X#100 Y#101 Z#102
M1800
Etc.

Graham