Send feedback!
(Edit)
LCN_SetDisplayText
boolean LCN_SetDisplayText (integer $InstanceID, integer $Line, string $Text)
Parameters
InstanceID |
ID of the device to be switched
|
Line |
Display line between 1..4
|
Text |
Text with a maximum of 60 characters
|
Returns
If the command succeeds, it returns TRUE, otherwise FALSE. |
Description
Displays the text Text on line Line of the display with ID InstanceID.
Example
//Shows "Hello World" on line 1 of the display with the InstanceID 12345.
LCN_SetDisplayText(12345, 1, "Hello World");