Coder Social home page Coder Social logo

Comments (5)

angeoliver avatar angeoliver commented on July 3, 2024 2

Hello,

I found a correction for my issue :

Library MD_MAX72xx.h v3.4.1, line 661 replace param type 8b -> 16b :
uint8_t getColumn(uint8_t c) { return getColumn((c / COL_SIZE), c % COL_SIZE); };
by
uint8_t getColumn(uint16_t c) { return getColumn((c / COL_SIZE), c % COL_SIZE); };

The final frozen/remanant residual text for columns > 255 on Double_Height with scroll default left is corrected.

Thanks for you time and your work,

Olivier

from md_parola.

MajicDesigns avatar MajicDesigns commented on July 3, 2024

Looks like you are running an Arduino Uno?
If you have 2 equally long strings of modules then your MAX_DEVICES should be an even number?

Also it looks like the text stops at a module boundary (6 modules if I can count correctly but it is difficult from the video). If this is the case then I would be looking at an electrical/connection problem.

  • How are the matrices wired? Are the matrices in the top left of the display in the middle of the display modules or are they at the end?

  • How are you distributing the digital signals (except for DAT which is module to module)?

from md_parola.

angeoliver avatar angeoliver commented on July 3, 2024

Thanks for your reply.
I use a Arduino Nano (on back of the matrix).
New elements: with default scroll right left (#define SCROLL_LEFT 1) the problem is present but it's 100% OK with scroll right (#define SCROLL_LEFT 0).
I confirm: 6 modules 8x8 are concerned by the problem: the 6 last of the chain.
I use PCB of 4 modules 8x8 therefore no connection problem I think.
A remark: the problem concern the 6 last modules on a total of 38 modules: (38-6)*8 = 256 columns. Pb if column > 256. It's a coincidence ? Or overflow of a uint8_t variable ?
Thanks,
Olivier

from md_parola.

MajicDesigns avatar MajicDesigns commented on July 3, 2024

"I use PCB of 4 modules 8x8 therefore no connection problem I think."
Are you able to rearrange the modules in a different order. Does the problem follow the modules or does it stay in the same place (ie, last 6)?

"A remark: the problem concern the 6 last modules on a total of 38 modules: (38-6)*8 = 256 columns. Pb if column > 256. It's a coincidence? Or overflow of a uint8_t variable?"
Maybe, but scroll left/right code is the same code with different branching. Also, if this was the problem it would happen you have just one long single line display (which you say does not happen in the original post).

If you can confirm first point it will tell us whether the fault is software related.

Also can you confirm if the modules are joined as
4321 < top line order (incoming connection at 1)
4321 < bottom line order (incoming connection at 1, outgoing connection at 4 to 1 above)
or
1234
4321
an also whether you are distributing the signals or just relying on daisy chain from first to last? (see this blog post)

from md_parola.

MajicDesigns avatar MajicDesigns commented on July 3, 2024

Release v3.4.2

from md_parola.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.