This function checks whether the Emergency Stop (E-Stop) functionality is available.
planetcnc.is_estop_enabled()
#! /usr/bin/env python import planetcnc if planetcnc.is_estop_enabled(): print("Command is enabled and available.") else: print("Command is not enabled and not available.")