light sensor test expanded
This commit is contained in:
		
				
					committed by
					
						
						Thomas Klaehn
					
				
			
			
				
	
			
			
			
						parent
						
							2e5e98dfe1
						
					
				
				
					commit
					78d56b5194
				
			@@ -1,10 +1,19 @@
 | 
				
			|||||||
#!/usr/bin/python2
 | 
					#!/usr/bin/python2
 | 
				
			||||||
 | 
					
 | 
				
			||||||
from light_sensor import light_sensor
 | 
					from light_sensor import light_sensor
 | 
				
			||||||
from time import sleep
 | 
					from time import sleep, time
 | 
				
			||||||
 | 
					from datetime import datetime
 | 
				
			||||||
 | 
					
 | 
				
			||||||
ls = light_sensor(1, 0x23)
 | 
					ls = light_sensor(1, 0x23)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
while True:
 | 
					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)
 | 
						sleep(1)
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user