Skip to content

Instantly share code, notes, and snippets.

@RajanRao12
Created April 21, 2022 17:09
Show Gist options
  • Save RajanRao12/d2099ea2071d7a593d40966283ee6410 to your computer and use it in GitHub Desktop.
Save RajanRao12/d2099ea2071d7a593d40966283ee6410 to your computer and use it in GitHub Desktop.
Rajan Rao Robin Lamp Color Sequence
import time
import board
import neopixel
pixel_pin = board.D2 #the ring data is connected to this pin
num_pixels = 12 #number of leds pixels on the ring
pixels = neopixel.NeoPixel(pixel_pin, num_pixels, brightness=0.3, auto_write=False)
RED = (255, 0, 0) #RGB
YELLOW = (255, 150, 0)
GREEN = (0, 255, 0)
CYAN = (0, 255, 255)
BLUE = (0, 0, 255)
PURPLE = (180, 0, 255)
WHITE = (255,255,255)
OFF = (0,0,0)
ORANGEROBIN = (225,60,20)
REDROBIN = (222,35,5) #yum
while True:
pixels.fill(REDROBIN)
pixels.show() #required to update pixels
time.sleep(1)
pixels.fill(ORANGEROBIN)
pixels.show()
time.sleep(1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment