from machine import Pin
from utime import sleep as usleep
#LED Connect
LED0 = Pin(0, Pin(OUT))
LED1 = Pin(1, Pin(OUT))
LED2 = Pin(2, Pin(OUT))
LED3 = Pin(3, Pin(OUT))
LED4 = Pin(4, Pin(OUT))
LED5 = Pin(5, Pin(OUT))
LED6 = Pin(6, Pin(OUT))
LED7 = Pin(7, Pin(OUT))
#Generate a list of 0 and 1
def genZerosAndOnes(num:int) -> list:
import random
for i in range(8):
return [k for k in ]