5x5_rgb_pimoroni
v1.1.0
Published
A module to interact with the 5x5 RGB matrix from Pimoroni
Downloads
50
Readme
5x5 Matrix led from Pimoroni
Installation
npm install 5x5_rgb_pimoroni
Description
A module to control the 5x5 matrix led from Pimoroni.
Usage
const {RGB_pimoroni} = require('5x5_rgb_pimoroni')
const rgb = new RGB_pimoroni(ADDRESS_OF_THE_I2C_BUS=0x74, BUS_NUMBER=1)
rgb.set_pixel(x=0, y=0, r=255, g=0, b=0)
Methods
On or Off the LED matrix
rgb.Stop(false) // On
rgb.Stop(true) // Off
Set the color of a pixel
rgb.setColorLed(x, y, r, g, b, brightness=1)
Set the color of ALL pixels
rgb.setColor(r, g, b, brightness=1)
Make blink matrix
rgb.blink(speed=100)
Stop blink matrix
rgb.stopAnimations()
Create a crossMark
rgb.crossMark(r,g, b, brightness=1, speed=100)
Create a validMark
rgb.validMark(r,g, b, brightness=1, speed=100)