Hello Guest it is May 03, 2024, 06:05:12 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

2131
General Mach Discussion / Re: Too fast for pulley message
« on: April 19, 2007, 02:01:37 AM »
You have commanded a spindle speed over the max set in spindle pulley speeds.  Change the pulley speed in config and it will be ok.

Graham.

2132
General Mach Discussion / Re: hickup at 12 and 6 oclock
« on: April 19, 2007, 01:58:17 AM »
What is it like if you remove the G64 from the code and replace it with G61.

Graham.



2133
Try it like this

If GetLED (808)= 1 Then
  CODE "G90 G54"
  CODE "G00 Y1.0"
  CODE "M03"
  CODE "G01 Y20.0 F70"
  CODE "G90 G00 Y5.0"
  CODE "M05"
  CODE "M30"
  While IsMoving()
  Wend
End If

Graham.

2134
G-Code, CAD, and CAM discussions / Re: G code cutter comp problem
« on: April 13, 2007, 07:06:24 PM »
It looks to me that the maximum tool diameter is .0625, so set G42 P.031 and it should work.

Graham.

2135
General Mach Discussion / Re: re: Mach-3 for a lathe
« on: April 13, 2007, 06:37:11 PM »
On the C11G have you got the safety charge pump set to enabled JP3 pics 2-3 if so disable it. Pins 1-2

Graham.

2136
General Mach Discussion / Re: re: Mach-3 for a lathe
« on: April 13, 2007, 06:26:38 PM »
use the arrow keys on the keyboard

2137
General Mach Discussion / Re: re: Mach-3 for a lathe
« on: April 13, 2007, 06:18:30 PM »
Hi Dennis,

have you got the enable part of the C11G wired to 5 volt, if not nothing will move.

Graham.

2138
General Mach Discussion / Re: multi lead threading
« on: April 13, 2007, 06:07:36 PM »
When I do multi start threads I use the offset Z method.

Graham.

2139
G-Code, CAD, and CAM discussions / Re: G code cutter comp problem
« on: April 13, 2007, 08:42:22 AM »
post your program so we can have a look.

Graham.

2140
General Mach Discussion / Re: Roatary/stepper stalling
« on: April 13, 2007, 04:13:57 AM »
Hi Chris,

try this modified version of your code, and let me know what happens, also have a look at the comment at the end of your code.

Graham.

G90 G94 G64 (SETUP PARAMETERS)
M6 T4 (TOOL4)
M08 (COOLANT)
M03 (SPINDLE ON)
G00 X0 Y0 Z.2
G00 X-.625
G00 Z0
G91 G01(INCRIMENTAL)
G01 Z-.05 F20
A360(SLOT RUN)
G01 Z-.05
A360
G01 Z-.05
A360
G01 Z-.05
A360
G01 Z-.05
A360
G01 Z-.05
A360
G01 Z-.0125
A360
G01 X.01 (WIDEN SLOT)
G01 A360
G01 X-.02
G01 A360
G01 X.01
G00 Z.3125 (RETURN TO 0)
G90 (ABSOLUTE)
Z.2 (SAFEZ)
G00 X-1.125
G00 Z0
G91 G01(INCRIMENTAL)
G01 Z-.05
A360(SLOT RUN)
G01 Z-.05
A360
G01 Z-.05
A360
G01 Z-.05
A360
G01 Z-.05
A360
G01 Z-.05
A360
G01 Z-.0125
A360
G01 X.01 (WIDEN SLOT)
G01 A360
G01 X-.02
G01 A360
G01 X.01
G00 Z.3125 (RETURN TO 0)
G90 (ABSOLUTE)
Z.2 (SAFEZ)
G00 X-1.625
G00 Z0
G91 G01(INCRIMENTAL)
G01 Z-.05
A360 (SLOT RUN)
G01 Z-.05
A360
G01 Z-.05
A360
G01 Z-.05
A360
G01 Z-.05
A360
G01 Z-.05
A360
G01 Z-.0125
A360
G01 X.01  (WIDEN SLOT)
G01 A360
G01 X-.02
G01 A360
G01 X.01
G00 Z.3125 (RETURN TO 0)
G90 (ABSOLUTE)
Z.2 (SAFEZ)
G00 X-2.125
G00 Z0
G91 G01(INCRIMENTAL)
G01 Z-.05
A360 (SLOT RUN)
G01 Z-.05
A360
G01 Z-.05
A360
G01 Z-.05
A360
G01 Z-.05
A360
G01 Z-.05
A360
G01 Z-.0125
A360
G01 X.01  (WIDEN SLOT)
G01 A360
G01 X-.02
G01 A360
G01 X.01
G00 Z.3125 (RETURN TO 0)
G90 (ABSOLUTE)
G00Z.2 (SAFEZ)
G00 X-2.625
G00 Z0
G91 G01(INCRIMENTAL)
G01 Z-.05
A360 (SLOT RUN)
G01 Z-.05
A360
G01 Z-.05
A360
G01 Z-.05
A360
G01 Z-.05
A360
G01 Z-.05
A360
G01 Z-.0125
A360
G01 X.01  (WIDEN SLOT)
G01 A360

(this bit below looks wrong to me)
(its going to scroll through)
(the job)

G01 X-1 A7200 F20
G01 A360
G01 X.01
G00 Z.3125
G90 (ABSOLUTE)
M9 M5 (COOLANT AND SPINDLE OFRF)
G00 Z.2
X0 Y0 Z.2
M30