Hello Guest it is April 26, 2024, 10:18:41 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

1191
G-Code, CAD, and CAM discussions / Re: Need Help!! With school project
« on: March 30, 2010, 05:58:55 PM »
Search the forum for G52 command, this allows you to write your sub in absolute and call G52 X? Y? as local datum point. Use G52 X0 Y0 to cancel the shift before you issue the next.

Graham

1192
General Mach Discussion / Re: Software or Mechanical Problem
« on: March 28, 2010, 12:56:18 PM »
Hi Phillip,

post your code here and hi-light the problem area in the code.

Graham

1193
If you are wanting to have the machine rapid one axis and be feeding on another then Mach3 V3****************** can NOT do this yet, to do that you need multi planners, that is for the future.

Graham

1194
You can set certain ones with a #number , for example you can set fixture offsets that will update there positions by setting the #2500,2501,2502, for XY&Z on G54.

To zero out the absolute figures you just do a G92 X0 Y0 Z0 or any combination of axis.

Graham

1195
Go to the help menu and your name will be shown in the about window if its a licensed version.

Graham

1196
Are you using the DEMO version?

Graham

1197
The only way to do loops at the moment is by using subs or VB macros

You can use # vars and operators but no IF's or WHILE, GOTO's or conditions LE, etc.

Search the forum for M98 and you will find lots of examples to do loops and conditions.

Graham

1199
What happens if you run this code

G00 G91
X1.
Y1.
Z-.1
C10.
B10.
M30

Graham


1200
G-Code, CAD, and CAM discussions / Re: real meaning of G28 ?
« on: March 18, 2010, 04:00:35 PM »
If Mach has no known home position it can not work to absolute values so it reverts to incremental values in G53

Graham