Last active
March 26, 2018 19:23
-
-
Save e8kor/35da99e3036bb991013c83efab7919ca to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from sense_hat import SenseHat | |
import time | |
sense = SenseHat() | |
p = (255,0,0) | |
e = (0,0,0) | |
heart = [ | |
e,e,p,e,e,p,e,e, | |
e,p,e,p,p,e,p,e, | |
p,e,e,p,e,e,e,p, | |
p,e,e,e,e,e,e,p, | |
e,p,e,e,e,e,p,e, | |
e,e,p,e,e,p,e,e, | |
e,e,e,p,p,e,e,e, | |
e,e,e,e,e,e,e,e | |
] | |
sense.set_pixels(heart) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment