Skip to content

Latest commit

 

History

History
77 lines (38 loc) · 1.25 KB

light-ambient-BH1750.md

File metadata and controls

77 lines (38 loc) · 1.25 KB

Light - BH1750

BH1750 (Arduino)

docs/breadboard/light-ambient-BH1750-arduino.png

Fritzing diagram: docs/breadboard/light-ambient-BH1750-arduino.fzz

 

Run this example from the command line with:

node eg/light-ambient-BH1750.js
const { Board, Light } = require("johnny-five");
const board = new Board();

board.on("ready", () => {
  const ambient = new Light({
    controller: "BH1750",
  });

  ambient.on("change", () => {
    console.log("Ambient Light Level: ");
    console.log("  level  : ", ambient.level);
    console.log("-----------------");
  });
});

Illustrations / Photos

BH1750 (Tessel 2)

docs/breadboard/light-ambient-BH1750-tessel.png

Fritzing diagram: docs/breadboard/light-ambient-BH1750-tessel.fzz

 

 

License

Copyright (c) 2012-2014 Rick Waldron waldron.rick@gmail.com Licensed under the MIT license. Copyright (c) 2015-2023 The Johnny-Five Contributors Licensed under the MIT license.