]>
cvs.zerfleddert.de Git - proxmark3-svn/blob - armsrc/LCD.h
4 // The resolution of the LCD
8 // 8bpp Color Mode - Some basic colors defined for ease of use
9 // remember 8bpp color = 3xRed, 3xGreen & 2xBlue bits
10 // organised as RRRGGGBB
21 // EPSON LCD command set
28 #define EEPSRRD1 0x17C
29 #define EEPSRRD2 0x17D
39 #define ESCSTART 0x1AB
47 #define ERGBSET8 0x1CE
51 #define EVOLDOWN 0x1D7
57 // PHILIPS LCD command set
59 #define PSWRESET 0x101
60 #define PBSTROFF 0x102
62 #define PRDDIDIF 0x104
64 #define PSLEEPIN 0x110
65 #define PSLEEPOUT 0x111
73 #define PDISPOFF 0x128
80 #define PVSCRDEF 0x133
97 #define PTCVOPAB 0x1C3
98 #define PTCVOPCD 0x1C4
102 #define PRDTEMP 0x1C8
110 void LCDSend(unsigned int data
);
113 void LCDSetXY(unsigned char x
, unsigned char y
);
114 void LCDSetPixel(unsigned char x
, unsigned char y
, unsigned char color
);
115 void LCDString (char *lcd_string
, const char *font_style
,unsigned char x
, unsigned char y
, unsigned char fcolor
, unsigned char bcolor
);
116 void LCDFill (unsigned char xs
,unsigned char ys
,unsigned char width
,unsigned char height
, unsigned char color
);