Hi guys,
I am using a 16x2 LCD to display some words from a PIC16F877A. But I am unable to display anything even after many tries.
I connect the LCD to PORT D.
I do not know what went wrong.
The codes to initialise the LCD is as follow.
//LCD Configuration
send_config(0b00111000); //Funtion set
delay(15);
send_config(0b00111000); //Funtion set
delay(5);
send_config(0b00001100); //diplay on, cursor off and cursor blink off
send_config(0b00001100); //entry mode-cursor increase 1
send_config(0b00000001); //Clear display cursor home
please help me.