import time
from machine import Pin
time.sleep(0.1) # Wait for USB to become ready
print("Hello, Pi Pico!")
seg_G=Pin(3, Pin.OUT)
seg_C=Pin(18, Pin.OUT)
seg_D=Pin(7, Pin.OUT)
seg_E=Pin(21, Pin.OUT)
seg_F=Pin(1, Pin.OUT)
seg_B=Pin(0, Pin.OUT)
seg_A=Pin(2, Pin.OUT)
seg_c=Pin(19, Pin.OUT)
while True:
seg_G.on()
seg_C.on()
seg_D.on()
seg_E.on()
seg_F.on()
seg_A.on()
seg_C.on()