Nigel Goodwin Super Moderator Most Helpful Member Jan 2, 2005 #2 procos said: how to display on lcd 99999? i am use pic 16f84a. thanx. Click to expand... Try my PIC tutorials, but basically you simply output an ASCII 9 (decimal value 57) to the display five times.
procos said: how to display on lcd 99999? i am use pic 16f84a. thanx. Click to expand... Try my PIC tutorials, but basically you simply output an ASCII 9 (decimal value 57) to the display five times.
Nigel Goodwin Super Moderator Most Helpful Member Jan 3, 2005 #4 Re: ps procos said: sorry , i wnat to count up to 99999 thanx nigel. Click to expand... You need to use a three byte (24 bit) counter, you can easily do this by using three registers, linking one to the other as they overflow. My LCD tutorial 3.2 displays a 16 bit counter, you could easily make it 24 bit, although the binary to decimal routine is only 16 bit as well.
Re: ps procos said: sorry , i wnat to count up to 99999 thanx nigel. Click to expand... You need to use a three byte (24 bit) counter, you can easily do this by using three registers, linking one to the other as they overflow. My LCD tutorial 3.2 displays a 16 bit counter, you could easily make it 24 bit, although the binary to decimal routine is only 16 bit as well.