Hello Guest it is April 19, 2024, 07:26:46 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

2151
Modbus / Re: Mod-IO communication problem
« on: March 28, 2007, 07:07:50 PM »
Is JP4 set to RS232 (pins 2-3) or RS485 (pins 1-2), it should be RS232.

Is the selector wheel set to zero ?

Graham.

2152
General Mach Discussion / Re: metric sae conversions
« on: March 28, 2007, 06:33:20 PM »
CAD systems usually work in units, its the post that sets inches or mm's, if you look in the posts you will be able to set them to inches.

Attach a post for us to look at.

Graham.

2153
General Mach Discussion / Re: Variables - revisited
« on: March 28, 2007, 09:49:36 AM »
Or if you only want to change 1 variable :

#1=1.5
#2=[#1-[#1*2]]

Graham.

2154
Hi Paul,

Welcome to the forum.

The G28 command is used to send the machine to zero return :-

G28 Z0
G28 X0 Y0

To set offsets in program you should look at G10 or you can use # commands

#1=100
#2=25.
G00 X[#1+#2]
Y[#2]

Graham.

2155
It looks the same but its not.

G03 with an R calculates an arc from where you are now to the end point

G03 with an I,J is an offset from the current point.

Your first bit of code is already at the end point so can't calculate an end point

Your second bit of code just moves by the I amount.

The R command in a G02/03 can not do more than 180 degrees.

If you are trying to mill a hole you can do :-

G00 X-5.378 Y-3.25 Z.1
G01 Z-.38 F2.
X-5.506 F3.937
G03 I.128
G00 X-5.378
G00 Z.1

This will do a full 360 cut.

Graham.

2156
Tangent Corner / Just for fun, don't go and make one
« on: March 26, 2007, 10:44:55 AM »
Somebody sent me this, it looks like a great design.

Graham.

2157
General Mach Discussion / Re: mastercam x
« on: March 18, 2007, 05:50:15 AM »
Fanuc 6 or 11 post is normally ok.

Graham.

2158
Newfangled Solutions Mach3 Wizards / Re: Strange toolpath !
« on: March 17, 2007, 05:55:25 AM »
I don't use the NFS programs so I can't check it but it looks like a cutter compensation error to me, can you change the lead in/out options.

Graham.

2159
G-Code, CAD, and CAM discussions / Re: write my own gcode
« on: March 16, 2007, 08:17:08 PM »
I have sent you a PM

Graham.

2160
G-Code, CAD, and CAM discussions / Re: write my own gcode
« on: March 16, 2007, 07:52:08 PM »
Hi Bob,

what formats will the software export?

Graham.