Advertisement
HytheCoderDojo

Untitled

Oct 26th, 2021
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.29 KB | None | 0 0
  1. # Sparkly
  2. from sense_hat import SenseHat
  3. from random import randint
  4. from time import sleep
  5.  
  6. sense = SenseHat()
  7. while True:
  8.     x = randint(0,7)
  9.     y = randint(0,7)
  10.  
  11.     b = randint(0,255)
  12.     r = randint(0,255)
  13.     g = randint(0,255)
  14.  
  15.     sense.set_pixel(x,y,r,g,b)
  16.     sleep(0.1)
  17.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement