Is there a scripting library for the MQTT modules from Cirrus? Their documentation has a couple of how-tos but I can’t find a list of all the functions available like in the Ignition manual.
https://docs.chariot.io/display/CLD80/Gateway+Script+MQTT+Publishing
In the tutorial for publishing a tag using a gateway script they use the following function
system.cirruslink.engine.publish(
“Chariot SCADA”
,
“a/b/c”
, str(
“hello world”
).encode(),
0
,
0
)
Is there a reference for all of the available functions?