KreiderMachine wrote: ↑Tue Jun 03, 2025 8:49 am
So, I have played with these settings, but it still reverts to slow jogging after every probing action. Is there another parameter responsible for this? Would it be something in a macro that resets the jog speed every time?
This is part of Probe Protection, it will set the Jog Rate to Slow if the Probe is Tripped while not actively in a job. What is likely happening is that the job (or probing cycle) completes while the probe is still tripped.
I see you have some customization to your PLC already, you could edit this line and remove this feature if you wish found in the probe protection section of the PLC.
Code: Select all
;--Set Slow Jog Rate anytime Probe or TT is Tripped while not running job.
IF (ProbeToolTripped_M || AuxToolTripped_M) && ProbeProtectionEnable_M && !SV_PROGRAM_RUNNING
THEN SET FastSlowLED_O
KreiderMachine wrote: ↑Tue Jun 03, 2025 9:01 am
Also on my coworker's "punch list:"
He would like to be able to just swap the probe in and out for probing functions without needing to actually do a toolchange to the tool associated with the probe. On the old centroid control, he could just plug the probe in and go, but the new one uses the tool offset from whichever tool was last loaded, even though it recognizes the probe.
Is CNC12 just different in this way, or can this be fixed?
Looking into this, CNC12 does not require you to change tool to the probe. For example, i was using Tool 134, Removed that tool from the spindle and replaced it with the Probe (Tool 10). On the Z Part 0 screen, i made sure that it said Tool 10 in the field before performing the Auto Measurement. It Measured fine, i then removed the Probe and Replaced it with T134 again. Ensure to perform a G43 H134 in MDI to set the correct Height offset for the tool again. No need to do a tool change. What probe cycle are you using that forces this?