-
Notifications
You must be signed in to change notification settings - Fork 0
/
pulsarHD44780.c
604 lines (537 loc) · 19.4 KB
/
pulsarHD44780.c
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
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
/*-----------------------------------------------------------------------------------------------------------------------
* HD44780 module
*_______________________________________________________________________________________________________________________
* __ __ __ __ __ _____ _ _ ___ _ _ _ _ ____ ____ _____
* \ \ / // \\ \ \_\ / ___/ | |_| || _ \ | |_| || |_| ||___ | / __ \ / _ \
* \ \/ // \\ \___ |/ \___ \ | _ |||_| ||___ ||___ | / / | __ | | |_| |
* \__//__/\__\\____\ /____/ |_| |_||___/ |_| |_| |_| \____/ \_____/
* _ _ ____ ____ _ ____ _ _
* | | | || __ \| |\ \ / \ | |\ \\ \_/ /
* | |__ | || __ || |/ / / _ \ | |/ / \ /
* |____||_||____/|_|\_\/_/ \_\|_|\_\ |_|
*_______________________________________________________________________________________________________________________
* Author: VAL
* Created: 12.02.2018
*-----------------------------------------------------------------------------------------------------------------------
*/
#include "pulsarHD44780.h"
#define SET_E_TO_1 EPORT |= (1 << EPIN)
#define SET_E_TO_0 EPORT &=~ (1 << EPIN)
#define SET_RS_TO_1 RSPORT |= (1 << RSPIN)
#define SET_RS_TO_0 RSPORT &=~ (1 << RSPIN)
void SentBit(unsigned char bit);
void SentOutByte(uint8_t number);
void SentFourBits(uint8_t data);
char ConvertToCyrillic(char str);
uint8_t out = 0; // This byte is generated for sending in the shift register
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// One wire mode
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#ifdef USE_ONE_WIRE_MODE
void SentBit(bool bit) // This function sent bit in shift register short pulse if TRUE, long pulse is FALSE.
{
if(bit) // Short pulse 1 (True)
{ DATAPORT &=~ (1 << DATAPIN);
asm("nop");
DATAPORT |= (1 << DATAPIN);}
else // Long pulse 0 (False)
{ DATAPORT &=~ (1 << DATAPIN);
_delay_us(5);
DATAPORT |= (1 << DATAPIN);}
_delay_us(5); // Wait until capacitor recharged
}
void SentOutByte(uint8_t number) // This function sent byte in shift register
{
for(uint8_t bit = 0; bit < 8; bit++)
{
if((number & 0b00000001) == 1)SentBit(1);
else SentBit(0);
number >>= 1;
}
_delay_us(150);
}
void SentFourBits(uint8_t data) // This function sent four bits, signal RW and signal E in the shift register.
{
out &=~ (0b00001111);
out |= (0b00010000); //Set E in 1 - transmission beginning.
SentOutByte(out);
#ifdef USE_SN74HC164 //Use only in SN74HC164 mode. Additional 'E' (Strobe) signal.
SET_E_TO_1;
#endif
out = out| data;
SentOutByte(out);
out &= (0b11101111); //Set E in 0 - transmission finishing.
SentOutByte(out);
#ifdef USE_SN74HC164
_delay_ms(1);
SET_E_TO_0; //Use only in SN74HC164 mode. Additional 'E' (Strobe) signal.
#endif
_delay_us(STROBE_DELAY_MS); // You can variate this delay for faster or most stability work
}
void LCD_SentByte(uint8_t byte,bool rs) // This function sent byte in the LCD
{
uint8_t highbyte = 0;
highbyte = byte>>4; // This part separates byte on two senior and younger parts, needed for 4-bits mode
if(rs) out |= (0b00100000); // DATA / COMMAND
else out &=~ (0b00100000); // rs = 0 - COMMAND rs = 1 - DATA
SentFourBits(highbyte); // transmission of the senior and younger part of the byte, consistently
SentFourBits(byte);
}
inline void LCD_SentChar(uint8_t data) // This function sent data byte in the LCD
{
LCD_SentByte(data, DATA);
}
void LCD_Initial(void) // This function initializations LCD
{
DATADDR |= (1 << DATAPIN);
#ifdef USE_SN74HC164
EDDR |= (1 << EPIN);
#endif
_delay_ms(20); //----------------------------------
SentFourBits(0b00000011); //
_delay_ms(5); //
SentFourBits(0b00000011); //
_delay_us(100); //
SentFourBits(0b00000011); //
_delay_ms(1); //
SentFourBits(0b00000010); //
_delay_ms(1); //
LCD_SentByte(0b00101100, COMMAND); //
_delay_ms(1); //
LCD_SentByte(0b00001100, COMMAND); //
_delay_ms(1); //
LCD_SentByte(0b00000001, COMMAND); //
_delay_ms(1); //
LCD_SentByte(0b00000110, COMMAND); //
_delay_ms(1); //------------------------
}
#endif
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Four - bits mode
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#ifdef USE_FOUR_BIT_MODE
#ifdef USE_EASY_MODE
void sent_four_bits(uint8_t data) // This function sent four bits, signal RW and signal E in the shift register.
{
SET_E_TO_1; //Set E in 1 - transmission beginning.
_delay_us(50);
EASY_DATA_PORT &= ~ 0xf0;
EASY_DATA_PORT |= (data << 4);
SET_E_TO_0; //Set E in 0 - transmission finishing.
_delay_us(50);
}
void LCD_SentByte(uint8_t byte, unsigned char rs) // This function sent byte in the LCD
{
char highbyte = 0;
highbyte = byte>>4; // This part separates byte on two senior and younger parts, needed for 4-bits mode
if (rs == COMMAND)SET_RS_TO_0; // DATA / COMMAND
else SET_RS_TO_1; // rs = 0 - COMMAND rs = 1 - DATA
sent_four_bits(highbyte); // transmission of the senior and younger part of the byte, consistently
sent_four_bits(byte);
}
inline void LCD_SentChar(uint8_t data) // This function sent data byte in the LCD
{
LCD_SentByte(data, DATA);
}
void LCD_Initial() // This function initializations LCD
{
EDDR |= (1 << EPIN);
RSDDR |= (1 << RSPIN);
_delay_ms(20); //----------------------------------
sent_four_bits(0b00000011); //
_delay_ms(5); //
sent_four_bits(0b00000011); //
_delay_us(100); //
sent_four_bits(0b00000011); //
_delay_ms(1); //
sent_four_bits(0b00000010); //
_delay_ms(1); //
LCD_SentByte(0b00101100, COMMAND); //
_delay_ms(1); //
LCD_SentByte(0b00001100, COMMAND); //
_delay_ms(1); //
LCD_SentByte(0b00000001, COMMAND); //
_delay_ms(1); //
LCD_SentByte(0b00000110, COMMAND); //
_delay_ms(1); //------------------------
}
#else
void sent_four_bits(uint8_t data) // This function sent four bits, signal RW and signal E in the shift register.
{
SET_E_TO_1; //Set E in 1 - transmission beginning.
_delay_us(50);
if(data & 0b1000) D7PORT |= (1 << D7PIN); else D7PORT &=~ (1 << D7PIN);
if(data & 0b0100) D6PORT |= (1 << D6PIN); else D6PORT &=~ (1 << D6PIN);
if(data & 0b0010) D5PORT |= (1 << D5PIN); else D5PORT &=~ (1 << D5PIN);
if(data & 0b0001) D4PORT |= (1 << D4PIN); else D4PORT &=~ (1 << D4PIN);
SET_E_TO_0; //Set E in 0 - transmission finishing.
_delay_us(50);
}
void LCD_SentByte(uint8_t byte, unsigned char rs) // This function sent byte in the LCD
{
char highbyte = 0;
highbyte = byte>>4; // This part separates byte on two senior and younger parts, needed for 4-bits mode
if (rs == COMMAND)SET_RS_TO_0; // DATA / COMMAND
else SET_RS_TO_1; // rs = 0 - COMMAND rs = 1 - DATA
sent_four_bits(highbyte); // transmission of the senior and younger part of the byte, consistently
sent_four_bits(byte);
}
inline void LCD_SentChar(uint8_t data) // This function sent data byte in the LCD
{
LCD_SentByte(data, DATA);
}
void LCD_Initial() // This function initializations LCD
{
EDDR |= (1 << EPIN);
RSDDR |= (1 << RSPIN);
D7DDR |= (1 << D7PIN);
D6DDR |= (1 << D6PIN);
D5DDR |= (1 << D5PIN);
D4DDR |= (1 << D4PIN);
_delay_ms(20); //----------------------------------
sent_four_bits(0b00000011); //
_delay_ms(5); //
sent_four_bits(0b00000011); //
_delay_us(100); //
sent_four_bits(0b00000011); //
_delay_ms(1); //
sent_four_bits(0b00000010); //
_delay_ms(1); //
LCD_SentByte(0b00101100, COMMAND); //
_delay_ms(1); //
LCD_SentByte(0b00001100, COMMAND); //
_delay_ms(1); //
LCD_SentByte(0b00000001, COMMAND); //
_delay_ms(1); //
LCD_SentByte(0b00000110, COMMAND); //
_delay_ms(1); //------------------------
}
#endif
#endif
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Eight - bits mode
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#ifdef USE_EIGHT_BIT_MODE
#ifdef USE_EASY_MODE
void sent_eight_bits(uint8_t data) // This function sent eight bits, signal RW and signal E in the shift register.
{
SET_E_TO_1; //Set E in 1 - transmission beginning.
_delay_us(50);
EASY_DATA_PORT = data;
SET_E_TO_0; //Set E in 0 - transmission finishing.
_delay_us(50);
}
void LCD_SentByte(uint8_t byte,bool rs) // This function sent byte in the LCD
{
if (rs == COMMAND)SET_RS_TO_0; // DATA / COMMAND
else SET_RS_TO_1; // rs = 0 - COMMAND rs = 1 - DATA
sent_eight_bits(byte);
}
void LCD_SentChar(uint8_t data) // This function sent data byte in the LCD
{
SET_RS_TO_1;
sent_eight_bits(data);
}
void LCD_Initial() // This function initializations LCD
{
EDDR |= (1 << EPIN);
RSDDR |= (1 << RSPIN);
_delay_ms(20);
sent_eight_bits(0b00111000); //----------------------------
_delay_ms(5); //
sent_eight_bits(0b00111000); //
_delay_us(100); //
sent_eight_bits(0b00111000); //
_delay_ms(1); //
sent_eight_bits(0b00111000); //
_delay_ms(1); //
LCD_SentByte(0x38, COMMAND); //
_delay_ms(1); //
LCD_SentByte(0x0e, COMMAND); //
_delay_ms(1); //
LCD_SentByte(0b00000001, COMMAND); //
_delay_ms(1); //
LCD_SentByte(0b00000110, COMMAND); //
_delay_ms(1); //
}
#else
void sent_eight_bits(uint8_t data) // This function sent eight bits, signal RW and signal E in the shift register.
{
SET_E_TO_1; //Set E in 1 - transmission beginning.
_delay_us(50);
if(data & 0b10000000) D7PORT |= (1 << D7PIN); else D7PORT &=~ (1 << D7PIN);
if(data & 0b01000000) D6PORT |= (1 << D6PIN); else D6PORT &=~ (1 << D6PIN);
if(data & 0b00100000) D5PORT |= (1 << D5PIN); else D5PORT &=~ (1 << D5PIN);
if(data & 0b00010000) D4PORT |= (1 << D4PIN); else D4PORT &=~ (1 << D4PIN);
if(data & 0b00001000) D3PORT |= (1 << D3PIN); else D3PORT &=~ (1 << D3PIN);
if(data & 0b00000100) D2PORT |= (1 << D2PIN); else D2PORT &=~ (1 << D2PIN);
if(data & 0b00000010) D1PORT |= (1 << D1PIN); else D1PORT &=~ (1 << D1PIN);
if(data & 0b00000001) D0PORT |= (1 << D0PIN); else D0PORT &=~ (1 << D0PIN);
SET_E_TO_0; //Set E in 0 - transmission finishing.
_delay_us(50);
}
void LCD_SentByte(uint8_t byte,bool rs) // This function sent byte in the LCD
{
if (rs == COMMAND)SET_RS_TO_0; // DATA / COMMAND
else SET_RS_TO_1; // rs = 0 - COMMAND rs = 1 - DATA
sent_eight_bits(byte);
}
void LCD_SentChar(uint8_t data) // This function sent data byte in the LCD
{
SET_RS_TO_1;
sent_eight_bits(data);
}
void LCD_Initial() // This function initializations LCD
{
EDDR |= (1 << EPIN);
RSDDR |= (1 << RSPIN);
D7DDR |= (1 << D7PIN);
D6DDR |= (1 << D6PIN);
D5DDR |= (1 << D5PIN);
D4DDR |= (1 << D4PIN);
D3DDR |= (1 << D3PIN);
D2DDR |= (1 << D2PIN);
D1DDR |= (1 << D1PIN);
D0DDR |= (1 << D0PIN);
_delay_ms(20);
sent_eight_bits(0b00111000); //----------------------------
_delay_ms(5); //
sent_eight_bits(0b00111000); //
_delay_us(100); //
sent_eight_bits(0b00111000); //
_delay_ms(1); //
sent_eight_bits(0b00111000); //
_delay_ms(1); //
LCD_SentByte(0x38, COMMAND); //
_delay_ms(1); //
LCD_SentByte(0x0e, COMMAND); //
_delay_ms(1); //
LCD_SentByte(0b00000001, COMMAND); //
_delay_ms(1); //
LCD_SentByte(0b00000110, COMMAND); //
_delay_ms(1); //
} //------------------------
#endif
#endif
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Common functions
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
void LCD_Clear(void) // This function clears LCD
{
_delay_ms(1);
LCD_SentByte(0b00000001, COMMAND);
_delay_ms(2);
}
void LCD_GotoXY(uint8_t line, uint8_t coloum) // Sets cursor on desired position.
{
uint8_t adres;
adres = 0x40*line+coloum;
adres |= 0x80;
LCD_SentByte(adres, COMMAND);
}
void LCD_State(uint8_t state) // You can turn on LCD or turn off his
{
LCD_SentByte((0b00001000|state), COMMAND);
}
void LCD_Cursor(uint8_t cursor) // Sets desired cursor mode
{
LCD_SentByte((0b00001100|cursor), COMMAND);
}
void LCD_Scroll(uint8_t number, uint8_t dir) // Scrolls the visible part in the desired direction and on the required number of characters
{
for(uint8_t i = 0; i < number; i++)
{
LCD_SentByte((0b00011000|dir), COMMAND);
}
}
void LCD_SentLine(char *line)
{
while(*line != '\0')
{
LCD_SentChar( *(line++) );
}
}
void LCD_SentLineC(const char *line)
{
char buffer;
do
{
buffer = pgm_read_byte(line++);
if(buffer == '\0') break;
LCD_SentChar( buffer );
}while(1);
}
void LCD_SentLineE(const char *line)
{
char buffer;
do
{
buffer = eeprom_read_byte(line++);
if(buffer == '\0') break;
LCD_SentChar( buffer );
}while(1);
}
void LCD_SentLineP(char *line, char x, char y)
{
LCD_GotoXY(x, y);
while(*line != '\0')
{
LCD_SentChar( *(line++) );
}
}
void LCD_SentLinePC(const char *line, char x, char y)
{
char buffer;
LCD_GotoXY(x, y);
do
{
buffer = pgm_read_byte(line++);
if(buffer == '\0') break;
LCD_SentChar( buffer );
}while(1);
}
void LCD_SentLinePE(const char *line, char x, char y)
{
char buffer;
LCD_GotoXY(x, y);
do
{
buffer = eeprom_read_byte(line++);
if(buffer == '\0') break;
LCD_SentChar( buffer );
}while(1);
}
void LCD_SentLineCyr(char *line) // Sent text data in the LCD
{
while(*line != '\0')
{
LCD_SentChar(ConvertToCyrillic(*line));
line++;
}
}
void LCD_SentLineCyrC(const char *line) // Sent text data in the LCD
{
char buffer;
do
{
buffer = pgm_read_byte(line);
if(buffer == '\0') break;
LCD_SentChar( ConvertToCyrillic( buffer ) );
line++;
}while(1);
}
void LCD_SentLineCyrE(const char *line)
{
char buffer;
do
{
buffer = eeprom_read_byte(line++);
if(buffer == '\0') break;
LCD_SentChar( ConvertToCyrillic( buffer ) );
}while(1);
}
void LCD_SentLineCyrP(char *line, char x, char y)
{
LCD_GotoXY(x, y);
while(*line != '\0')
{
LCD_SentChar(ConvertToCyrillic(*line));
line++;
}
}
void LCD_SentLineCyrPC(const char *line, char x, char y)
{
char buffer;
LCD_GotoXY(x, y);
do
{
buffer = pgm_read_byte(line);
if(buffer == '\0') break;
LCD_SentChar( ConvertToCyrillic( buffer ) );
line++;
}while(1);
}
void LCD_SentLineCyrPE(const char *line, char x, char y)
{
char buffer;
LCD_GotoXY(x, y);
do
{
buffer = eeprom_read_byte(line++);
if(buffer == '\0') break;
LCD_SentChar( ConvertToCyrillic( buffer ) );
}while(1);
}
char ConvertToCyrillic(char str)
{
switch (str)
{
case 'À': return 0x41; break; // À
case 'Á': return 0xA0; break; // Á
case 'Â': return 0x42; break; // Â
case 'Ã': return 0xA1; break; // Ã
case 'Ä': return 0xE0; break; // Ä
case 'Å': return 0x45; break; // Å
case '¨': return 0xA2; break; // ¨
case 'Æ': return 0xA3; break; // Æ
case 'Ç': return 0x33; break; // Ç
case 'È': return 0xA5; break; // È
case 'É': return 0xA6; break; // É
case 'Ê': return 0x4B; break; // Ê
case 'Ë': return 0xA7; break; // Ë
case 'Ì': return 0x4D; break; // Ì
case 'Í': return 0x48; break; // Í
case 'Î': return 0x4F; break; // Î
case 'Ï': return 0xA8; break; // Ï
case 'Ð': return 0x50; break; // Ð
case 'Ñ': return 0x43; break; // Ñ
case 'Ò': return 0x54; break; // Ò
case 'Ó': return 0xA9; break; // Ó
case 'Ô': return 0xAA; break; // Ô
case 'Õ': return 0x58; break; // Õ
case 'Ö': return 0xE1; break; // Ö
case '×': return 0xAB; break; // ×
case 'Ø': return 0xAC; break; // Ø
case 'Ù': return 0xE2; break; // Ù
case 'Ú': return 0xAD; break; // Ú
case 'Û': return 0xAE; break; // Û
case 'Ü': return 0x62; break; // Ü
case 'Ý': return 0xAF; break; // Ý
case 'Þ': return 0xB0; break; // Þ
case 'ß': return 0xB1; break; // ß
case 'à': return 0x61; break; // à
case 'á': return 0xB2; break; // á
case 'â': return 0xB3; break; // â
case 'ã': return 0xB4; break; // ã
case 'ä': return 0xE3; break; // ä
case 'å': return 0x65; break; // å
case '¸': return 0xB5; break; // ¸
case 'æ': return 0xB6; break; // æ
case 'ç': return 0xB7; break; // ç
case 'è': return 0xB8; break; // è
case 'é': return 0xB9; break; // é
case 'ê': return 0xBA; break; // ê
case 'ë': return 0xBB; break; // ë
case 'ì': return 0xBC; break; // ì
case 'í': return 0xBD; break; // í
case 'î': return 0x6F; break; // î
case 'ï': return 0xBE; break; // ï
case 'ð': return 0x70; break; // ð
case 'ñ': return 0x63; break; // ñ
case 'ò': return 0xBF; break; // ò
case 'ó': return 0x79; break; // ó
case 'ô': return 0xE4; break; // ô
case 'õ': return 0x78; break; // õ
case 'ö': return 0xE5; break; // ö
case '÷': return 0xC0; break; // ÷
case 'ø': return 0xC1; break; // ø
case 'ù': return 0xE6; break; // ù
case 'ú': return 0xC2; break; // ú
case 'û': return 0xC3; break; // û
case 'ü': return 0xC4; break; // ü
case 'ý': return 0xC5; break; // ý
case 'þ': return 0xC6; break; // þ
case 'ÿ': return 0xC7; break; // ÿ
default : return str;
}
}