from machine import Pin
from neopixel import NeoPixel
import time
time.sleep(0.1) # Wait for USB to become ready
print("Welcome to Skill Disk")
neo = NeoPixel( Pin(19), 16)
VIBGYOR = [
(148, 0, 211),
(75, 0, 130),
(0, 0, 255),
(0, 255, 0),
(255, 255, 0),
(255, 127, 0),
(255, 0, 0),
]
while True:
for color in VIBGYOR:
neo.fill(color)
neo.write()
time.sleep_ms(500)