# NeoPixels Rainbow on MicroPython
# Updated for dynamic color generation, improved memory efficiency, and added parameterization
from machine import Pin
from neopixel import NeoPixel
from time import sleep
def generate_rainbow():
"""
Generates a list of RGB values to create a rainbow effect.
"""
rainbow = []
for i in range(256):
if i < 85:
rainbow.append((i * 3, 255 - i * 3, 0))
elif i < 170:
i -= 85
rainbow.append((255 - i * 3, 0, i * 3))
else:
i -= 170
rainbow.append((0, i * 3, 255 - i * 3))
return rainbow
def setup_neopixel(pin_num, num_pixels):
"""
Initializes the NeoPixel ring.
"""
try:
pixels = NeoPixel(Pin(pin_num), num_pixels)
return pixels
except Exception as e:
print(f"Error initializing NeoPixel: {e}")
return None
# Parameterization
PIN_NUM = 11 # Pin number for NeoPixel data line
NUM_PIXELS = 16 # Number of pixels in the NeoPixel ring
rainbow = generate_rainbow() # Generate rainbow colors dynamically
pixels = setup_neopixel(PIN_NUM, NUM_PIXELS)
if pixels:
while True:
rainbow = rainbow[-1:] + rainbow[:-1] # Rotate colors
for i in range(NUM_PIXELS):
pixels[i] = rainbow[i % len(rainbow)] # Assign color to each pixel
pixels.write()
sleep(0.01)
pico:GP0
pico:GP1
pico:GND.1
pico:GP2
pico:GP3
pico:GP4
pico:GP5
pico:GND.2
pico:GP6
pico:GP7
pico:GP8
pico:GP9
pico:GND.3
pico:GP10
pico:GP11
pico:GP12
pico:GP13
pico:GND.4
pico:GP14
pico:GP15
pico:GP16
pico:GP17
pico:GND.5
pico:GP18
pico:GP19
pico:GP20
pico:GP21
pico:GND.6
pico:GP22
pico:RUN
pico:GP26
pico:GP27
pico:GND.7
pico:GP28
pico:ADC_VREF
pico:3V3
pico:3V3_EN
pico:GND.8
pico:VSYS
pico:VBUS
ring1:GND
ring1:VCC
ring1:DIN
ring1:DOUT