Run this example from the command line with:

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

board.on("ready", () => {
  const proximity = new Proximity({
    controller: "EVS_EV3_IR",
    pin: "BAS1"
  });
  const red = new Led(10);
  const green = new Led(11);
  const leds = new Leds([red, green]);

  green.on();

  proximity.on("change", () => {
    if (proximity.cm < 35) {
      if (!red.isOn) {
        leds.toggle();
      }
    } else if (!green.isOn) {
      leds.toggle();
    }
  });
});

 

Component Classes in this example:

Hi! The Johnny-Five community is building new projects every day. We made this newsletter to tell you about what's new, what's good, and what's next for Open Source robotics. Join us in exploring what we can make together.

Fork me on GitHub