1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
|
/*************************************************************************
* Arduino Text & Bitmap Display Library for color LCDs
* Distributed under GPL v2.0
* Developed by Stanley Huang <stanleyhuangyc@gmail.com>
* For more information, please visit http://arduinodev.com
*************************************************************************/
#include <UTFT.h>
#if defined(__AVR_ATmega168P__)
#define MEMORY_SAVING
#endif
#ifdef __arm__
#define PROGMEM
#endif
typedef enum {
FONT_SIZE_SMALL = 0,
FONT_SIZE_MEDIUM,
FONT_SIZE_LARGE,
FONT_SIZE_XLARGE
} FONT_SIZE;
#define FLAG_PAD_ZERO 1
#define FLAG_PIXEL_DOUBLE_H 2
#define FLAG_PIXEL_DOUBLE_V 4
#define FLAG_PIXEL_DOUBLE (FLAG_PIXEL_DOUBLE_H | FLAG_PIXEL_DOUBLE_V)
#define RGB16(r,g,b) (((uint16_t)(r >> 3) << 11) | ((uint16_t)(g >> 2) << 5) | (b >> 3))
#define RGB16_RED 0xF800
#define RGB16_GREEN 0x7E0
#define RGB16_BLUE 0x1F
#define RGB16_YELLOW 0xFFE0
#define RGB16_CYAN 0x7FF
#define RGB16_PINK 0xF81F
#define RGB16_WHITE 0xFFFF
extern const PROGMEM unsigned char font5x8[][5];
extern const PROGMEM unsigned char digits8x8[][8] ;
extern const PROGMEM unsigned char digits16x16[][32];
extern const PROGMEM unsigned char digits16x24[][48];
extern const PROGMEM unsigned char font8x16_doslike[][16];
extern const PROGMEM unsigned char font8x16_terminal[][16];
class LCD_Common
{
public:
LCD_Common():m_font(FONT_SIZE_SMALL),m_flags(0) {}
void setFontSize(FONT_SIZE size) { m_font = size; }
void setFlags(byte flags) { m_flags = flags; }
virtual void setBackLight(byte brightness) {}
virtual void draw(const byte* buffer, uint16_t width, uint16_t height) {}
virtual void draw(const byte* buffer, uint16_t width, uint16_t height, byte scaleX, byte scaleY = 0) {}
virtual void draw4bpp(const byte* buffer, uint16_t width, uint16_t height) {}
virtual size_t write(uint8_t c) { return 0; }
virtual byte getLines() { return 0; }
virtual byte getCols() { return 0; }
virtual void clearLine(byte line) {}
virtual void clear() {}
virtual void begin() {}
virtual void setCursor(byte column, byte line) {}
virtual byte readTouchData(int& x, int& y) { return 0; }
virtual int getScreenWidth() { return 320; }
virtual int getScreenHeight() { return 240; }
void printInt(uint16_t value, int8_t padding = -1);
void printLong(uint32_t value, int8_t padding = -1);
void printSpace(byte n)
{
for (byte m = 0; m < n; m++) write(' ');
}
protected:
virtual void writeDigit(byte n) {}
byte m_font;
byte m_flags;
uint16_t m_x;
uint16_t m_y;
};
#define TFT_LINE_HEIGHT 8
class LCD_ILI9325D : public LCD_Common, public Print
{
public:
LCD_ILI9325D() { m_font = FONT_SIZE_MEDIUM; }
void setCursor(uint16_t column, uint8_t line)
{
m_y = column;
m_x = (uint16_t)line * TFT_LINE_HEIGHT;
}
void setXY(uint16_t x, uint16_t y)
{
m_y = x;
m_x = y;
}
void setColor(uint16_t color)
{
m_color[1] = color;
}
void setColor(uint8_t R, uint8_t G, uint8_t B)
{
m_color[1] = ((uint16_t)R << 11) | ((uint16_t)G << 5) | B;
}
void setBackColor(uint16_t color)
{
m_color[0] = color;
}
void setBackColor(uint8_t R, uint8_t G, uint8_t B)
{
m_color[0] = ((uint16_t)R << 11) | ((uint16_t)G << 5) | B;
}
void begin();
void clear(uint16_t x = 0, uint16_t y = 0, uint16_t width = 320, uint16_t height = 240);
void draw(const byte* buffer, uint16_t width, uint16_t height);
void draw(const byte* buffer, uint16_t width, uint16_t height, byte scaleX, byte scaleY = 0);
void draw4bpp(const byte* buffer, uint16_t width, uint16_t height);
size_t write(uint8_t);
void clearLine(byte line)
{
clear(0, line * TFT_LINE_HEIGHT, 320, 8);
}
byte getLines() { return 53; }
byte getCols() { return 30; }
private:
void setXY(uint16_t x0,uint16_t x1,uint16_t y0,uint16_t y1);
void writeDigit(byte n);
void clearPixels(uint16_t pixels);
void WriteData(uint16_t c);
void WriteData(byte l, byte h);
void WriteCommandData(uint16_t cmd,uint16_t dat);
void Enable();
void Disable();
void SetCommandMode();
void SetDataMode();
uint16_t m_x;
uint16_t m_y;
uint16_t m_color[2];
byte lastData;
};
class LCD_ILI9341 : public LCD_Common, public Print
{
public:
LCD_ILI9341() { m_font = FONT_SIZE_MEDIUM; }
void setCursor(uint16_t column, uint8_t line)
{
m_x = column;
m_y = (uint16_t)line * TFT_LINE_HEIGHT;
}
void setXY(uint16_t x, uint16_t y)
{
m_x = x;
m_y = y;
}
void setColor(uint16_t color)
{
m_color[1][0] = color & 0xff;
m_color[1][1] = color >> 8;
}
void setColor(uint8_t R, uint8_t G, uint8_t B)
{
uint16_t color = ((uint16_t)R << 11) | ((uint16_t)G << 5) | B;
m_color[1][0] = color & 0xff;
m_color[1][1] = color >> 8;
}
void setBackColor(uint16_t color)
{
m_color[0][0] = color & 0xff;
m_color[0][1] = color >> 8;
}
void setBackColor(uint8_t R, uint8_t G, uint8_t B)
{
uint16_t color = ((uint16_t)R << 11) | ((uint16_t)G << 5) | B;
m_color[0][0] = color & 0xff;
m_color[0][1] = color >> 8;
}
void clearLine(byte line)
{
fill(0, line * TFT_LINE_HEIGHT, 320, 8);
}
void begin (void);
void setPixel(uint16_t poX, uint16_t poY,uint16_t color);
void fill(uint16_t XL,uint16_t XR,uint16_t YU,uint16_t YD,uint16_t color = 0);
void clear(void);
size_t write(uint8_t);
void setBackLight(byte brightness);
void draw(const byte* buffer, uint16_t width, uint16_t height);
void draw(const byte* buffer, uint16_t width, uint16_t height, byte scaleX, byte scaleY = 0);
private:
void setXY(uint16_t x0, uint16_t x1, uint16_t y0, uint16_t y1);
void sendPixelData(byte d);
void writeDigit(byte n);
void clearPixels(uint16_t pixels);
void setCol(uint16_t StartCol,uint16_t EndCol);
void setPage(uint16_t StartPage,uint16_t EndPage);
void sendCMD(uint8_t index);
void WRITE_Package(uint16_t *data,uint8_t howmany);
void WRITE_DATA(uint8_t data);
void sendData(uint16_t data);
uint8_t Read_Register(uint8_t Addr,uint8_t xParameter);
uint8_t readID(void);
uint8_t m_color[2][2];
};
class LCD_SSD1289 : public UTFT, public LCD_Common, public Print
{
public:
LCD_SSD1289()
{
m_font = FONT_SIZE_MEDIUM;
disp_x_size = 239;
disp_y_size = 319;
orient = LANDSCAPE;
display_transfer_mode = 16;
display_model = ITDB32S;
__p1 = 38;
__p2 = 39;
__p3 = 40;
__p4 = 41;
__p5 = 0;
P_RS = portOutputRegister(digitalPinToPort(38));
B_RS = digitalPinToBitMask(38);
P_WR = portOutputRegister(digitalPinToPort(39));
B_WR = digitalPinToBitMask(39);
P_CS = portOutputRegister(digitalPinToPort(40));
B_CS = digitalPinToBitMask(40);
P_RST = portOutputRegister(digitalPinToPort(41));
B_RST = digitalPinToBitMask(41);
}
void setCursor(uint16_t column, uint8_t line)
{
m_x = column;
m_y = (uint16_t)line * TFT_LINE_HEIGHT;
}
void setXY(uint16_t x, uint16_t y)
{
m_x = x;
m_y = y;
}
void begin();
void clear(uint16_t x = 0, uint16_t y = 0, uint16_t width = 319, uint16_t height = 239);
void draw(const byte* buffer, uint16_t width, uint16_t height);
void draw(const byte* buffer, uint16_t width, uint16_t height, byte scaleX, byte scaleY = 0);
void draw4bpp(const byte* buffer, uint16_t width, uint16_t height);
size_t write(uint8_t);
void clearLine(byte line)
{
clear(0, line * TFT_LINE_HEIGHT, disp_y_size, 8);
}
void setBackLight(byte brightness);
void drawPixel(uint16_t poX, uint16_t poY, uint16_t color);
byte getTouchData(int& x, int& y);
private:
void setXY(uint16_t x1, uint16_t y1, uint16_t x2, uint16_t y2);
void writeDigit(byte n);
void clearPixels(uint32_t pixels);
void Enable();
void Disable();
void shiftOutTouchData(unsigned char data);
unsigned int shiftInTouchData();
};
class LCD_R61581 : public UTFT, public LCD_Common, public Print
{
public:
LCD_R61581()
{
m_font = FONT_SIZE_MEDIUM;
disp_x_size = 319;
disp_y_size = 479;
orient = LANDSCAPE;
display_transfer_mode = 16;
display_model = CTE35IPS;
__p1 = 38;
__p2 = 39;
__p3 = 40;
__p4 = 41;
__p5 = 0;
P_RS = portOutputRegister(digitalPinToPort(38));
B_RS = digitalPinToBitMask(38);
P_WR = portOutputRegister(digitalPinToPort(39));
B_WR = digitalPinToBitMask(39);
P_CS = portOutputRegister(digitalPinToPort(40));
B_CS = digitalPinToBitMask(40);
P_RST = portOutputRegister(digitalPinToPort(41));
B_RST = digitalPinToBitMask(41);
}
void setCursor(uint16_t column, uint8_t line)
{
m_x = column;
m_y = (uint16_t)line * TFT_LINE_HEIGHT;
}
void setXY(uint16_t x, uint16_t y)
{
m_x = x;
m_y = y;
}
void begin();
void clear(uint16_t x = 0, uint16_t y = 0, uint16_t width = 479, uint16_t height = 319);
void draw(const byte* buffer, uint16_t width, uint16_t height);
void draw(const byte* buffer, uint16_t width, uint16_t height, byte scaleX, byte scaleY = 0);
void draw2x(const byte* buffer, uint16_t width, uint16_t height);
size_t write(uint8_t);
void clearLine(byte line)
{
clear(0, line * TFT_LINE_HEIGHT, disp_y_size, 8);
}
void setBackLight(byte brightness);
void drawPixel(uint16_t poX, uint16_t poY, uint16_t color);
byte getTouchData(int& x, int& y);
int getScreenWidth() { return 480; }
int getScreenHeight() { return 320; }
private:
void setXY(uint16_t x1, uint16_t y1, uint16_t x2, uint16_t y2);
void writeDigit(byte n);
void clearPixels(uint32_t pixels);
void Enable();
void Disable();
void shiftOutTouchData(unsigned char data);
unsigned int shiftInTouchData();
};
|