Question about Halt #29
-
Hi |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
It definitely drops power to the Spindle, Vac, Mist and Flood relays. I believe it drops power to Aux1-3 but you should verify that with a recent version of grblHAL. You probably know this but Halt is purely a grblHAL construct. The Teensy does not actually have a halt pin that resets it so the Halt pin on the BoB is just another input. The main implication of is that you might want to have a separate emergency power cut off switch. Generally halt works well as an EStop, though. A side benefit of the Teensy's lack of reset is that grblHAL does not lose position information. Useful when you use halt as an EStop. I've restarted several jobs with no issues. |
Beta Was this translation helpful? Give feedback.
-
Thanks Phil, it was an EStop I wanted to use it. There will be a power off for the whole system too. |
Beta Was this translation helpful? Give feedback.
It definitely drops power to the Spindle, Vac, Mist and Flood relays. I believe it drops power to Aux1-3 but you should verify that with a recent version of grblHAL.
You probably know this but Halt is purely a grblHAL construct. The Teensy does not actually have a halt pin that resets it so the Halt pin on the BoB is just another input. The main implication of is that you might want to have a separate emergency power cut off switch. Generally halt works well as an EStop, though.
A side benefit of the Teensy's lack of reset is that grblHAL does not lose position information. Useful when you use halt as an EStop. I've restarted several jobs with no issues.