byte tes=0;
void setup() {
Serial.begin(9600);
while (tes<200){
tes+=1;
Serial.println(tes);
delay(50);
if(tes == 150){
break;
}
}
Serial.print("stop");
}
void loop() {
// put your main code here, to run repeatedly:
}
byte tes=0;
void setup() {
Serial.begin(9600);
while (tes<200){
tes+=1;
Serial.println(tes);
delay(50);
if(tes == 150){
break;
}
}
Serial.print("stop");
}
void loop() {
// put your main code here, to run repeatedly:
}