Hello Guest it is April 24, 2024, 02:15: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

1311
G-Code, CAD, and CAM discussions / Re: Problems loading cad files to L-cam
« on: November 11, 2009, 06:52:16 PM »
Yes, and in an early version, R14 or 2000


1312
G-Code, CAD, and CAM discussions / Re: Problems loading cad files to L-cam
« on: November 11, 2009, 06:14:31 PM »
export your files as DXF acad R14 or 2000 format.


1313
It could be that Mach3 is set for absolute arcs and MaxNC is incremental, you can change Mach3 in the config screen for abs or inc arcs.

Graham

1314
G-Code, CAD, and CAM discussions / Re: CanĀ“t call the subroutine twice
« on: November 05, 2009, 08:33:48 AM »
It should look more like this :-

%
N10 G0 Z2
N20 M3 S2000 F200
N30 G1 X0 Y0
N40 Z0
N50 M98 P10
N70 X-20
N80 M98 P10
M30

O10
G91 Z-0.5 F70
G90 Y-30 F150
G91 Z-0.5 F70
G90 Y0 F150
M99
%

1315
You can do what you are doing you just need to use the correct sets of variables:-

1 to 33 are local variables, there value can only be used within the current g-code file,

100 to 149 and 500 to 531 are global and can be used over any number of files.

In the later versions of Mach variables 500 to 600 are global variables.

Mach version 4 is much more strict about # values and locks certain blocks to read only.

G52, G92 and all the G54-G59 fixture offsets position data is stored in #2500 range

Tool offset data is stored in the #2000 range.

Graham

1316
Set your G54 XY & Z to a known value then read #2501, 2 & 3 see what you get.

Graham

1317
If you are using the demo version it has a line limit, the full version has not.

Graham

1318
Just a word of warning :-

#2001 onward are used by Mach3 as data locations for tool offsets, you may get strange results if you use them.  #100 to #149 and #500 to #531 are user variables #1000 and over are system read only use. That said you can write to them to set system values.

Graham



1319
General Mach Discussion / Re: bumped into this today
« on: November 01, 2009, 05:13:57 AM »
A G02 or G03 when using R can only be commanded with less or equal to a 180 degree move, in some instances the rounding error from the previous and next moves can make this 180.0000001 so the error happens, the new versions have this fixed.

Graham

1320
General Mach Discussion / Re: Tool offset missed
« on: November 01, 2009, 05:06:46 AM »
Do you have a G43 in your g-code file?

Graham