Advice re ESTOP, FHOLD, CS_RES = GRBL/CNCShield Abort, Hold, Resume #721
-
First, I am not sure I understand the difference between ESTOP and FHOLD: Both, if connected to GND, will stop everything. When then pulled up to +5V, I assume with FHOLD everything starts to move; but with ESTOP it wont. What then is the separate "Resume"? I have a NC+NO emergency button; the NC side cuts out the 230V power (to steppers and spindle and coolant pump) if I hit it. I assume I connect the NO side (which closes when I hit the emergency button) to ESTOP (PC0) and GND (which are currently jumpered, as is FHOLD). Last problem: My cheap Chinese emergency button does not permanently close the NO contact when hit - it closes it for a moment, but then (due to mechanical sloppiness) opens it again. Is that fine with the ESTOP pin, or should I make sure that the NO really and permanently closes when the button is hit? Thanks for any enlightenment (which I did not find by searching various GRBL forums on the internet ...). |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
ESTOP - stands for emergency stop. Triggering this input will kill all motions abruptly. The modal states will be reset and your machine will lose track of it's position. The current working tool will also be stopped. FHOLD - stands for feed hold is just a pause button. The motors will come to a controlled pause and tool will stop. Machine will keep all it's internal states and position. You can use CS_RES (Cycle start - resume) to continue were you left. The tool will be started. A programmable pause time can occur to allow the tool to get up to speed and then motion will restart.
Super bad idea. If the common terminal to that NC and NO terminals is the same you will be injecting 230V on your board.
That is not a problem with ESTOP. As soon as it is triggered it will go into Alarm mode and shutdown everything. Even if the switch does not keep the contact opened/closed. The difference is that if the emergency switch is not pressed you will be able to send a soft reset command to get out of alarm mode. |
Beta Was this translation helpful? Give feedback.
ESTOP - stands for emergency stop. Triggering this input will kill all motions abruptly. The modal states will be reset and your machine will lose track of it's position. The current working tool will also be stopped.
FHOLD - stands for feed hold is just a pause button. The motors will come to a controlled pa…