B4J Programming Press on the image to return to the main documentation page.

rLiquidCrystal_I2C

List of types:

LiquidCrystal_I2C

LiquidCrystal_I2C


Events:

None

Members:


  Backlight As Boolean [write only]

  Blink As Boolean [write only]

  Clear As void

  CursorOn As Boolean [write only]

  Initialize (Address As Byte, Columns As Byte, Rows As Byte) As void

  SetCursor (Column As Byte, Row As Byte) As void

  Write (Message As Object) As void

Members description:

Backlight As Boolean [write only]
Sets the backlight state.
Blink As Boolean [write only]
Sets whether the cursor should blink.
Clear As void
Clears the screen and sets the cursor to (0,0).
CursorOn As Boolean [write only]
Sets the cursor state.
Initialize (Address As Byte, Columns As Byte, Rows As Byte) As void
SetCursor (Column As Byte, Row As Byte) As void
Sets the cursor position.
Write (Message As Object) As void
Writes the message. The message can be a string, a number or an array of bytes.
Top