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

Added Multiplex Mapper for P5Outdoor8S64x32 Panel #1544

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

briggsm
Copy link

@briggsm briggsm commented May 11, 2023

Hi! Not 100% sure I'm doing this right, but I'm trying to create a Pull Request for you to pull in the code for a new panel that doesn't currently have a Multiplex Mapper. I wrote the details of my panel & code in this issue:

#1543

Feel free to modify the code (or let me know what to change) if I didn't do this quite right.

Thank you!

@veryslow
Copy link

Hi, I just discover your post, and I guess I fighted with the same kind of outdoor panels from Eagerled (P5-O8S-SMD2727-64x32).
I wrote a mapping in an algebric way, if it helps :

void MapSinglePanel(int x, int y, int *matrix_x, int *matrix_y) const {
   int pix_nb = x+(y*64);
   *matrix_x = ((((pix_nb%64)/4)+1)*8)-((((pix_nb%1024)/512)+1)*4)+(pix_nb%4);
   *matrix_y = ((pix_nb/64)%8)+((pix_nb/1024)*8);

cheers, fabrice.

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

Successfully merging this pull request may close these issues.

None yet

2 participants