Skip to content

Latest commit

 

History

History
69 lines (34 loc) · 1.12 KB

board-sampling-interval.md

File metadata and controls

69 lines (34 loc) · 1.12 KB

Board - Specify Sampling Interval

Use the board's samplingInterval(ms) to control the actual MCU sampling rate.

Breadboard for "Board - Specify Sampling Interval"

docs/breadboard/board-sampling-interval.png

 

Run this example from the command line with:

node eg/board-sampling-interval.js
const { Board } = require("johnny-five");
const board = new Board();

board.on("ready", () => {

  // Use the board's `samplingInterval(ms)` to
  // control the actual MCU sampling rate.
  //
  // This will limit sampling of all Analog Input
  // and I2C sensors to once per second (1000 milliseconds)
  board.samplingInterval(1000);


  // Keep in mind that calling this method
  // will ALWAYS OVERRIDE any per-sensor
  // interval/rate/frequency settings.
});

 

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.