from sense_hat import SenseHat #import the SenseHat object from the sense_hat libraryfrom time import sleep
#this is how you load the sense object so you can use it in this script.sense = SenseHat()
#creating variables to store RGB colorsp = (128, 0, 128) #pinkw = (255, 255, 255) #whitek = (0,0,0) #blank
egg = [p,p,p,p,p,p,p,p, p,p,p,w,w,p,p,p, p,p,w,w,w,w,p,p, p,p,w,w,w,w,p,p, p,p,w,w,w,w,p,p, p,p,w,w,w,w,p,p, p,p,p,w,w,p,p,p, p,p,p,p,p,p,p,p] hatched = [k,k,k,k,k,k,k,k, k,k,k,p,p,p,k,k, k,k,p,p,p,p,p,k, k,k,p,k,p,k,p,k, k,k,p,w,p,w,p,k, k,k,k,p,p,p,k,k, k,k,k,p,p,p,k,k, k,k,p,p,k,p,p,k ]
#this is how you scroll a messagesense.show_message("I'm still an egg!")
#add more messages below.
#the sense object has functions we can use: set_pixels. The value in the parentheses should be the egg.sense.set_pixels(egg)