Hi,
I am trying to program an LCD (www.cloverlcd.com/pdf/S6A0069.pdf) with the PIC18F2321 microcontroller. I have got it to work in 8 bit mode and am now trying to convert it to 4 bit mode. All I am trying to do right now is get a blinking cursor on the top left of the LCD. With the code I have now, I get a blinking cursor but I also get some random symbols that do not resemble any character in the ASCII table. They look like a full 5x11 square with a couple squares in the middle missing, just really really random. Anyone know what causes these or how to get rid of them? Any help is greatly appreciated!!!
My code is below in case you want to check it out.
void LCDInitialization(void) {
COMPortCWithoutBusy(0x20); //function set first nibble
Delay1KTCYx(10);
COMPortCWithoutBusy(0x20); //function set second nibble
Delay1KTCYx(10);
//BusyEnable();
Delay1KTCYx(10);
COMPortCWithoutBusy(0x80); //function set third nibble
Delay1KTCYx(10);
BusyEnable();
Delay1KTCYx(10);
COMPortCWithoutBusy(0x00); //Turn on display and configure cursor settings first nibble
Delay1KTCYx(10);
COMPortCWithoutBusy(0xF0); //Turn on display and configure cursor settings second nibble
Delay1KTCYx(10);
BusyEnable();
Delay1KTCYx(10);
COMPortCWithoutBusy(0x00); //disp clear first nibble
Delay1KTCYx(10);
COMPortCWithoutBusy(0x10); //disp clear second nibble
Delay1KTCYx(10);
BusyEnable();
Delay1KTCYx(10);
COMPortCWithoutBusy(0x00); //entry mode set first nibble
Delay1KTCYx(10);
COMPortCWithoutBusy(0x60); //entry mode set second nibble
Delay1KTCYx(10);
BusyEnable();
Delay1KTCYx(10);
}
void COMPortCWithoutBusy(char com) { LCDSetCommandMode(); Delay1KTCYx(100); PORTC = com; LCDCOMEnableWithoutBusy(); PORTC = 0; }
void LCDCOMEnableWithoutBusy(void) { Delay1KTCYx(10); PORTBbits.RB2 = 1; //enable high Delay1KTCYx(10); PORTBbits.RB2 = 0; //enable low Delay1KTCYx(10); }
void LCDSetCommandMode(void) { Delay1KTCYx(10); PORTBbits.RB0 = 0; Delay1KTCYx(10); }
