from machine import*
from time import*
sleep(0.1) # Wait for USB to become ready
LDR=ADC(Pin(27))
while True:
print(LDR.read_u16())
sleep(0.5)
from machine import*
from time import*
sleep(0.1) # Wait for USB to become ready
LDR=ADC(Pin(27))
while True:
print(LDR.read_u16())
sleep(0.5)