Hello Guest it is May 07, 2024, 05:13:16 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

951
Line N60 should look more like this :-

N60 G43 H1


952
G-Code, CAD, and CAM discussions / Re: G-code wanted
« on: August 01, 2013, 11:00:22 AM »
there is code for one of them on this site somewhere, PoppaBear (Scott) did it some time back.

953
Share Your GCode / Re: trying to cut a bushing but....
« on: July 25, 2013, 04:00:33 PM »
all you need to do is this :-

Rapid to the center + the circle radius + or - the radius of the cutter e.g.

G20 G40
(1/2" dia cutter and 3" hole centered around X0 Y0)
G00 G90 X1.25 (1.5-.25) Y0 Z1.
Z.05
G01 Z-1. F10.
G02 I-1.25
G00 Z1.
(Then a 1/2" cutter and a 4" boss centered around X0 Y0)
G00 X2.25 (2.0+.25) Y0 Z1.
Z.05
G01 Z-1. F10.
G02 I-2.25
G00 Z1.
M30

954
I sounds as if the tool definition in BOBCAM has a max length of 2"


955
G-Code, CAD, and CAM discussions / Re: G02 / G03 Problem
« on: July 17, 2013, 04:45:14 PM »
Try it like this :-

N0030 G21 (Units: Metric)
N0040 G53 G90 G91.1 G40
N0090 M06 T2 F2000.0  (2000mm/min)
N0100 G00 Z20.0000
N0110 X89.4288 Y86.4878
N0120 Z0.0000
N0130 G28.1 Z0 (Z-Achse auf Home fahren)
N0140 G00 Z0 (Z-Achse von Offset auf 0)
N0150 M03
N0160 G03 J9.7500
N1000 M05 M30

956
G-Code, CAD, and CAM discussions / Re: M6 Macro Help
« on: July 16, 2013, 04:16:08 PM »
All I will say is, don't expect future versions of Mach to work that way.

957
G-Code, CAD, and CAM discussions / Re: M6 Macro Help
« on: July 16, 2013, 10:28:44 AM »
 :o


958
G-Code, CAD, and CAM discussions / Re: M6 Macro Help
« on: July 16, 2013, 03:43:06 AM »
I am not sure what it is you are trying to do, G28 on its own will do nothing useful it needs an axis commanded with it, e.g. G28 X0 or G28 Z0 to tell it which axis to home not only that but you would normally have the machine in G91 mode to stop it rapiding via the datum point first.

A normal G28 command would look something like this :-

G91 G28 X0 Y0 Z0

This will send all 3 axis to the home position in one direct move.

G90 G28 X0 Y0 Z0

Will move to the home position by going to the current XYZ zero point first then to the machines home position.

You can also use G91.1 with G28 to search for the home position.


959
G-Code, CAD, and CAM discussions / Re: G54-G59 Work offsets
« on: July 10, 2013, 11:03:50 AM »
Something along this line will do the job

Graham

%
(USE FIXTURE OFFSET G54)

G21 G40
T1 M6
G52 X0 Y0
G54 G00 G90 G43 X0 Y0 Z25. H1 S750 M3 (MOVE TO FIXTURE DATUM)
(FIXTURE LOCATION 1)
G52 X20. Y20.               (SET FIRST LOCAL DATUM)
M98 P0001                    (CALL SUB PROGRAM)
G52 X0 Y0                     (CANCEL LOCAL DATUM)

(FIXTURE LOCATION 2)
G52 X50. Y20.
M98 P0001
G52 X0 Y0

(FIXTURE LOCATION 3)
G52 X80. Y20.
M98 P0001
G52 X0 Y0

(FIXTURE LOCATION 4)
G52 X80. Y50.
M98 P0001
G52 X0 Y0

(FIXTURE LOCATION 5)
G52 X50. Y50.
M98 P0001
G52 X0 Y0

(FIXTURE LOCATION 6)
G52 X20. Y50.
M98 P0001
G52 X0 Y0
M5
M30

O0001 (SUB PROGRAM)
G00 X-5. Y0                   (MOVE TO FIRST HOLE)
G81 Z-10. R1. F125.        (DRILL FIRST HOLE)
X5.                                (DRILL SECOND HOLE)
G80
M99
                        
%

960
Post a IGES model of the part so we can see just what you are trying to make.