:mod:`rgbmatrix`
================
.. py:module:: rgbmatrix
.. autoapi-nested-parse::
Low-level routines for bitbanged LED matrices
.. raw:: html
Available on these boards
- ARAMCON Badge 2019
- ARAMCON2 Badge
- ATMegaZero ESP32-S2
- Adafruit CLUE nRF52840 Express
- Adafruit Circuit Playground Bluefruit
- Adafruit Feather Bluefruit Sense
- Adafruit Feather ESP32-S2 TFT
- Adafruit Feather ESP32S2
- Adafruit Feather M4 CAN
- Adafruit Feather M4 Express
- Adafruit Feather RP2040
- Adafruit Feather STM32F405 Express
- Adafruit Feather nRF52840 Express
- Adafruit FunHouse
- Adafruit Grand Central M4 Express
- Adafruit Hallowing M4 Express
- Adafruit ItsyBitsy M4 Express
- Adafruit ItsyBitsy RP2040
- Adafruit ItsyBitsy nRF52840 Express
- Adafruit KB2040
- Adafruit LED Glasses Driver nRF52840
- Adafruit Macropad RP2040
- Adafruit MagTag
- Adafruit Matrix Portal M4
- Adafruit Metro ESP32S2
- Adafruit Metro M4 Airlift Lite
- Adafruit Metro M4 Express
- Adafruit Metro nRF52840 Express
- Adafruit Monster M4SK
- Adafruit PyPortal
- Adafruit PyPortal Pynt
- Adafruit PyPortal Titano
- Adafruit QT Py ESP32S2
- Adafruit QT Py RP2040
- Adafruit QT2040 Trinkey
- Adafruit Trellis M4 Express
- AloriumTech Evo M51
- Arduino Nano 33 BLE
- Arduino Nano RP2040 Connect
- Artisense Reference Design RD00
- AtelierDuMaker nRF52840 Breakout
- BDMICRO VINA-D51
- BLE-SS dev board Multi Sensor
- BastBLE
- BastWiFi
- BlueMicro840
- CP32-M4
- Capable Robot Programmable USB Hub
- Challenger NB RP2040 WiFi
- Challenger RP2040 LTE
- Challenger RP2040 WiFi
- CircuitBrains Deluxe
- CrumpS2
- Cytron Maker Nano RP2040
- Cytron Maker Pi RP2040
- DynOSSAT-EDU-OBC
- ESP 12k NodeMCU
- Electronut Labs Blip
- Electronut Labs Papyr
- EncoderPad RP2040
- Feather ESP32S2 without PSRAM
- FeatherS2
- FeatherS2 Neo
- FeatherS2 PreRelease
- Franzininho WIFI w/Wroom
- Franzininho WIFI w/Wrover
- Gravitech Cucumber M
- Gravitech Cucumber MS
- Gravitech Cucumber R
- Gravitech Cucumber RS
- HMI-DevKit-1.1
- HiiBot BlueFi
- IkigaiSense Vita nRF52840
- Kaluga 1
- LILYGO TTGO T8 ESP32-S2 w/Display
- MDBT50Q-DB-40
- MDBT50Q-RX Dongle
- MORPHEANS MorphESP-240
- MakerDiary nRF52840 MDK
- MakerDiary nRF52840 MDK USB Dongle
- Makerdiary M60 Keyboard
- Makerdiary Pitaya Go
- Makerdiary nRF52840 M.2 Developer Kit
- Melopero Shake RP2040
- MicroDev microS2
- Mini SAM M4
- Oak Dev Tech BREAD2040
- Oak Dev Tech PixelWing ESP32S2
- Open Hardware Summit 2020 Badge
- PCA10056 nRF52840-DK
- PCA10059 nRF52840 Dongle
- Particle Argon
- Particle Boron
- Particle Xenon
- Pimoroni Interstate 75
- Pimoroni Keybow 2040
- Pimoroni PGA2040
- Pimoroni Pico LiPo (16MB)
- Pimoroni Pico LiPo (4MB)
- Pimoroni PicoSystem
- Pimoroni Plasma 2040
- Pimoroni Tiny 2040
- PyKey60
- PyboardV1_1
- RP2040 Stamp
- Raspberry Pi Pico
- S2Mini
- S2Pico
- SAM32v26
- Saola 1 w/Wroom
- Saola 1 w/Wrover
- Seeeduino Wio Terminal
- Silicognition LLC M4-Shim
- SparkFun MicroMod RP2040 Processor
- SparkFun MicroMod SAMD51 Processor
- SparkFun MicroMod nRF52840 Processor
- SparkFun Pro Micro RP2040
- SparkFun Pro nRF52840 Mini
- SparkFun STM32 MicroMod Processor
- SparkFun Thing Plus - RP2040
- SparkFun Thing Plus - SAMD51
- TG-Boards' Datalore IP M4
- TG-Watch
- Targett Module Clip w/Wroom
- Targett Module Clip w/Wrover
- Teknikio Bluebird
- The Open Book Feather
- Thingz - Galaxia
- TinkeringTech ScoutMakes Azul
- TinyS2
- UARTLogger II
- WarmBit BluePixel nRF52840
- nanoESP32-S2 w/Wrover
- nanoESP32-S2 w/Wroom
- nice!nano
.. py:class:: RGBMatrix(*, width: int, bit_depth: int, rgb_pins: Sequence[digitalio.DigitalInOut], addr_pins: Sequence[digitalio.DigitalInOut], clock_pin: digitalio.DigitalInOut, latch_pin: digitalio.DigitalInOut, output_enable_pin: digitalio.DigitalInOut, doublebuffer: bool = True, framebuffer: Optional[_typing.WriteableBuffer] = None, height: int = 0, tile: int = 1, serpentine: bool = True)
Displays an in-memory framebuffer to a HUB75-style RGB LED matrix.
Create a RGBMatrix object with the given attributes. The height of
the display is determined by the number of rgb and address pins and the number of tiles:
``len(rgb_pins) // 3 * 2 ** len(address_pins) * abs(tile)``. With 6 RGB pins, 4
address lines, and a single matrix, the display will be 32 pixels tall. If the optional height
parameter is specified and is not 0, it is checked against the calculated
height.
Up to 30 RGB pins and 8 address pins are supported.
The RGB pins must be within a single "port" and performance and memory
usage are best when they are all within "close by" bits of the port.
The clock pin must also be on the same port as the RGB pins. See the
documentation of the underlying protomatter C library for more
information. Generally, Adafruit's interface boards are designed so
that these requirements are met when matched with the intended
microcontroller board. For instance, the Feather M4 Express works
together with the RGB Matrix Feather.
The framebuffer is in "RGB565" format.
"RGB565" means that it is organized as a series of 16-bit numbers
where the highest 5 bits are interpreted as red, the next 6 as
green, and the final 5 as blue. The object can be any buffer, but
`array.array` and ``ulab.ndarray`` objects are most often useful.
To update the content, modify the framebuffer and call refresh.
If a framebuffer is not passed in, one is allocated and initialized
to all black. In any case, the framebuffer can be retrieved
by passing the RGBMatrix object to memoryview().
If doublebuffer is False, some memory is saved, but the display may
flicker during updates.
A RGBMatrix is often used in conjunction with a
`framebufferio.FramebufferDisplay`.
.. py:attribute:: brightness
:annotation: :float
In the current implementation, 0.0 turns the display off entirely
and any other value up to 1.0 turns the display on fully.
.. py:attribute:: width
:annotation: :int
The width of the display, in pixels
.. py:attribute:: height
:annotation: :int
The height of the display, in pixels
.. py:method:: deinit() -> None
Free the resources (pins, timers, etc.) associated with this
rgbmatrix instance. After deinitialization, no further operations
may be performed.
.. py:method:: refresh() -> None
Transmits the color data in the buffer to the pixels so that
they are shown.