Hello Guest it is April 28, 2024, 08:37:08 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 - garyn

Pages: « 1 2
11
General Mach Discussion / Re: Bit depth zeroing tool help
« on: May 24, 2022, 02:35:32 PM »
I do get an error message.  It is  "scripter compile error  h"

12
General Mach Discussion / Re: Bit depth zeroing tool help
« on: May 24, 2022, 07:52:56 AM »
It is a button script.

13
General Mach Discussion / Re: Bit depth zeroing tool help
« on: May 23, 2022, 07:33:32 PM »
CurrentFeed = GetOemDRO(818) 'Get the current feedrate to return to later
CurrentAbsInc = GetOemLED(48) 'Get the current G90/G91 state
CurrentGmode = GetOemDRO(819) 'Get the current G0/G1 state

If GetOemLed (825)=0 Then 'Check to see if the probe is already grounded or faulty
DoOEMButton (1010) 'zero the Z axis so the probe move will start from here
Code "G4 P3" ' this delay gives me time to get from computer to hold probe in place
Code "G90 G31Z-4. F2" 'probing move, can set the feed rate here as well as how far to move
While IsMoving() 'wait while it happens
Wend

'ZProbePos = GetVar(2002) 'get the exact point the probe was hit
'Code "G0 Z" &ZProbePos 'go back to that point, always a very small amount of overrun
'While IsMoving ()
'Wend

Call SetDro (2, .125) ' change .060 to your plate thickness and then adjust for final accuracy
Sleep 200 'Pause for Dro to update.
Code "G1 Z1. F50" 'put the Z retract height you want here, must be greater than the touch plate thickness
While IsMoving ()
Wend
Code "(Z axis is now zeroed)" 'puts this message in the status bar
Code "F" &CurrentFeed 'Returns to prior feed rate
Else
Code "(Z-Plate is grounded, check connection and try again)" 'this goes in the status bar if applicable
End If
If CurrentAbsInc = 0 Then 'if G91 was in effect before then return to it
Code "G91"
End If
If CurrentGMode = 0 Then 'if G0 was in effect before then return to it
Code "G0"
End If   

14
General Mach Discussion / Re: Bit depth zeroing tool help
« on: May 23, 2022, 04:38:46 PM »
I also am having a problem with the auto tool zero .  The script is installed and the green light appears on the diagnostic screen under digitize when the router bit is touched with the zeroing plate.  The problem is when you push the button nothing moves--the z axis does not move at all.  I have checked all the wiring and ground and everything appears to be ok.  What is the solution?

15
General Mach Discussion / Re: Logitech Wingman
« on: March 21, 2009, 12:40:29 PM »
I read completely through all the posts you referenced.  I saw the question asked a couple of times, "Where do I find keygrabber?" but no one saying where to find it.  The posts suggests it is discussed in the Mach 2 pdf manul 6.11.  I get an error message when trying to open that manual in the documentation section of the Mach website.  These posts also suggest that it might be found in the screen sets, #4, maybe, but not sure what I am looking for.  Guess I need something more specific.

I am totally new to this kind of thing, so I guess I'm not sure what i'm doing.  The keygrabber will give me the keystroke codes which in turn are programmed into my remote, in my case the Logitech Wingman.

Thanks in advance for the help.

16
General Mach Discussion / Logitech Wingman
« on: March 20, 2009, 03:48:47 PM »
Has anyone sucessfully used a Logitech Wingman game pad as a remote control with Mach 3?  I am wanting to remotely jog all axes, move to 0,0, and start the cutting program.

17
General Mach Discussion / Re: Limit/Homin switches
« on: May 16, 2008, 11:34:31 AM »
Thanks guys.  Looks like the problem has been fixed by simply editing the script for the Ref All button to add  Code   "G28".  The one fluke that I wasn't expecting was that the X axis moved about 25" and then came back to its intended spot.  The 2nd time it only moved about 3" and then came back to its intended spot. 
Thanks again for all the help.

Gary

18
General Mach Discussion / Limit/Homin switches
« on: May 16, 2008, 10:03:03 AM »
First time poster and newbie to Mach 3. 

I have a homing/limit switch on 3 different axis, wired in series, all hooked to the same port and pin.  After each switch is tripped in the Reference All Home routine I want the machine to move to some offsets that will become my regular working 0,0.  I understand this is possible to do via the homing/limit function.  I have placed the offset dimesnions in the G28 boxes in the lower left of the Homing/Limit screen.  The Auto Zero function is turned on for all 3 axis. but when the Ref. All Home button is pushed the machine goes to the different home postions for each axis, but does not move to the designated offsets.  What am I doing wrong?

Pages: « 1 2