Create a simple countdown in processing
A simple option is to manually keep track of time using millis(). You would use two variables: one to store elapsed time one to store the wait/delay time you need In the draw() method you would check if the difference between the current time (in millis.) and the previously stored time is greater(or equal) to … Read more