Advertisement
HytheCoderDojo

Sense Hat tester

Oct 24th, 2021 (edited)
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.46 KB | None | 0 0
  1. # Sense hat tester - change sense_hat to sense_emu to use the emulator
  2.  
  3. from sense_hat import SenseHat
  4.  
  5. sense = SenseHat()
  6.  
  7. b = (0, 0, 255)
  8. r = (255, 0, 0)
  9. g = (0, 255, 0)
  10. y = (255, 255, 0)
  11.  
  12. sense.show_message("Colin was here", text_colour=r, back_colour = y)
  13.  
  14. #Added by John T
  15. #you can use a web page for Trinket trinket.io/python/312a2b66ba
  16. #The emulator will not display text_colour or back_colour as a pretty sparkle instead it displays black & white only
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement