This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

display ascii on LCD

void main(void)
{
char ebit,ans;

ebit = 0x01;
ans = ebit*(100/256);
}

how can i display the value in ans on LCD
?

void lcdPutStr (char *string)
{
char i;
i=0;
while(string[i])
{
lcdPutCh (string[i++]);
}
}

this is the program segment for putting the characters into LCD

0