Documentation
VIO_PushText
Require: IP-Symcon >= 3.3
boolean VIO_PushText (int $InstanceID, string $Text)
Parameters
InstanceID | ID of the virtual I/O to be updated |
Text | The string to be sent |
Returns
If the command succeeds, it returns TRUE, otherwise FALSE.
Description
Sends a data packet of the type Simple to all instances connected to the virtual I/O with the ID InstanceID. This includes: Buffer = Text.
Example
// Sends the text "Hello world" to the virtual I/O instance with the ID 12345
VIO_PushText(12345, "Hello World");