Hi,
how to write special characters, like arrow_up and arrow_down to the LCD display?
The rLiquidLibrary does not support the definition of special characters yet.
Thinking of something, like
'Define the special char layout
'Define the special char
'Write the special char
how to write special characters, like arrow_up and arrow_down to the LCD display?
The rLiquidLibrary does not support the definition of special characters yet.
Thinking of something, like
'Define the special char layout
B4X:
Private LCDArrowUp(8) As Byte = Array As Byte(0x04, 0x0E, 0x15, 0x04, 0x04, 0x04, 0x04, 0x00)
Private LCDArrowDown(8) As Byte = Array As Byte(0x00, 0x04, 0x04, 0x04, 0x04, 0x15, 0x0E, 0x04)
'Define the special char
B4X:
lcd.DefineSpecialChar(0, LCDArrowUp)
lcd.DefineSpecialChar(1, LCDArrowDown)
'Write the special char
B4X:
lcd.Write(LCDArrowUp)