ready()

Signals that the script has completed initialization and that it is now safe for the script launcher to interact with the module.

This function is typically called from within the Python script to notify the launcher that the module is ready.

Syntax

planetcnc.ready()

Parameters

Parameter Type Description
None

Return Value

Examples

#! /usr/bin/env python 
 
import planetcnc
 
# Call ready() after initializing your script to signal that it is fully ready.
planetcnc.ready()

See also

ready
terminate
send_message
read_message