from machine import Pin
import number
import time
count = 0
while True:
number.display_number(count)
count += 1
if count > 9:
count = 0
time.sleep(1)
from machine import Pin
import number
import time
count = 0
while True:
number.display_number(count)
count += 1
if count > 9:
count = 0
time.sleep(1)