gandhali
Newbie level 1
Hello everyone,
I am working on PIC 18f4523 with mplab X IDE XC8 compiler. I am using 16x2 LCD which is connected to PORTD, and the RS, RW, EN pins of LCD are connected to PORTB.
I have written simple code for LCD interfacing and there is no any syntax error in my code. The code builds successfully, but when I am trying it on hardware the back light of LCD only glows. that means there is some problem in initialization of LCD. I am attaching my code. so please help me to get out of this problem.
I am working on PIC 18f4523 with mplab X IDE XC8 compiler. I am using 16x2 LCD which is connected to PORTD, and the RS, RW, EN pins of LCD are connected to PORTB.
I have written simple code for LCD interfacing and there is no any syntax error in my code. The code builds successfully, but when I am trying it on hardware the back light of LCD only glows. that means there is some problem in initialization of LCD. I am attaching my code. so please help me to get out of this problem.
Code C - [expand] 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 #pragma config OSC = INTIO67 // Oscillator Selection bits (Internal oscillator block, port function on RA6 and RA7) #pragma config FCMEN = OFF // Fail-Safe Clock Monitor Enable bit (Fail-Safe Clock Monitor disabled) #pragma config IESO = OFF // Internal/External Oscillator Switchover bit (Oscillator Switchover mode disabled) // CONFIG2L #pragma config PWRT = ON // Power-up Timer Enable bit (PWRT enabled) #pragma config BOREN = ON // Brown-out Reset Enable bits (Brown-out Reset enabled and controlled by software (SBOREN is enabled)) #pragma config BORV = 3 // Brown Out Reset Voltage bits (Minimum setting) // CONFIG2H #pragma config WDT = ON // Watchdog Timer Enable bit (WDT enabled) #pragma config WDTPS = 32768 // Watchdog Timer Postscale Select bits (1:32768) // CONFIG3H #pragma config CCP2MX = PORTC // CCP2 MUX bit (CCP2 input/output is multiplexed with RC1) #pragma config PBADEN = OFF // PORTB A/D Enable bit (PORTB<4:0> pins are configured as digital I/O on Reset) #pragma config LPT1OSC = OFF // Low-Power Timer1 Oscillator Enable bit (Timer1 configured for higher power operation) #pragma config MCLRE = ON // MCLR Pin Enable bit (MCLR pin enabled; RE3 input pin disabled) // CONFIG4L #pragma config STVREN = OFF // Stack Full/Underflow Reset Enable bit (Stack full/underflow will not cause Reset) #pragma config LVP = OFF // Single-Supply ICSP Enable bit (Single-Supply ICSP disabled) #pragma config XINST = OFF // Extended Instruction Set Enable bit (Instruction set extension and Indexed Addressing mode disabled (Legacy mode)) // CONFIG5L #pragma config CP0 = ON // Code Protection bit (Block 0 (000800-001FFFh) code-protected) #pragma config CP1 = ON // Code Protection bit (Block 1 (002000-003FFFh) code-protected) #pragma config CP2 = ON // Code Protection bit (Block 2 (004000-005FFFh) code-protected) #pragma config CP3 = ON // Code Protection bit (Block 3 (006000-007FFFh) code-protected) // CONFIG5H #pragma config CPB = OFF // Boot Block Code Protection bit (Boot block (000000-0007FFh) not code-protected) #pragma config CPD = ON // Data EEPROM Code Protection bit (Data EEPROM code-protected) // CONFIG6L #pragma config WRT0 = OFF // Write Protection bit (Block 0 (000800-001FFFh) not write-protected) #pragma config WRT1 = OFF // Write Protection bit (Block 1 (002000-003FFFh) not write-protected) #pragma config WRT2 = OFF // Write Protection bit (Block 2 (004000-005FFFh) not write-protected) #pragma config WRT3 = OFF // Write Protection bit (Block 3 (006000-007FFFh) not write-protected) // CONFIG6H #pragma config WRTC = OFF // Configuration Register Write Protection bit (Configuration registers (300000-3000FFh) not write-protected) #pragma config WRTB = OFF // Boot Block Write Protection bit (Boot block (000000-0007FFh) not write-protected) #pragma config WRTD = OFF // Data EEPROM Write Protection bit (Data EEPROM not write-protected) // CONFIG7L #pragma config EBTR0 = OFF // Table Read Protection bit (Block 0 (000800-001FFFh) not protected from table reads executed in other blocks) #pragma config EBTR1 = OFF // Table Read Protection bit (Block 1 (002000-003FFFh) not protected from table reads executed in other blocks) #pragma config EBTR2 = OFF // Table Read Protection bit (Block 2 (004000-005FFFh) not protected from table reads executed in other blocks) #pragma config EBTR3 = OFF // Table Read Protection bit (Block 3 (006000-007FFFh) not protected from table reads executed in other blocks) // CONFIG7H #pragma config EBTRB = OFF // Boot Block Table Read Protection bit (Boot block (000000-0007FFh) not protected from table reads executed in other blocks) // #pragma config statements should precede project file includes. // Use project enums instead of #define for ON and OFF. #include <xc.h> #define _XTAL_FREQ 4000000 #define LCD_RS PORTBbits.RB0 #define LCD_EN PORTBbits.RB1 #define LCD_RW PORTBbits.RB2 #define LCD_D0 PORTDbits.RD0 #define LCD_D1 PORTDbits.RD1 #define LCD_D2 PORTDbits.RD2 #define LCD_D3 PORTDbits.RD3 #define LCD_D4 PORTDbits.RD4 #define LCD_D5 PORTDbits.RD5 #define LCD_D6 PORTDbits.RD6 #define LCD_D7 PORTDbits.RD7 #define CLRSCR 0x01 #define DISPLAY_ON 0x0C #define DISPLAY_OFF 0x08 #define CURSOR_ON 0x0A #define CURSOR_OFF 0x08 #define CURSOR_INC 0x06 #define MODE_8BIT 0x38 #define MODE_4BIT 0x28 void lcd_cmd(unsigned int c) { __delay_ms(300); LCD_RS = 0; LCD_RW = 0; LCD_EN = 1; PORTD = c; __delay_ms(100); LCD_EN = 0; __delay_ms(100); LCD_RS = 0; LCD_RW = 0; } void lcd_data(unsigned char c) { __delay_ms(300); LCD_RS = 1; LCD_RW = 0; LCD_EN = 1; PORTD = c; __delay_ms(100); LCD_EN = 0; __delay_ms(100); LCD_RS = 0; LCD_RW = 0; } void lcd_init(void) { __delay_ms(300); LATD = 0x00; TRISB = 0x00; LCD_RS = 0; LCD_RW = 0; LCD_EN = 0; __delay_ms(100); lcd_cmd(CLRSCR); __delay_ms(10); lcd_cmd(DISPLAY_ON); __delay_ms(10); lcd_cmd(CURSOR_ON); __delay_ms(10); lcd_cmd(CURSOR_INC); __delay_ms(10); lcd_cmd(MODE_8BIT); __delay_ms(10); } void main(void) { TRISD = 0x00; TRISB = 0x00; lcd_init(); while(1) { lcd_data(' '); lcd_data(' '); lcd_data(' '); lcd_data(' '); lcd_data('H'); lcd_data(' '); lcd_data('E'); lcd_data(' '); lcd_data('L'); lcd_data(' '); lcd_data('L'); lcd_data(' '); lcd_data('O'); } return; }
Last edited by a moderator: