www.joy
-
it.net
Pascalstr. 8 47506 Neukirchen
-
Vluyn
{
0x3c
,
0x40
,
0x30
,
0x40
,
0x3c
},
// 77 w ,
{
0x44
,
0x28
,
0x10
,
0x28
,
0x44
},
// 78 x ,
{
0x0c
,
0x50
,
0x50
,
0x50
,
0x3c
},
// 79 y ,
{
0x44
,
0x64
,
0x54
,
0x4c
,
0x44
},
// 7a z ,
{
0x00
,
0x08
,
0x36
,
0x41
,
0x00
},
// 7b { ,
{
0x00
,
0x00
,
0x7f
,
0x00
,
0x00
},
// 7c | ,
{
0x00
,
0x41
,
0x36
,
0x08
,
0x00
},
// 7d } ,
{
0x10
,
0x08
,
0x08
,
0x10
,
0x08
},
// 7e ~ ,
{
0x78
,
0x46
,
0x41
,
0x46
,
0x78
},
// 7f DEL
};
//Initialization of the display
void
setup
() {
LCDInit();
}
void
loop
() {
LCDClear();
LCDString(
"joy
-
IT "
);
LCDString(
"84x48"
);
LCDString(
" LED
-
Modul"
);
delay(
1000
);
}
//Move cursor to specified position
void
positionXY
(
int
x,
int
y) {
LCDWrite(
0
,
0x80
|
x);
LCDWrite(
0
,
0x40
|
y);
}