python-tsl2591
python-tsl2591 copied to clipboard
You may wish to include a note in README.md to the effect that on a Raspberry Pi (running Rasbian Jessie) the following packages need to be installed: libffi5, libffi5-dbg, and...
Hey there! I've been working on a hydroponics system for Raspberry Pi, and using the TSL2591 sensor as part of the setup. Of course I stumbled upon this library to...
https://github.com/maxlklaxl/python-tsl2591/blob/290ef844d8a939eb6674f241f0b17af8667764c0/tsl2591/read_tsl.py#L158 Typo here: () missing time.sleep(0.120*self.integration_time+1) # takes minimal **1** second + 0.120*self.integration_time You want: time.sleep(0.120*(self.integration_time+1)) Fastest working is: time.sleep(0.105+0.100*self.integration)
Hello, I compare the TSL2591 with the TSL2561. Strangely I get about the half lux value. The TSL2561 have a max value of 40,000 Lux and I reach this value...
Some of the constant definitions have incorrect addresses or the names are wrong. They don't appear to affect the TSL2591 class definition, but did confuse me at first. They refer...