light sensor test expanded

This commit is contained in:
Thomas Klaehn 2016-04-07 04:00:06 +00:00 committed by Thomas Klaehn
parent 2e5e98dfe1
commit 78d56b5194

View File

@ -1,10 +1,19 @@
#!/usr/bin/python2
from light_sensor import light_sensor
from time import sleep
from time import sleep, time
from datetime import datetime
ls = light_sensor(1, 0x23)
while True:
print "light: " + str(ls.read()) + " lx."
now = datetime.now()
now_str = str(now.year) + "-" + str(now.month) + "-" + str(now.day) + " " + str(now.hour) + ":" + str(now.minute) + ":" + str(now.second)
line = str(int(time())) + " " + now_str + " light: " + str(ls.read()) + " lx."
print line
log = open("light.log", "a")
log.write(line)
log.write("\n")
log.close()
sleep(1)