Skip to content

Latest commit

 

History

History
56 lines (30 loc) · 789 Bytes

light-ambient-EVS_NXT.md

File metadata and controls

56 lines (30 loc) · 789 Bytes

Light - EVShield NXT (Ambient)

Run this example from the command line with:

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

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

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

 

License

Copyright (c) 2012-2014 Rick Waldron [email protected] Licensed under the MIT license. Copyright (c) 2015-2023 The Johnny-Five Contributors Licensed under the MIT license.