long x;
void setup() {
Serial.begin(9600);
randomSeed (analogRead(A0));
}
void loop() {
// Eine Zufallszahl zwischen 0 und 299 ausgeben
x = random(30, 300);
Serial.println(x);
delay(2000);
}long x;
void setup() {
Serial.begin(9600);
randomSeed (analogRead(A0));
}
void loop() {
// Eine Zufallszahl zwischen 0 und 299 ausgeben
x = random(30, 300);
Serial.println(x);
delay(2000);
}