void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
}
void loop() {
// put your main code here, to run repeatedly:
for(int x=0;x<=10;x=x+1){
}
Serial.println(x);
delay(1000);
}
Serial.println("Ya hemos salido del loop");