void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
}
void loop() {
for(int x = 1; x <= 10; x++){
Serial.println(x);
delay(1000);
}
while(1);
delay(1000);
}
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
}
void loop() {
for(int x = 1; x <= 10; x++){
Serial.println(x);
delay(1000);
}
while(1);
delay(1000);
}