import machine
from machine import ADC,Pin
luz = ADC(Pin(14))
while True:
valor = luz.read()
print("Luz= "+ str(valor))
import machine
from machine import ADC,Pin
luz = ADC(Pin(14))
while True:
valor = luz.read()
print("Luz= "+ str(valor))