adafruit / Adafruit_NeoMatrix

Adafruit_GFX-compatible library for NeoPixel grids
GNU Lesser General Public License v3.0
185 stars 74 forks source link

three 16*16 ws2812b matrix to create a 48*16 matrix #24

Closed robotcopper closed 10 months ago

robotcopper commented 10 months ago

Hello,

since i want to create a 48*16 matrix made of three 16*16 ws2812b matrix i am looking for a library that let me do that. I am on Arduino nano and every other library (FastLed,...) are to much RAM consuming. Since Neo_Matrix is no consuming that much RAM is it possible to define some thing like:

Adafruit_NeoMatrix matrix1 = Adafruit_NeoMatrix(48,16,PIN,
  NEO_MATRIX_BOTTOM + NEO_MATRIX_RIGHT +
  NEO_MATRIX_COLUMNS + NEO_MATRIX_ZIGZAG,
  NEO_GRB + NEO_KHZ800);

because for now with neo_matrix we are limited to 32*16 matrix

PaintYourDragon commented 10 months ago

Won’t fit in Arduino Nano’s 2K RAM. 48x16x3 = 2.3K. Recommend moving to a more capable microcontroller…RP2040, ESP32, anything.

robotcopper commented 10 months ago

thanks for your fast answer