This is the sample code for read light with TSL2561 sensor.
- GreenPonik_TSL2561.py Library for Raspberry pi
- Table of Contents
- Installation
- Methods
- Examples
- Credits
> git clone https://github.com/GreenPonik/GreenPonik_TSL2561.git
cd GreenPonik_TSL2561
pip3 install -r requirements.txt
or
> pip3 install greenponik-tsl2561
from GreenPonik_TSL2561 import GreenPonik_TSL2561
"""
Get light data
"""
def read_tsl2561():
import time
from GreenPonik_TSL2561 import GreenPonik_TSL2561
if __name__ == "__main__":
tsl = GreenPonik_TSL2561()
while True:
data = tsl.read_tsl2561()
print(data)
time.sleep(1)
Write by Mickael Lehoux, from GreenPonik, 2019