"intValue"
Sets the value (integer) for an LCD.
Synopsis
setValue(string shape,"intValue",int val);
getValue(string shape,"intValue",int &val);
shape.intValue(int val);
Parameter
Parameter | Description |
---|---|
shape | Name of the object |
val | The number that will be set |
Description
Sets the value (integer) of an LCD.
Example
The following example sets the value of the LCD number to 5.
main(bool enter)
{
LCD1.intValue(5);
}
Assignment
LCD number