ddrk Profile Topics Started Replies Created Engagements Search replies: Forum Replies Created Viewing 2 posts - 1 through 2 (of 2 total) Author Posts June 28, 2013 at 4:51 am in reply to: plz tell the problem in this lcd program.it is not showing the output #10050 ddrkParticipant just change the this connect your lcd data pins to P2 void lcd_command(unsigned char value) { P2=value; rs=0; rw=0; e=1; delay_ms(100); e=0; } void lcd_data(unsigned char value) { P2=value; rs=1; rw=0; e=1; delay_ms(100); e=0; } or if you use this connect ur lcd data pins to P1 void lcd_command(unsigned char value) { P1=value; rs=0; rw=0; e=1; delay_ms(100); e=0; } void lcd_data(unsigned char value) { P1=value; rs=1; rw=0; e=1; delay_ms(100); e=0; } June 26, 2013 at 8:05 am in reply to: 89S51 and 89C51 similarity or difference #10036 ddrkParticipant 89c51 and 89s51 difference…… In S series the main difference is that you can program the “S” verison through ISP (in application) or using very simple programmers, while the “C” version still needs “full” parallel programmer . (ISP stands for In System Programming) Author Posts Viewing 2 posts - 1 through 2 (of 2 total)