This is the sample code for read light with BH1750 sensor.
- GreenPonik_BH1750.py Library for Raspberry pi
- Table of Contents
- Installation
- Methods
- Examples
- Credits
> git clone https://github.com/GreenPonik/GreenPonik_BH1750.git
cd GreenPonik_BH1750
pip3 install -r requirements.txt
or
> pip3 install greenponik-bh1750
from GreenPonik_BH1750.BH1750 import BH1750
"""
Get light data
"""
def read_bh1750():
import time
from GreenPonik_BH1750.BH1750 import BH1750
if __name__ == "__main__":
try:
bh = BH1750()
while True:
lux = bh.read_bh1750()
print(lux)
time.sleep(1)
except Exception as e:
print('An exception occurred: {}'.format(e))
Write by Mickael Lehoux, from GreenPonik, 2019