Skip to content

Latest commit

 

History

History
58 lines (32 loc) · 767 Bytes

custom-properties.md

File metadata and controls

58 lines (32 loc) · 767 Bytes

Custom Data Properties

Run this example from the command line with:

node eg/custom-properties.js
const { Board, Sensor } = require("../");
const board = new Board();

board.on("ready", () => {
  // The "custom" property is available
  // to all component class constructors
  const sensor = new Sensor({
    pin: "A0",
    custom: {
      a: 1,
      b: 2,
    }
  });

  console.log(sensor.custom.a);
  console.log(sensor.custom.b);
});

 

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.