Hello Guest it is March 29, 2024, 09:28:36 AM

Author Topic: Turning ON Tool Change and Safe Z Positions  (Read 5072 times)

0 Members and 1 Guest are viewing this topic.

Turning ON Tool Change and Safe Z Positions
« on: August 11, 2011, 07:13:35 AM »
Hello All,

I have noticed on the settings screen there is an area to input Tool Change Position.
How does one turn this feature on? It would be handy to have the machine move to an easy to reach spot to change tools.
Also, how does one get Safe Z to function too.
I have search through the documentation, videos and within Mach3 itself and have not been able to spot these..
Thanks in advance

Mark

Offline Hood

*
  •  25,835 25,835
  • Carnoustie, Scotland
    • View Profile
Re: Turning ON Tool Change and Safe Z Positions
« Reply #1 on: August 11, 2011, 07:19:01 AM »
Tool change position if I recall was used with a button on the screen but its been a long time since I used it, probably Mach 2 days :)

Safe Z is set from Config menu the Safe Z

Hood

Offline Hood

*
  •  25,835 25,835
  • Carnoustie, Scotland
    • View Profile
Re: Turning ON Tool Change and Safe Z Positions
« Reply #2 on: August 11, 2011, 07:30:39 AM »
Here is the VB that was in the button on Mach2 screen so you could add a button with it in or could add to your M6 macro or make a custom m code up to call a move to the toolchange position you have set.

REM Context 10003
x = GetUserDRO( 1200 )
y = GetUserDRO( 1201 )
z = GetUserDRO( 1202 )

code "G0"  ' to switch things to G0 mode if not there already
code "G53Z" & z
code "G53X" & x & "Y" & y

Hood

Offline BR549

*
  •  6,965 6,965
    • View Profile
Re: Turning ON Tool Change and Safe Z Positions
« Reply #3 on: August 11, 2011, 10:26:01 AM »
Be aware before you crash the machine(;-) that those coordinates need to be in MACHINE corrds not users coord. The machine needs to be refhome at startup to insure the correct positions BEFORE that function is used.

To get Machine coords jog to where you want it to be then from the main screen select machine coords and use those values. that way the machine MOVES to the correct spot regardless of the user offset and tool fixtures being used.

Just a thought, (;-) TP
Re: Turning ON Tool Change and Safe Z Positions
« Reply #4 on: August 12, 2011, 07:30:33 AM »
Thanks all for the inputs.
I tried my hand for the first time at tinkering around with a screen set.
I added a hot key to one of screen one buttons that did not have a hot key and somehow lost my positive X drive.
Wound up having to reinstall the entire program. One sure needs to be careful.....
Everything is back to normal now and I think I'll do a lot more reading up on what the heck I'm doing.

Mark

Offline BR549

*
  •  6,965 6,965
    • View Profile
Re: Turning ON Tool Change and Safe Z Positions
« Reply #5 on: August 12, 2011, 11:17:46 AM »
It is ALL very easy to do (;-) ONCE you have figured out all the HARD parts.

Don't give up you will figure it out.

(;-) TP

Offline budman68

*
  • *
  •  2,352 2,352
    • View Profile
Re: Turning ON Tool Change and Safe Z Positions
« Reply #6 on: August 14, 2011, 08:38:01 AM »
Thanks all for the inputs.
I tried my hand for the first time at tinkering around with a screen set.
I added a hot key to one of screen one buttons that did not have a hot key and somehow lost my positive X drive.
Wound up having to reinstall the entire program. One sure needs to be careful.....
Everything is back to normal now and I think I'll do a lot more reading up on what the heck I'm doing.

Mark

Mark,

Just a tip for working with screensets, think of it like modifying any windows file. Always make a quick backup of the screenset you want to alter so that you don't have to jump through hoops to get back into production. Ask me how I know  ;)

Dave
----------------------------------------------------------------------
Just because I'm a Global Moderator, don't assume that I know anything !

Dave->    ;)
Re: Turning ON Tool Change and Safe Z Positions
« Reply #7 on: August 14, 2011, 08:49:51 AM »
Thanks Guys.
Backups are one of those areas where we know we need to do it, but so often put it off until it's too late.
One other issue I had was having 2 versions of Mach on the computer, different folders, but it sure seemed to confuse the loader and other things.
Now I am back to one version period.
What started my troubles is I have just put a pendant together and 98% of it works. There is still a couple of functions that have issues so I went ahead and prematurely tried dabbling into the Mach inner workings.

Mark