# to display decimal digit zero and one with a rate of 1 seconds repeateatly
from machine import Pin
from time import sleep
pins=[Pin(32,Pin.OUT),Pin(33,Pin.OUT),Pin(25,Pin.OUT),
Pin(26,Pin.OUT),Pin(27,Pin.OUT),Pin(12,Pin.OUT),,Pin(14,Pin.OUT)]
a=Pin(32,Pin.OUT)
b=Pin(33,Pin.OUT)
c=Pin(25,Pin.OUT)
d=Pin(26,Pin.OUT)
e=Pin(27,Pin.OUT)
f=Pin(12,Pin.OUT)
g=Pin(14,Pin.OUT)
while True:
a.value(0)
b.value(0)
c.value(0)
d.value(0)
e.value(0)
f.value(0)
g.value(1)
sleep(1)
a.value(1)
b.value(0)
c.value(0)
d.value(1)
e.value(1)
f.value(1)
g.value(1)
sleep(1)