Checks whether the PlanetCNC system is fully initialized. This function determines if both the global initialization flag and the internal objects initialization state are set.
planetcnc.is_initialized()
#! /usr/bin/env python import planetcnc if planetcnc.is_initialized(): print("PlanetCNC is fully initialized.") else: print("PlanetCNC is not yet initialized.")