byte valor[5]={10,20,30,40,50};//5 datos de forma decimal
//todas las variables (float, int, bool...) se puedend declarar como ARRAY!!
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
valor[2]=valor[0]+100;
Serial.println(valor[2]);
}
void loop() {
// put your main code here, to run repeatedly:
}