Loading...
Logo
Processing Forum

counter

in General Discussion  •  Other  •  1 year ago  
I need to make a 5 digits counter for a theatre play. It should go from 0 to 10477 and from 10477 and I should be able to control this time of progression (around 8 minutes). I have no idea from where to start and I would apreciete so much some tip as I cound't fine any code or information about.
thanks so much

Replies(2)

Re: counter

1 year ago
this gives you a timer of 8 seconds

for 8 minutes from 0 to 1 and so on, change line 10
...... 8*60*1000........


Copy code
  1. int i = 0;
  2. int timerSet;
  3. void setup() {
  4.   size(200, 200);
  5.   timerSet=millis();
  6. }
  7. void draw() {
  8.   background(0);
  9.   text (i, 100, 100);
  10.   if ((timerSet+(8 * 1 * 1000)<millis()) && (i<10477)) {
  11.     i++;
  12.     timerSet=millis();
  13.   }
  14. }
  15. void keyPressed() {
  16.   if (i<10477)
  17.     i++;
  18. }



Re: counter

1 year ago

here is a version with 00002 etc.




Copy code
  1. int i = 0;
  2. int timerSet;
  3. void setup() {
  4.   size(200, 200);
  5.   timerSet=millis();
  6. }
  7. void draw() {
  8.   background(0);
  9.   text (""+leadingZeros(i), 100, 100);
  10.   if ((timerSet+(8*1*1000)<millis()) && (i<10477)) {
  11.     i++;
  12.     timerSet=millis();
  13.   }
  14. }
  15. void keyPressed() {
  16.   if (i<10477)
  17.     i++;
  18. }
  19. String leadingZeros(int a) {
  20.   String Buffer;
  21.   Buffer=nf(a, 5);
  22.   return(Buffer);
  23. }