0.4.0 • Published 5 years ago

adafruit-neotrellis v0.4.0

Weekly downloads
6
License
ISC
Repository
github
Last release
5 years ago

NeoTrellis

Examples

const NeoTrellis = require('adafruit-neotrellis');
const trellis = new NeoTrellis();

trellis.on('Button0', () => {
  // button 0 pressed
});

trellis.on('press', data => {
  // any button pressed
  // number is the button pressed
  const { number } = data;
});

// change button 0 to red
// (index, r, g, b)
trellis.changeColor(0, 255, 0, 0)

API

.changeColor(index, r, g, b)

  • index - the buttons index
  • r the red value
  • b the blue value
  • g the green value

Events

  • ButtonX - fired when ButtonX is pressed where X is the buttons index
  • press - fired when any button is pressed
0.4.0

5 years ago

0.3.0

5 years ago

0.2.0

5 years ago

0.1.0

5 years ago

0.0.43

5 years ago

0.0.3

5 years ago

0.0.2

5 years ago

0.0.1

5 years ago