-
Notifications
You must be signed in to change notification settings - Fork 122
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
Increasing device amount capability to 2^32 #63
base: main
Are you sure you want to change the base?
Increasing device amount capability to 2^32 #63
Conversation
Nice that you have defined a type for the module count. How come you chose 32 bit count instead of 16 bit? Also, is 8 bit (255 devices) some kind of limitation? |
Physically I use four matrixes module, but for long text scrolling emulation I pass > 100 devices to MD_MAX72XX constructor. Here is my code, that is based on your example "MD_MAX72XX\examples\MD_MAX72xx_PrintText" 16 bit is enough, I added commit. Thank you for MAX7219 library. |
OK, so you are simulating. The issue for me is that in a practical (real) system, 255 matrices at 200mA each will already need 50A at 5V (ie, 250W power supply). That is a lot of power to manage over a long distance, not to mention the issue of distributing the digital signals over the matrix so that everything works properly. The amount of memory required will also be quite high, although that may be manageable in more capable processors. Real world matrix to matrix signal propagation delays over longer distances also create issues with display update times. Altogether, for massively large displays this technology is not really suitable. A practical limit on the number of devices is around 40-50 which is what some people have made, and these are not beginners doing these projects. My concern is that making this change, so that the number of devices can be large, will create a false impression and I would hesitate to include this push request at this time. |
I understand your concerns about not reality of hardware. |
hola que tal, quisiera una ayuda, tengo 2 pantallas max matrix 7219 de 8x32 y tengo que conectarla con unos botones de arcade, en el cual en la pantalla queremos que salga el puntaje cada vez que apretas el boton, si lo precionas bien se sumaria 10, si lo precionas mal, se le restan 5, hemos intentado con diferentes programaciones y ninguna nos resulta util. desde ya muchas gracias por su atencion! |
Hello @camila2308
I think that You have two options:
And LED matrix should work independently As I found at https://www.reddit.com/r/embedded/comments/pahmc7/spi_communication_with_multiple_slaves/
I will be glad if I helped. Kind regards, |
No description provided.