Toggle or set the Emergency Stop (E-Stop) state.
If called with no arguments, toggles the E-Stop state.
If called with one bool argument, it sets the E-Stop state accordingly.
planetcnc.estop() planetcnc.estop(state)
#! /usr/bin/env python import planetcnc planetcnc.estop()
#! /usr/bin/env python import time import planetcnc planetcnc.estop(True) time.sleep(3) planetcnc.estop(False)