import time
from picozero import RGBLED
import random
time.sleep(0.1)
#rgb1 = RGBLED(0,1,2)
#while True:
# for i in range(0,7):
# rgb1.color = (random.randint(0,255), random.randint(0,255), random.randint(0,255))
# time.sleep(2)
rgb1 = RGBLED(0,1,2)
while True:
for i in range(0,7):
rgb1.color = (123, 95, 194)
time.sleep(2)