-
Notifications
You must be signed in to change notification settings - Fork 0
/
LCD_Driver.cpp
294 lines (260 loc) · 8.46 KB
/
LCD_Driver.cpp
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
/*****************************************************************************
* | File : LCD_Driver.c
* | Author : Waveshare team
* | Function : Electronic paper driver
* | Info :
*----------------
* | This version: V1.0
* | Date : 2018-11-18
* | Info :
#
# Permission is hereby granted, free of UBYTEge, to any person obtaining a copy
# of this software and associated documnetation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS OR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
#
******************************************************************************/
#include "LCD_Driver.h"
/*******************************************************************************
function:
Hardware reset
*******************************************************************************/
static void LCD_Reset(void)
{
DEV_Digital_Write(DEV_CS_PIN,0);
DEV_Delay_ms(20);
DEV_Digital_Write(DEV_RST_PIN,0);
DEV_Delay_ms(20);
DEV_Digital_Write(DEV_RST_PIN,1);
DEV_Delay_ms(20);
}
/*******************************************************************************
function:
Setting backlight
parameter :
value : Range 0~255 Duty cycle is value/255
*******************************************************************************/
void LCD_SetBacklight(UWORD Value)
{
if(Value > 100)
Value=100;
DEV_Set_BL(DEV_BL_PIN, (Value * 2.55));
}
/*******************************************************************************
function:
Write register address and data
*******************************************************************************/
void LCD_WriteData_Byte(UBYTE da)
{
DEV_Digital_Write(DEV_CS_PIN,0);
DEV_Digital_Write(DEV_DC_PIN,1);
DEV_SPI_WRITE(da);
DEV_Digital_Write(DEV_CS_PIN,1);
}
void LCD_WriteData_Word(UWORD da)
{
UBYTE i=(da>>8)&0xff;
DEV_Digital_Write(DEV_CS_PIN,0);
DEV_Digital_Write(DEV_DC_PIN,1);
DEV_SPI_WRITE(i);
DEV_SPI_WRITE(da);
DEV_Digital_Write(DEV_CS_PIN,1);
}
void LCD_WriteReg(UBYTE da)
{
DEV_Digital_Write(DEV_CS_PIN,0);
DEV_Digital_Write(DEV_DC_PIN,0);
DEV_SPI_WRITE(da);
DEV_Digital_Write(DEV_CS_PIN,1);
}
/******************************************************************************
function:
Common register initialization
******************************************************************************/
void LCD_Init(void)
{
LCD_Reset();
//************* Start Initial Sequence **********//
LCD_WriteReg(0x11);
delay(120);
LCD_WriteReg(0x36);
if (HORIZONTAL )
LCD_WriteData_Byte(0x00);
else
LCD_WriteData_Byte(0x70);
LCD_WriteReg(0x3A);
LCD_WriteData_Byte(0x05);
LCD_WriteReg(0xB2);
LCD_WriteData_Byte(0x0C);
LCD_WriteData_Byte(0x0C);
LCD_WriteData_Byte(0x00);
LCD_WriteData_Byte(0x33);
LCD_WriteData_Byte(0x33);
LCD_WriteReg(0xB7);
LCD_WriteData_Byte(0x35);
LCD_WriteReg(0xBB);
LCD_WriteData_Byte(0x35);
LCD_WriteReg(0xC0);
LCD_WriteData_Byte(0x2C);
LCD_WriteReg(0xC2);
LCD_WriteData_Byte(0x01);
LCD_WriteReg(0xC3);
LCD_WriteData_Byte(0x13);
LCD_WriteReg(0xC4);
LCD_WriteData_Byte(0x20);
LCD_WriteReg(0xC6);
LCD_WriteData_Byte(0x0F);
LCD_WriteReg(0xD0);
LCD_WriteData_Byte(0xA4);
LCD_WriteData_Byte(0xA1);
LCD_WriteReg(0xD6);
LCD_WriteData_Byte(0xA1);
LCD_WriteReg(0xE0);
LCD_WriteData_Byte(0xF0);
LCD_WriteData_Byte(0x00);
LCD_WriteData_Byte(0x04);
LCD_WriteData_Byte(0x04);
LCD_WriteData_Byte(0x04);
LCD_WriteData_Byte(0x05);
LCD_WriteData_Byte(0x29);
LCD_WriteData_Byte(0x33);
LCD_WriteData_Byte(0x3E);
LCD_WriteData_Byte(0x38);
LCD_WriteData_Byte(0x12);
LCD_WriteData_Byte(0x12);
LCD_WriteData_Byte(0x28);
LCD_WriteData_Byte(0x30);
LCD_WriteReg(0xE1);
LCD_WriteData_Byte(0xF0);
LCD_WriteData_Byte(0x07);
LCD_WriteData_Byte(0x0A);
LCD_WriteData_Byte(0x0D);
LCD_WriteData_Byte(0x0B);
LCD_WriteData_Byte(0x07);
LCD_WriteData_Byte(0x28);
LCD_WriteData_Byte(0x33);
LCD_WriteData_Byte(0x3E);
LCD_WriteData_Byte(0x36);
LCD_WriteData_Byte(0x14);
LCD_WriteData_Byte(0x14);
LCD_WriteData_Byte(0x29);
LCD_WriteData_Byte(0x32);
LCD_WriteReg(0x21);
LCD_WriteReg(0x11);
delay(120);
LCD_WriteReg(0x29);
}
/******************************************************************************
function: Set the cursor position
parameter :
Xstart: Start UWORD x coordinate
Ystart: Start UWORD y coordinate
Xend : End UWORD coordinates
Yend : End UWORD coordinatesen
******************************************************************************/
void LCD_SetCursor(UWORD Xstart, UWORD Ystart, UWORD Xend, UWORD Yend)
{
if (HORIZONTAL)
{ // set the X coordinates
LCD_WriteReg(0x2A);
LCD_WriteData_Byte(Xstart >> 8);
LCD_WriteData_Byte(Xstart + 34);
LCD_WriteData_Byte(Xend >> 8);
LCD_WriteData_Byte(Xend + 34);
// set the Y coordinates
LCD_WriteReg(0x2B);
LCD_WriteData_Byte(Ystart >> 8);
LCD_WriteData_Byte(Ystart);
LCD_WriteData_Byte(Yend >> 8);
LCD_WriteData_Byte(Yend);
}
else
{
// set the X coordinates
LCD_WriteReg(0x2A);
LCD_WriteData_Byte(Ystart >> 8);
LCD_WriteData_Byte(Ystart);
LCD_WriteData_Byte(Yend >> 8);
LCD_WriteData_Byte(Yend);
// set the Y coordinates
LCD_WriteReg(0x2B);
LCD_WriteData_Byte(Xstart >> 8);
LCD_WriteData_Byte(Xstart + 34);
LCD_WriteData_Byte(Xend >> 8);
LCD_WriteData_Byte(Xend + 34);
}
LCD_WriteReg(0X2C);
}
/******************************************************************************
function: Clear screen function, refresh the screen to a certain color
parameter :
Color : The color you want to clear all the screen
******************************************************************************/
void LCD_Clear(UWORD Color)
{
UWORD i,j;
LCD_SetCursor(0,0,LCD_WIDTH-1,LCD_HEIGHT-1);
for(i = 0; i < LCD_WIDTH; i++){
for(j = 0; j < LCD_HEIGHT; j++){
LCD_WriteData_Word(Color);
}
}
}
/******************************************************************************
function: Refresh a certain area to the same color
parameter :
Xstart: Start UWORD x coordinate
Ystart: Start UWORD y coordinate
Xend : End UWORD coordinates
Yend : End UWORD coordinates
color : Set the color
******************************************************************************/
void LCD_ClearWindow(UWORD Xstart, UWORD Ystart, UWORD Xend, UWORD Yend,UWORD color)
{
UWORD i,j;
LCD_SetCursor(Xstart, Ystart-1, Xend,Yend-1);
for(i = Ystart; i <= Yend-1; i++){
for(j = Xstart; j <= Xend-1; j++){
LCD_WriteData_Word(color);
}
}
}
/******************************************************************************
function: Set the color of an area
parameter :
Xstart: Start UWORD x coordinate
Ystart: Start UWORD y coordinate
Xend : End UWORD coordinates
Yend : End UWORD coordinates
Color : Set the color
******************************************************************************/
void LCD_SetWindowColor(UWORD Xstart, UWORD Ystart, UWORD Xend, UWORD Yend,UWORD Color)
{
LCD_SetCursor( Xstart,Ystart,Xend,Yend);
LCD_WriteData_Word(Color);
}
/******************************************************************************
function: Draw a UWORD
parameter :
X : Set the X coordinate
Y : Set the Y coordinate
Color : Set the color
******************************************************************************/
void LCD_SetUWORD(UWORD x, UWORD y, UWORD Color)
{
LCD_SetCursor(x,y,x,y);
LCD_WriteData_Word(Color);
}