void setup() {
randomSeed(analogRead(A0));
Serial.begin(115200);
}
void loop() {
// put your main code here, to run repeatedly:
int stevilo = random(1, 11);
Serial.println(stevilo);
delay(500);
}
void setup() {
randomSeed(analogRead(A0));
Serial.begin(115200);
}
void loop() {
// put your main code here, to run repeatedly:
int stevilo = random(1, 11);
Serial.println(stevilo);
delay(500);
}