Skip to content

Latest commit

 

History

History
57 lines (31 loc) · 824 Bytes

light-reflected-EVS_EV3.md

File metadata and controls

57 lines (31 loc) · 824 Bytes

Light - EVShield EV3 (Reflected)

Run this example from the command line with:

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

board.on("ready", () => {
  const reflected = new Light({
    controller: "EVS_EV3",
    pin: "BAS1",
    mode: "reflected"
  });

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

 

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.