# class test 
# (c) 10.2023 f41ardu
# 

from led import Led
from time import sleep

pr = Led(21,0)
pg = Led(22,0)
pb = Led(23,0)
print(pr)
# p1.on()
sleep(0.5)
pr.toggle()
print(pr)
pr.toggle()
pg.toggle()
pb.toggle()


while True:
   pr.toggle()
   sleep(.25)
   print("Status: ", pr)
   pg.toggle()
   sleep(.25)
   print("Status: ", pg)
   pb.toggle()
   print("Status: ", pb)
   sleep(.25)