There's some problem with the code...
To set position I need to use the functions "SetPage"=X and "Setcolumn"=Y. Now if i set the position (0,0) and use your function "Plot" to plot one pixel at the position (0,0), the result will be (0,1) on the LCD. Why? Because the function writes 0x04 which is only a dot second from top. The write value should then be 0x01 instead of 0x04. Conclusion: With this way I can not have a real "Plot"-function because of the write value, think if I want position (100,40) and the write value is 0x04 the result on LCD is the dot has shifted some pixels up.
So PLEASE can someone post a REAL or better "plot"-function and help me?
And the header:
Code:
unsigned char chinesename[] = {
0xFF, 0x01, 0x19, 0xEE, 0x02, 0xFA, 0xAA, 0xAA, 0xFF, 0xAA, 0xAA, 0xFA, 0x02, 0x00,
0x5F, 0x02, 0x42, 0x01, 0x48, 0x04, 0x42, 0x01, 0x5F, 0x01, 0x42, 0x04, 0x48, 0x00,
0x08, 0x11, 0x82, 0x04, 0xFC, 0x84, 0x00, 0xFE, 0xAA, 0xAB, 0xAA, 0XBE, 0xA0, 0x00,
0X58, 0x06, 0x41, 0X01, 0x41, 0x08, 0x46, 0x00, 0x46, 0x00, 0x56, 0x10, 0x4F, 0x00,
0x80, 0x82, 0x82, 0xFF, 0xAA, 0xAA, 0xAA, 0xAA, 0xAA, 0xFF, 0x82, 0x82, 0x80, 0x00,
0x44, 0x14, 0x52, 0x11, 0x54, 0x14, 0x5E, 0x14, 0x54, 0x11, 0x52, 0x14, 0X44, 0x00
};
Happy that some1 is intressted in chinese

U should have a look at this :
http://www.sitronix.com.tw/sitronix/product.nsf/Doc/ST7920?OpenDocumentIt is a LCD controller with a built in chinese font contains, I dunno, thousands of chinese characters

The header only contains 3 chinese characters namely my chinese name

First I wrote my name in mspaint and read the pixelvalues and put that in the header. YES it took time but I learned alot (I could draw the bitmap instead).
To write a character u need 2 lines of text. So one character is almost 14x14 but you only can write 8x14 at the same time, 8 pixels in height and 14 pixels in width. Then jump to next line and write the other half of the character.
So in main():
Code:
SendLCDData(&chinesename[0],14);//first half
SetLCDXY(0,1);//next line
SendLCDData(&chinesename[14],14);//second half
To write the second character you do this:
Code:
SendLCDData(&chinesename[0],14);//first character, first half
SendLCDData(&chinesename[28],14);//second character, first half
SetLCDXY(0,1);//next line
SendLCDData(&chinesename[14],14);//first character, second half
SendLCDData(&chinesename[42],14);//second character, second half
Hope it helps and u understand the idea, the easiest way 2 write your own chinese characters is 2 have characters in bitmap. If u know how to make a winamp skin using bitmap-font u will understand the idea.
Kneego
I still want a pixel-plot-function plz help
