is_initialized()

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.

Syntax

planetcnc.is_initialized()

Parameters

Parameter Type Description
None

Return Value

Examples

#! /usr/bin/env python 
 
import planetcnc
 
if planetcnc.is_initialized():
    print("PlanetCNC is fully initialized.")
else:
    print("PlanetCNC is not yet initialized.")

See also

is_running
is_initialized
starttime