Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

64 x 64 Matrix Address Pins Problem #15

Open
sjpiper145 opened this issue Feb 7, 2021 · 1 comment
Open

64 x 64 Matrix Address Pins Problem #15

sjpiper145 opened this issue Feb 7, 2021 · 1 comment

Comments

@sjpiper145
Copy link

I love the Expressive Pixels app and what your team has built with the interface. My 64 x 64 LED matrix purchased from Adafruit isn't displaying Express pixels very well as 5 Address Pin Matrixes haven't been included as yet. See picture here: https://imgur.com/a/yCVBIzJ

This problem has been fixed in the code for the Animated GIF Player using the Protomatter Library with NUM_ADDR_PINS. I've tried to integrate the code into the Arduino config for Expresive Pixels but I'm not having any luck.

#if defined(DISPLAY_MATRIX64x32)
uint8_t rgbPins[] = {7, 8, 9, 10, 11, 12};
uint8_t addrPins[] = {17, 18, 19, 20, 21}; // 16/32/64 pixels tall
uint8_t clockPin = 14;
uint8_t latchPin = 15;
uint8_t oePin = 16;
#if DISPLAYARRAY_HEIGHT == 16
#define NUM_ADDR_PINS 3
#elif DISPLAYARRAY_HEIGHT == 32
#define NUM_ADDR_PINS 4
#elif DISPLAYARRAY_HEIGHT == 64
#define NUM_ADDR_PINS 5
#elif DISPLAYARRAY_HEIGHT == 128
#define NUM_ADDR_PINS 5
#endif

Adafruit_Protomatter matrix(DISPLAYARRAY_WIDTH, 6, 1, rgbPins, NUM_ADDR_PINS, addrPins, clockPin, latchPin, oePin, true);

Any help with this would be deeply appreciated.

Cheers, Steph

@Kingfrankbob
Copy link

I dont know if you still check this or have already solved it. I would try the following

  • Check to make sure each of the matrixes (or the joined connector) Have 5v @ 4amps
  • Did you solder the GPIO connector for the 64x64 Matrices?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants