Skip to content

Latest commit

 

History

History
58 lines (32 loc) · 869 Bytes

proximity-EVS_EV3_IR.md

File metadata and controls

58 lines (32 loc) · 869 Bytes

Proximity - EVShield EV3 (IR)

Run this example from the command line with:

node eg/proximity-EVS_EV3_IR.js
const { Board, Proximity } = require("johnny-five");
const board = new Board();

board.on("ready", () => {
  const proximity = new Proximity({
    controller: "EVS_EV3_IR",
    pin: "BBS1"
  });

  proximity.on("change", () => {
    const {centimeters, inches} = proximity;
    console.log("Proximity: ");
    console.log("  cm  : ", centimeters);
    console.log("  in  : ", inches);
    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.