Checks whether the machine controller is ready for executing an operation.
This function verifies that the controller is connected and is running the correct version, ensuring that it is prepared for new commands.
planetcnc.is_controller_ready()
#! /usr/bin/env python import planetcnc if planetcnc.is_controller_ready(): print("Controller is ready for new commands.") else: print("Controller is not ready.")