HELLO FRIEND,
I am shankar.I dont know how to display the ascii code in lcd.can you help me.Actually i want to display the numbers from 1 t0 1000 in lcd using pic16f690.
Which compiler you are using???
If you are using MikroC Pro… there is a built in function IntToStr() use it..
If you are using other compiler… extract digit by digit… and display it…
for eg: 45 can be displayed by following method..
i = 45;
DisplayCharacter((i%10)+48);
i = i/10;
DisplayCharacter((i%10)+48);