back space in LCD with keypad | Microcontroller › 8051 › back space in LCD with keypad This topic has 1 reply, 2 voices, and was last updated 10 years, 3 months ago by Ashutosh Bhatt. Viewing 2 posts - 1 through 2 (of 2 total) Author Posts October 28, 2014 at 11:51 am #3311 vivekanand goud jParticipant creating backspace in lcd with keypad using * as backspace character code: msgdisplay(“enter ph.no:”); do { a=keyscan(); if(a==’*’) { i=i-1; lcdcmd(0x04); continue; } lcdcmd(0xc0+i); lcddata(a); i++; }while(i<10); a=’