blob: f9567ad85da6a2e3dfffcc501de5484e60026e19 (
plain) (
blame)
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
|
#include "xc.h"
#include "lab5_lcd.h"
#include "string.h"
//CON should be between 0 and 0xFF.
#define CON 0x00
//Obligatory delay function
void delay(long n){
for (n=n; n>0; n--) {
asm("nop");
}
}
void lcd_cmd(char command) {
I2C2CONbits.SEN = 1; //Start
while(I2C2CONbits.SEN);
IFS3bits.MI2C2IF=0;
I2C2TRN= 0b01111100; //Slave address and R/W bit
while(!IFS3bits.MI2C2IF);
IFS3bits.MI2C2IF=0;
I2C2TRN = 0b00000000; //Control byte
while(!IFS3bits.MI2C2IF);
IFS3bits.MI2C2IF=0;
I2C2TRN = command; //Data byte
while(!IFS3bits.MI2C2IF);
IFS3bits.MI2C2IF=0;
I2C2CONbits.PEN = 1; //Stop
while(I2C2CONbits.PEN);
}
void lcd_init(void) {
delay(66666);
lcd_cmd(0b00111000); // function set, normal instruction mode
lcd_cmd(0b00111001); // function set, extended instruction mode
lcd_cmd(0b00010100); // interval osc
lcd_cmd((0b0111 << 4) + CON); // contrast C3-C0
lcd_cmd(0b01011110); // Ion, Bon, C5-C4
lcd_cmd(0b01101100); // follower control
delay(266665);
lcd_cmd(0b00111000); // function set, normal instruction mode
lcd_cmd(0b00001100); // Display On
lcd_cmd(0b00000001); // Clear Display
delay(2667);
}
void lcd_setCursor(char x, char y) {
char location = 0x40 * y + x;
lcd_cmd((1 << 7) + location);
}
void lcd_printChar(char myChar) {
I2C2CONbits.SEN = 1;
while(I2C2CONbits.SEN);
IFS3bits.MI2C2IF = 0;
I2C2TRN= 0b01111100;
while(!IFS3bits.MI2C2IF);
IFS3bits.MI2C2IF = 0;
I2C2TRN = 0b01000000; //RS = 1
while(!IFS3bits.MI2C2IF);
IFS3bits.MI2C2IF = 0;
I2C2TRN = myChar;
while(!IFS3bits.MI2C2IF);
IFS3bits.MI2C2IF = 0;
I2C2CONbits.PEN = 1;
while(I2C2CONbits.PEN);
}
void lcd_printStr(const char s[]) {
int size = strlen(s);
I2C2CONbits.SEN = 1; //Start
while(I2C2CONbits.SEN);
IFS3bits.MI2C2IF=0;
I2C2TRN= 0b01111100; //Slave address and R/W bit
while(!IFS3bits.MI2C2IF);
IFS3bits.MI2C2IF=0;
int i;
for (i=0; i < size - 1; i++) {
I2C2TRN = 0b11000000; //Control byte, RS = 1
while(!IFS3bits.MI2C2IF);
IFS3bits.MI2C2IF=0;
I2C2TRN = s[i]; //Data byte
while(!IFS3bits.MI2C2IF);
IFS3bits.MI2C2IF=0;
}
I2C2TRN = 0b01000000; //Control byte, RS = 1
while(!IFS3bits.MI2C2IF);
IFS3bits.MI2C2IF=0;
I2C2TRN = s[size-1]; //Data byte
while(!IFS3bits.MI2C2IF);
IFS3bits.MI2C2IF=0;
I2C2CONbits.PEN = 1; //Stop
while(I2C2CONbits.PEN);
}
void left(void) {
lcd_cmd(0b11 << 3);
}
void right(void) {
lcd_cmd(0b111 << 2);
}
|