A Node.js I2C module for BH1750 Ambient Light Sensor
npm install bh1750-sensor
const BH1750 = require('bh1750-sensor');
const options = {
readMode: BH1750.ONETIME_H_RESOLUTION_MODE
};
const bh1750 = new BH1750(options);
let data = bh1750.readData();
console.log(data);
``