Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@abandonware/bh1750

Package Overview
Dependencies
Maintainers
2
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@abandonware/bh1750

light sensor bh1750 with raspberry pi

  • 0.0.7-3
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
2
Created
Source

bh1750

light sensor BH1750 controlled by raspberry pi based on i2c lib

GitHub forks dependencies Status

NPM

Usage

Usage with Node.JS runtime

npm install
npm test
# light value is:  20 lx

Usage with IoT.js runtime

For constrained environments:

iotjs example/index.js 
# light value is:  20.833333333333336 lx

Code

var BH1750 = require('bh1750');
var light = new BH1750({
     //options
});

light.readLight(function(err, value){
    if (err) {
        console.log("light error: " + err);
        throw err;
    } else {
        console.log("light value is: ", value, "lx");
    }
});

Options

{
    address: 0x23,
    device: '/dev/i2c-1',
    command: 0x10,
    length: 2
}
Possible commands
 // No active state
 0x00

 // Wating for measurment command
 0x01

 // Reset data register value - not accepted in POWER_DOWN mode
 0x07

 // Start measurement at 1lx resolution. Measurement time is approx 120ms.
 0x10

 // Start measurement at 0.5lx resolution. Measurement time is approx 120ms.
 0x11

 // Start measurement at 4lx resolution. Measurement time is approx 16ms.
 0x13

 // Start measurement at 1lx resolution. Measurement time is approx 120ms.
 // Device is automatically set to Power Down after measurement.
 0x20

 // Start measurement at 0.5lx resolution. Measurement time is approx 120ms.
 // Device is automatically set to Power Down after measurement.
 0x21

 // Start measurement at 1lx resolution. Measurement time is approx 120ms.
 // Device is automatically set to Power Down after measurement.
 0x23

License

(The MIT License)

Copyright (c) 2013 Christophe Hamerling <christophe.hamerling@gmail.com>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Resources

Keywords

FAQs

Package last updated on 05 Mar 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc