11 lines
175 B
Python
Executable File
11 lines
175 B
Python
Executable File
#!/usr/bin/python2
|
|
|
|
from light_sensor import light_sensor
|
|
from time import sleep
|
|
|
|
ls = light_sensor(1, 0x23)
|
|
|
|
while True:
|
|
print "light: " + str(ls.read()) + " lx."
|
|
sleep(1)
|