Hello Guest it is May 06, 2024, 04:48:19 AM

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

1001
General Mach Discussion / Re: Newbie Help Please with Tool Offsets
« on: June 10, 2012, 11:21:57 AM »
Have a look at CAMBAM its free and it works or you can pay a small amount and have the latest and greatest version.

http://www.cambam.info/

Graham

1002
G-Code, CAD, and CAM discussions / Re: G code and change end mill
« on: June 10, 2012, 04:33:52 AM »
The line can be ' G91 G28 Z0 M6' for a tool change on a automatic tool changer or 'T2 M6' for a manual tool change.

G28 needs an axis designation e.g. G28 Z0 or G91 G28 X0 Y0 Z0

Graham

1003
It sounds as if your touch plate thickness is set at 2" thick


1004
G-Code, CAD, and CAM discussions / Re: Cambam question
« on: May 18, 2012, 08:04:08 AM »
Select the item in the menu tree and click on its properties, there will be a list with height, width etc, just enter new values and press enter.

1005
G-Code, CAD, and CAM discussions / Re: Powermill to Mach3 post
« on: May 10, 2012, 04:20:54 AM »
The DelCAM forum is your best bet.

http://forum.delcam.com/

Graham

1006
Hi TomR,

are you using a licensed or the demo version of Mach3, the Demo version has limitations.

Graham

1007
The red high lighted block is the problem area, if you are moving from one fixture to the next you do not need to go back to xyz zero.

N4280 G1 X2.4652 Y.4739 Z-.2216
N4290 X2.4891 Y.4973 Z-.1881
N4300 X2.5125 Y.5212 Z-.2216
N4310 X2.5353 Y.5457 Z-.255
N4320 G3 X2.8941 Y1.475 R1.3827
N4330 G0 Z.5
N4340 M5
N4350 G49 G0 Z0.
N4360 X0. Y0.
N4370 A0.
(--- G55 Work Offset Was Added ---)
G55

%

Just add the fixture offset to the first move line of the second/third fixture code.

N100 G20
N110 G0 G17 G40 G49 G80 G90
( DRILL )
N120 G49 T1 M6
N130 G55 G0 G90 X1.8102 Y1.0638 A0. S5704 M3
N140 G43 H1 Z.5
N150 Z.2

1008
The code looks fine, if you remove the G91 G28 Z0 & G28 X0 Y0 A0 lines that will stop it going to machine reference at the end but there is nothing in the code to make it dive into the table.

Graham

1009
G-Code, CAD, and CAM discussions / Re: H0 AND D0
« on: March 27, 2012, 05:43:35 PM »
That would be the sensible thing to do but you can use any offset with any tool.


1010
G-Code, CAD, and CAM discussions / Re: H0 AND D0
« on: March 26, 2012, 08:50:32 AM »
H0 & D0 should be more like H1 D1 and are used along with G41, 42 & 43

G43 H1 sets the tool height offset to offset 1 in the tool table. Hnn can be in the range of 1 to 254

G41/42 D1 tells tool compensation to use diameter offset 1 from the tool table to adjust the tool path by the rad of that tool offset.

Graham