Guest User

Untitled

a guest
Jan 18th, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. void setup() {
  2. randomSeed(analogRead(A2));
  3. Serial.begin(9600);
  4. Serial.println("Würfel: ");
  5. }
  6.  
  7. void loop() {
  8. Serial.println(random(1, 7));
  9. delay(3000);
  10. }
Add Comment
Please, Sign In to add comment