Close

Display char array

A project log for LCD,OLED online characters editor

http://ilo.wz.sk/lcd84x48.htm

iloilo 03/23/2023 at 19:140 Comments

New functions :
Display, bin-hex conversion

Display:

set x 16 and y 8

-Vlastná veľkosť tabuľky:X(max:84)  ,Y(max:48) -

add this to first array :

const char objekt_xyz[16]= {0b00011100,0b00010000,0b00111100,0b01000010,0b11001010,
0b01000010,0b01010010,0b01010010,0b01010010,0b01000010,
0b11001010,0b01000010,0b00111100,0b00010000,0b00011100,
0b00000000};

click on Display button

or

past 

const char objekt_xyz[16]= {0x1C,0x10,0x3C,0x42,0xCA,0x42,0x52,0x52,0x52,0x42,0xCA,0x42,0x3C,0x10,0x1C,0x0,};

to 

Vložte kod v HEX (0x**) sústave:

and  

click on Prevod-hex after Display button

Discussions