void setup() {
Serial.begin(115200);
int buff[10]; //array di 10 posizioni
for(int i=0;i<10;i++){
buff[i]=i*2;
}
//syampo array
for(int i=0; i<10; i++){
Serial.printf("%d Valore: %d \n", i, buff[i]);
}
}
void loop() {
}
void setup() {
Serial.begin(115200);
int buff[10]; //array di 10 posizioni
for(int i=0;i<10;i++){
buff[i]=i*2;
}
//syampo array
for(int i=0; i<10; i++){
Serial.printf("%d Valore: %d \n", i, buff[i]);
}
}
void loop() {
}