Back to Johnny Five

Laser Trip Wire

docs/laser-trip-wire.md

2.1.0979 B
Original Source
<!--remove-start-->

Laser Trip Wire

<!--remove-end-->
Breadboard for "Laser Trip Wire"

 

Run this example from the command line with:

bash
node eg/laser-trip-wire.js
javascript
var five = require("johnny-five");
var board = new five.Board();

board.on("ready", function() {
  var laser = new five.Led(9);
  var detection = new five.Sensor("A0");
  var isSecure = false;

  laser.on();

  detection.scale(0, 1).on("change", function() {
    var reading = !(this.value | 0);

    if (isSecure !== reading) {
      isSecure = reading;

      if (!isSecure) {
        console.log("Intruder");
      }
    }
  });
});

 

<!--remove-start-->

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.

<!--remove-end-->