Proximity - MB1000

Proximity - MB1000

Sonar Proximity example with MB1000 sensor.

docs/breadboard/proximity-mb1003.png

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

 

Run this example from the command line with:

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

board.on("ready", function() {
  var proximity = new five.Proximity({
    controller: "MB1000",
    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.