Skip to content

Latest commit

 

History

History
63 lines (30 loc) · 856 Bytes

microphone.md

File metadata and controls

63 lines (30 loc) · 856 Bytes

Sensor - Microphone

Breadboard for "Sensor - Microphone"

docs/breadboard/microphone.png

Fritzing diagram: docs/breadboard/microphone.fzz

 

Run this example from the command line with:

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

board.on("ready", function() {
  var mic = new five.Sensor("A0");
  var led = new five.Led(11);

  mic.on("data", function() {
    led.brightness(this.value >> 2);
  });
});

 

License

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