print("Hello, LDR SENSOR")

from machine import Pin, ADC
from utime import sleep

LDR_Pin = ADC(Pin(13, Pin.IN))

while True:
    light_intensity_value= LDR_Pin.read()
    print(light_intensity_value)

    sleep(2)