Loading...
Logo
Processing Forum
taar's Profile
3 Posts
7 Responses
0 Followers

Activity Trend

Last 30 days

Loading Chart...

Show:
Private Message
    I need a timer that only count in second with decimal part (Hundredth).some thing like this:

    [...]
    04.97
    04.98
    04.99
    05.00
    .
    .
    .
    60.99
    01.00
    01.01
    01.02
    [...]


     
      I'd be very grateful if you write code for me.
      thanks for the help!
    this is my simple code:
    1.   String[] a = split(trim(serial), ',');  //a new array (called 'a') that stores values into separate cells (separated by commas specified in  Arduino program)


    2.    int s2 = int(map(int(a[1]),1,1023,1,400));
    3.    int s1 = int(map(int(a[0]),1,1023,1,1023));

    4.  for (int j = 1; j <109; j++) {
    5.       if (s1==x[j]){
    6.         for(int i=1; i<400 ; i++){
    7.             if(s2==y[i]){     
    8.      
    9.                  println("Hi");

    10.           }
    11.        }
    12.    }
    13.  }
    * x[j] and y[j] are two arrays to comparison the sensor value.

    now, i have an issue,

    With each iteration of the loop (every step  j <109; j++ and   i<400 ; i++ ) "Hi"  is printed.
    I want one print of "Hi' in all iteration.How?

    any idea?
    Thank you in advance for your response.
    I read some data from arduino and after use map() to make a new range, I can't plot them:
    this is my code:
    what's wrong!!!!!!!!!!!!!!!

    why "Hi" can not printed?
    1.   String[] a = split(trim(serial), ',');  //a new array (called 'a') that stores values into separate cells (separated by commas specified in  Arduino program)

    2.    float s2 = map(Integer.parseInt(a[1]),1,1023,1,400);
    3.    float s1 = map(Integer.parseInt(a[0]),1,1023,1,1023);

    4.  for (int j = 1; j <109; j++) {
    5.       if ((s1==x[j]) &&  (second() % 5 == 0)){
    6.   
    7.         for(int i=1; i<400 ; i++){
    8.             if((s2==y[i]) && (second() % 5 == 0)){ 

                  println("Hi");
             }
    9.      }
    10.   }
    11. }
    -x[j] and y[j] is two arrays to comparison the sensor value.


    - best regard