Hello Guest it is April 16, 2024, 10:10:31 AM

Author Topic: Setting Z height with a manual tool change  (Read 1100 times)

0 Members and 1 Guest are viewing this topic.

Offline PeteG

*
  •  33 33
    • View Profile
Setting Z height with a manual tool change
« on: March 07, 2020, 01:01:13 PM »
Hi

I have a home-made CNC machine – surprisingly accurate – but it doesn’t have an auto tool changer. So far, I have been setting the Z height between different tools using the ‘bit of paper’ method, then resetting Z zero in Mach 3.

This works well enough for my purposes, but I felt that there has to be a more sophisticated way. So I tied into my emergency stop circuit and with a connection to the cutter and another to a 0.0015” feeler gauge. I can lower the Z manually and the machine stops instantly when the cutter touches the gauge then I zero Z. But 0.0015 is a bit flimsy and I want to use something more rigid.

I have a piece of Aluminium which is 1.77mm thick. How can I use this to set Z zero?
Re: Setting Z height with a manual tool change
« Reply #1 on: March 07, 2020, 01:56:52 PM »
Hi,

Quote
So I tied into my emergency stop circuit and with a connection to the cutter and another to a 0.0015” feeler gauge.

That is no the correct way. When your machine Estops it attempts to stop instantly and it will lose steps and therefore lose
its 'reference' or 'home'.

There is a Gcode instruction especially for 'probing' called G31. for example:

G31 Z-1 F10

It is assumed that the tip of the tool is say 1/4 inch (approx.) above the feeler gauge/touch plate. The Z axis will descend
towards Z=-1 inch at 10 inches per minute UNTIL it detects a probe strike event on Machs Probe input, at which point it will
use max deceleration to stop. At that point you can use the Z axis DRO to set your Z offset.

Craig
'I enjoy sex at 73.....I live at 71 so its not too far to walk.'

Offline PeteG

*
  •  33 33
    • View Profile
Re: Setting Z height with a manual tool change
« Reply #2 on: March 07, 2020, 04:02:02 PM »
Thanks Craig