1*4f4cfa6cSMauro Carvalho Chehab======================================
2*4f4cfa6cSMauro Carvalho ChehabParallel port LCD/Keypad Panel support
3*4f4cfa6cSMauro Carvalho Chehab======================================
4*4f4cfa6cSMauro Carvalho Chehab
5*4f4cfa6cSMauro Carvalho ChehabSome LCDs allow you to define up to 8 characters, mapped to ASCII
6*4f4cfa6cSMauro Carvalho Chehabcharacters 0 to 7. The escape code to define a new character is
7*4f4cfa6cSMauro Carvalho Chehab'\e[LG' followed by one digit from 0 to 7, representing the character
8*4f4cfa6cSMauro Carvalho Chehabnumber, and up to 8 couples of hex digits terminated by a semi-colon
9*4f4cfa6cSMauro Carvalho Chehab(';'). Each couple of digits represents a line, with 1-bits for each
10*4f4cfa6cSMauro Carvalho Chehabilluminated pixel with LSB on the right. Lines are numbered from the
11*4f4cfa6cSMauro Carvalho Chehabtop of the character to the bottom. On a 5x7 matrix, only the 5 lower
12*4f4cfa6cSMauro Carvalho Chehabbits of the 7 first bytes are used for each character. If the string
13*4f4cfa6cSMauro Carvalho Chehabis incomplete, only complete lines will be redefined. Here are some
14*4f4cfa6cSMauro Carvalho Chehabexamples::
15*4f4cfa6cSMauro Carvalho Chehab
16*4f4cfa6cSMauro Carvalho Chehab  printf "\e[LG0010101050D1F0C04;"  => 0 = [enter]
17*4f4cfa6cSMauro Carvalho Chehab  printf "\e[LG1040E1F0000000000;"  => 1 = [up]
18*4f4cfa6cSMauro Carvalho Chehab  printf "\e[LG2000000001F0E0400;"  => 2 = [down]
19*4f4cfa6cSMauro Carvalho Chehab  printf "\e[LG3040E1F001F0E0400;"  => 3 = [up-down]
20*4f4cfa6cSMauro Carvalho Chehab  printf "\e[LG40002060E1E0E0602;"  => 4 = [left]
21*4f4cfa6cSMauro Carvalho Chehab  printf "\e[LG500080C0E0F0E0C08;"  => 5 = [right]
22*4f4cfa6cSMauro Carvalho Chehab  printf "\e[LG60016051516141400;"  => 6 = "IP"
23*4f4cfa6cSMauro Carvalho Chehab
24*4f4cfa6cSMauro Carvalho Chehab  printf "\e[LG00103071F1F070301;"  => big speaker
25*4f4cfa6cSMauro Carvalho Chehab  printf "\e[LG00002061E1E060200;"  => small speaker
26*4f4cfa6cSMauro Carvalho Chehab
27*4f4cfa6cSMauro Carvalho ChehabWilly
28