Write a chunk of code that does this...Now im stuck. When i boot the programe up i get the time showing which ive set. I then start the timer and the tenth of seconds count down like i want them too! However it doesnt role over into the seconds
Take a byte variable, assign a value of ZERO to it, subtract one from that value and display it. For example:
What's the result?Code:temp var byte temp = 0 temp = temp - 1 lcdout $fe , 1 , DEC temp
Is it what you expect?
Bookmarks