Displays a message using the PlanetCNC message manager.
The function converts its arguments to a string and then shows a message alert with an information icon.
planetcnc.msg(args)
#! /usr/bin/env python import planetcnc # Display a message and retrieve the count. count = planetcnc.msg("This is an informational message.", "Additional info can be added here.") print("Message count:", count)