For assignment 7 I'm trying to make a timer. Im trying to get the count down in an easier code. Now I have a whole list of: display.draw2x2String (4, 2, "08"); going from 10 to 0
I was wondering if it is also possible to use a for loop, something like this;
for(int i = 10; i > 0; i--){ display.draw2x2String (4, 2, i); delay (1000); However, I am not able to get it displayed properly. What can I do to fix this?