hi C,
Does this help with your query.? ref image.
My font table for characters bigger than 5*7 also uses two lines.
My character display procedure uses a 'row' value to select the required font section, 5110 LCD
for a 16 bit high character rows are selected as 0,1,2,3,4,5.
rows 0,2,4 are on the top line row
and rows 1,3,5 are the lower line row.
example:
big2lcd:
SPICSOn
lcd_mode = 1 'data
Select Case ascval
Case "0"
If row = 0 Or row = 2 Or row = 4 Then
SPISend 0xfe
SPISend 0xff
SPISend 0x83
SPISend 0xc3
SPISend 0x63
SPISend 0x33
SPISend 0xff
SPISend 0xfe
Endif
If row = 1 Or row = 3 Or row = 5 Then
SPISend 0x1f
SPISend 0x3f
SPISend 0x31
SPISend 0x30
SPISend 0x30
SPISend 0x30
SPISend 0x3f
SPISend 0x1f
Endif