Run this example from the command line with:
node eg/proximity-EVS_EV3_US-alert.js
const { Board, Led, Leds, Proximity } = require("johnny-five");
const board = new Board();
board.on("ready", () => {
  const proximity = new Proximity({
    controller: "EVS_EV3_US",
    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 < 25) {
      if (!red.isOn) {
        leds.toggle();
      }
    } else if (!green.isOn) {
      leds.toggle();
    }
  });
});