DisplayLcdPrintAt Method

Displays text starting at a specific location of the LCD display. Causes the LCD backlight to switch on. The backlight may switch off after a predefined duration in the firmware.

Definition

Namespace: RoboTx.Api
Assembly: RoboTx.Api (in RoboTx.Api.dll) Version: 1.0.0
C#
public void PrintAt(
	int col,
	int row,
	string text
)

Parameters

col  Int32
The column (zero based) from which to display text.
row  Int32
The row (zero based) from which to display text.
text  String
The text to display.

Exceptions

IOExceptionSerial port is in error state or not open.

See Also