from machine import Pin, ADC
import neopixel
from time import sleep
import random
import time
nl=80
leds = neopixel.NeoPixel(Pin(5), nl)
while True:
rgb1=[random.randint(0,255),random.randint(0,255),random.randint(0,255)]
rgb2=[random.randint(0,255),random.randint(0,255),random.randint(0,255)]
leds.fill([255,255,255])
for l in range (nl):
leds[l]=[235, 253, 4 ]
if l>=16:
leds[l]=[0, 166, 9 ]
if l>=32:
leds[l]=[255, 0, 0]
if l>=48:
leds[l]=[0,0,0]
if l>=64:
leds[l]=[51, 152, 255]
leds.write()
sleep(0.1)