Hello Guest it is April 24, 2024, 11:41:53 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

1701
General Mach Discussion / Re: Update Tool Data using G10?
« on: February 29, 2008, 09:43:00 AM »
If you modify the macro, now that you can, to look like this it will only run in cycle.

' M1000.m1s

' Macro to increment tool height offset
' using M1000 P1 Q.004
' P = offset number to update
' Q = amount to alter offset by

If IsLoading() Then
  ' Do now't
Else
  P_val = Param1()
  Q_val = Param2()
  offset = GetToolParam(P_val,2)
  offset = offset + Q_val
  Code "G10 L1 P" & P_val & " Z" & offset
End If

'End

Graham.

1702
Works in progress / Re: Led City
« on: February 28, 2008, 05:43:20 AM »
I like that screen, please send me a copy of the finished set.  :)

Graham.

1703
Was the g-code generated from a Corel Draw file?

Graham.

1704
General Mach Discussion / Re: inconstant speeds?
« on: February 28, 2008, 03:39:59 AM »
If you are doing lots of tiny moves then Mach will slow down, try using CV mode.

Graham.

1705
General Mach Discussion / Re: Update Tool Data using G10?
« on: February 27, 2008, 05:01:44 PM »
 :)

Graham.

1706
Do you have CV mode selected, if not that will smooth things out.

Graham.

1707
Show"N"Tell ( Your Machines) / Re: Help needed
« on: February 27, 2008, 11:21:37 AM »
Post some pictures of the machine so we get a better idea of what is needed for your conversion.

Use the Additional Options link at the bottom left of the reply window to add your pictures. 800*600 max size.

Graham.

1708
Show"N"Tell ( Your Machines) / Re: Help needed
« on: February 27, 2008, 09:20:31 AM »
Serhey,

if you have questions, just ask.  There are a lot of helpful people here with a wealth of knowledge.

Graham.

1709
G-Code, CAD, and CAM discussions / Re: Drawing an Airfoil for LCam
« on: February 27, 2008, 08:40:52 AM »
spline-fit polyline sound very near. I will try to convert it for you.

Graham.

1710
General Mach Discussion / Re: Update Tool Data using G10?
« on: February 27, 2008, 08:36:42 AM »
You could use this macro, save it as M1000.m1s in your current profile.

Graham.

' M1000.m1s

' Macro to increment tool height offset
' using M1000 P1 Q.004
' P = offset number to update
' Q = amount to alter offset by

P_val = Param1()
Q_val = Param2()
offset = GetToolParam(P_val,2)
offset = offset + Q_val
Code "G10 L1 P" & P_val & " Z" & offset

'End