What's new
What's new

Haas WIPS probe P9810 Path Obstructed alarm

  • Thread starter Thread starter jm_cnc
  • Start date Start date
  • Replies 5
  • Views 2,893

jm_cnc

Plastic
Joined
Oct 6, 2020
Hello everyone,
I am in need of help from some macro gurus. Im on a Haas VF2 w/ next gen control

I get a "path obstructed" alarm when running a 9810 to move away from my part after probing. I can 9810 to the part no problem however the move after probing alarms no matter what what i do. I do not have a ton of experience with macros, so I may be missing the obvious.

here is what i am running :

T25 M06
G00 G90 G55 X0. Y0.
G01 H43 H25 Z1. F100.
G103 P1
G65 P9832
G65 P9810 Z0.2 F30.
G65 P9995 W55. A13. D2.01 E0.625 H-0.4 I0. J0. ( Rectangle Block Probe )
G65 P9810 Z1.0 F30. --- Always alarms on this move ---
G65 P9833
G103
G28 G91 Z0.
G90
M01


Any help would be greatly appreciated

Thanks in advance
 
If I’m reading that right you are doing a protected move out of the hole. What I was told (but have not yet verified) is you beed to force the probe back on before doing a protected move after a probe cycle, because the probe automatically turns off at the end of the cycle. So theoretically add G65 P9832 on the line below your G65 P9995 line, then follow with your protected move. I have not had the chance to verify Haas’s advice to me but it does somewhat make sense.
 
If I’m reading that right you are doing a protected move out of the hole. What I was told (but have not yet verified) is you beed to force the probe back on before doing a protected move after a probe cycle, because the probe automatically turns off at the end of the cycle. So theoretically add G65 P9832 on the line below your G65 P9995 line, then follow with your protected move. I have not had the chance to verify Haas’s advice to me but it does somewhat make sense.

you're correct. trying to safely move away from my part
I had tried the 9832 actually, but I would get an initialization alarm.
 
Hello everyone,
I am in need of help from some macro gurus. Im on a Haas VF2 w/ next gen control

I get a "path obstructed" alarm when running a 9810 to move away from my part after probing. I can 9810 to the part no problem however the move after probing alarms no matter what what i do. I do not have a ton of experience with macros, so I may be missing the obvious.

here is what i am running :

T25 M06
G00 G90 G55 X0. Y0.
G01 H43 H25 Z1. F100.
G103 P1
G65 P9832
G65 P9810 Z0.2 F30.
G65 P9995 W55. A13. D2.01 E0.625 H-0.4 I0. J0. ( Rectangle Block Probe )
G65 P9810 Z1.0 F30. --- Always alarms on this move ---
G65 P9833
G103
G28 G91 Z0.
G90
M01


Any help would be greatly appreciated

Thanks in advance
Macro O9995 internally forces PROBE ON at start and PROBE OFF at the end. Therefore probe must be restarted to perform another activity. Certain delay is required between PROBE OFF and PROBE ON. Relevant part of your program should therefore look like that:

G65 P9995 W55. A13. D2.01 E0.625 H-0.4 I0. J0. ( Rectangle Block Probe )
G4P1000 (EDIT TO FIND THE SHORTEST SUFFICIENT DELAY)
G65P9832
G65 P9810 Z1.0 F30. --- Always alarms on this move ---
G65 P9833

By the way, using protected move routine on retract moves is not necessary and is time wasting. Probe already went successfully through this path during approach !
 
Last edited:








 
Back
Top