Proximity - GP2Y0A710K0F

Infrared Proximity example with GP2Y0A710K0F sensor.

Breadboard for "Proximity - GP2Y0A710K0F"

docs/breadboard/proximity-GP2Y0A710K0F.png

Fritzing diagram: docs/breadboard/proximity-GP2Y0A710K0F.fzz

 

Run this example from the command line with:

node eg/proximity-GP2Y0A710K0F.js
var five = require("johnny-five");
var board = new five.Board();

board.on("ready", function() {
  var proximity = new five.Proximity({
    controller: "GP2Y0A710K0F",
    pin: "A0"
  });

  proximity.on("data", function() {
    console.log("Proximity: ");
    console.log("  cm  : ", this.cm);
    console.log("  in  : ", this.in);
    console.log("-----------------");
  });

  proximity.on("change", function() {
    console.log("The obstruction has moved.");
  });
});

 

License

Copyright (c) 2012, 2013, 2014 Rick Waldron waldron.rick@gmail.com Licensed under the MIT license. Copyright (c) 2016 The Johnny-Five Contributors Licensed under the MIT license.