Home › Forums › Microcontrollers › PIC Microcontroller › ASCII CODE DISPAY IN PIC16F690 › Reply To: ASCII CODE DISPAY IN PIC16F690
October 29, 2013 at 6:18 pm
#7553
Ligo George
Keymaster
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);
Hope you got the logic..