-
Notifications
You must be signed in to change notification settings - Fork 162
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
Add support for 64x64 panels with AB address lines #49
Comments
Interesting, I've never seen a 64x64/4 panel. The only /4 panels I've only seen are 16x32/4 panels. Do you have a link to where I could buy one? Support for this is planned, see #34. I have a project in mind that requires support for /4 so I'm hoping I get to this sooner than later. It's not an easy addition though, as there's no support for panels that refresh multiple rows at once in the library. |
Here is the link on AliExpress |
Thanks, I ordered a panel, and have other /4 panels here to test if I have time to work on this before the 64x64 panel arrives. |
I ordered the panel you linked from Aliexpress, and instead of what was shown, received a /32 panel with ABCDE address lines. I took another look at the Hzeller code and this discussion and realized that these panels aren't /4, they are /32 but use some method to shift in the address instead of directly driving. This won't work with the SmartLED Shield hardware, as the address is meant to be only changed once per latch cycle. These AB panels require a separate clock and data line to cycle 5 times per row to send the address, and the address lines used in the SmartLED Shield can only update once per row. I unfortunately don't see a straightforward way to support these AB panels with the SmartLED Shield or the SmartMatrix Library. |
PxMatrix may support those panels according to @embedded-creations is the limitation you reported also valid on the ESP32 driver? |
Now that I think about it, no it's not. The ESP32 driver happens to use a transparent latch instead of a flip flop, so the AB signals can go through the latch, and the latch signal is controlled by GPIO not a timer, so it should be straightforward to toggle GPIOs to send the AB pattern needed. I'm making support of AB panels a requirement for the APA102-HUB75 adapter project, so it's back on my radar, but I probably won't be working on it anytime soon. If you want to work on it, I can help point you in the right direction on the forum. |
Thanks for the details @embedded-creations . For my own use, however, given the memory limitations I'm hitting past 96x64 on both teensy and ESP32, I'm currently looking into rPi solutions for bigger things, and they already support AB I believe. |
For completeness sake, there are some yet new panels with ABC addressing for 64 lines (32 addresses, but really 8 and lines are shifted 4 times). |
I'm reopening this issue as there's a possibility these panels can be supported with the ESP32 chipset. I unfortunately still don't have any AB panels despite trying to purchase from sellers that shipped AB panels to other people. If anyone has any leads on where to get one, or is willing to donate or sell me one (I live in the UK right now, but sometimes visit the US), please let me know. |
As a quick update, ABC panels also seem to be AB like panels as explained in |
I bought this 128x128 panel on AliExpress (photos do not match): |
Yes, you should try the rpi-rgb-panel driver on rPi, this is not supported by SmartMatrix. |
To be honest, I don't understand the point of ABC panels, they save 2 IO pins, at the expense of speed. |
Any chance that there will be support for teensy 4.x? |
The wiki has details on support for these panels. Short summary: it's not possible to support them with the Teensy, and it's possible to support them on the ESP32 though it's not something I plan to work on anytime soon. https://github.com/pixelmatix/SmartMatrix/wiki/HUB75-Panels#abacabc-panels |
there are 64x64 HUB75 panels that only have A & B address lines.
The Raspberry pi LED driver project has added support for these panels, I would like to drive the same panels with my Smart Matrix V4 board,
see this commit as an example.
hzeller/rpi-rgb-led-matrix@829d40e
The text was updated successfully, but these errors were encountered: