from picozero import RGBLED
from time import sleep
colores = [(255,0,0),(255,255,0),(0,255,0),(0,255,255),(0,0,255), (255,0,255)]
rgb = RGBLED(28, 27, 26)
while True:
for color in colores:
#rgb.color = color
rgb.blink(on_times=1, fade_times=0, colors=colores, n=None, wait=True, fps=25)
#sleep(1)