micropython-examples/ldr/ldr.py

8 lines
108 B
Python
Raw Normal View History

2021-04-06 04:13:17 +00:00
from machine import ADC
2021-06-17 07:52:27 +00:00
from time import sleep
2021-04-06 04:13:17 +00:00
ldr = ADC(0)
2021-06-17 07:52:27 +00:00
while True:
print(ldr.read())
sleep(1)