Hi
I works with two arduino
One send over serial a CSV string
I want other arduino parsing the string and use values
sprintf(msg1,"$;%i;%i;%i;%i;*",temp1,temp2,press,light);
I would like on other arduino something like that:
And I would like value able to used as variable
Serial.print(temp1);
Serial.print(temp2);
Serial.print(press);
Serial.print(light);
Thanks