-
Notifications
You must be signed in to change notification settings - Fork 179
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
Multi Panel > 3 x P10(16x32) #32
Comments
@opticron Do you have time to look into this? Appears to be a minor offset calculation problem ... also see https://twitter.com/chellotech22/status/1033117086283784193 |
I'll take a look. @CTWF the title of the issue says 16x32, I assume these are actually 32x16 (WxH)? |
It's almost like the color offset is wrong. @CTWF could you provide a pattern test video to verify it's just the mapping that's bad? |
@opticron yes 32x16 (WxH) found other issue : |
@opticron how to update offset color with parameter : |
That's pretty odd. A bad initial mapping can't cause color offsets like that, it would just cause the pixels to show up in the wrong places but the colors would still map to the same location. The code for calculating the color offset hasn't changed since first commit and I doubt it's wrong. It's almost as if one of your panels has an extra hidden or a missing column or the PxMatrix library was initialized with the wrong size. Additionally, there looks to be some weirdness going on between the first and second panels in your initial picture when you're showing only blue or only green text. I know it's probably a lot to ask, but could you verify those two panels individually? Maybe the end of the chain as well. |
I'll check again tonight |
Still stuck with panel brand Qiangli |
Hi @CTWF , how are you? I'm having the same problems as you, I'm trying to use 4 and 8 chained panels brand lightall... Did you have any progress changing the library? |
I am tring to chaining panels, I use 64X32 pixel RGB, 2 each horizontal panel works. But I need 4 each horizantal or 2X2 chaining. Thank you. |
HI Thank you |
thank for answering but no mistake change, here is code and pictures : #include <Ticker.h> #include <PxMatrix.h> Ticker display_ticker; #define P_LAT 22 // PxMATRIX display(32,16,P_LAT, P_OE,P_A,P_B,P_C); uint16_t static banana_frame_3[] = { // ISR for display refresh void setup() { display_ticker.attach(0.002, display_updater); void drawFrame(uint16_t *frame) { void loop() { |
in fact, we have carre but for 2 panels but with 3 panels we have mare pixels. |
Please re-read my previous comment...all PxMatrix related defines go before the include |
yes i also put before but no change. |
You put them in the wrong place ... |
here is your request but nothing change. #define PxMATRIX_MAX_WIDTH 96 #include <PxMatrix.h> Ticker display_ticker; #define P_LAT 22 // PxMATRIX display(32,16,P_LAT, P_OE,P_A,P_B,P_C); #define panel_width 3 // ISR for display refresh void setup() { display_ticker.attach(0.002, display_updater); void drawFrame(uint16_t *frame) { void loop() { |
What size are your panels? |
32x32 P6 |
Could you reduce the display time from 70 to 20? |
nothing change |
Are you using the latest GitHub master ? |
1.3.0 on arduino |
Ok...can you check that there are no cpp files in the library folder. Otherwise everything looks goid |
Can you try drawing a single pixel instead of the banana |
yes, 1 red at 0.0, I have it, but inside i have in col 7 red in midille bright. |
Can you post a picture? |
i hev sending picture by email. |
Hey guys other people like me have the same issue... please share pictures and information! Tks! |
yes but i can't put picture on this web site... |
@ebelouet Did you have any progress with more than 3 modules? |
In my case. My panel is uniqe and discontinue from factory. 3 panels is normal. Issue appear on 4 panels. |
white_rectangle9632.zip Sincerely |
@lucianolopesjardim At some point you will have to use another library - PxMatrix is not made for chaining a large number of panels. I advise to use something that drives all RGB lines in parallel, preferably using DMA. |
Thank, do you have link example for that ? Eric |
Never tried that one but sounds promising: https://github.com/pixelmatix/SmartMatrix/tree/teensylc |
@2dom I'll take a look, thanks for the suggestion. |
I found other issue when i use panel 64x32 RGB more than 2 panel (exception error). But when running 2 panel, everything is normal |
I think it would be nice to give the max configuration of panels for users So, could you explain where is limitation, speed or 3v3 signal for lenght ? |
There is no limitation per se ... it just becomes unusable because the refresh is too slow. You can chain any number of panels if you set
before display.begin() and lower the rate by which the display updater is called. |
I use RGB matrix led panel from China with specifications:
Hardware : Nodemcu ESP8266 Lolin
The result is normal for multi panel = 2. the rest (panel_width> 2) the result is the text / pixel shifts approximately 2 pixels for each color.
the code that I use:
image :

The text was updated successfully, but these errors were encountered: