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

how to support high frame rate or high refresh rate LED screen? #571

Open
houstontang opened this issue Jan 16, 2024 · 2 comments
Open

how to support high frame rate or high refresh rate LED screen? #571

houstontang opened this issue Jan 16, 2024 · 2 comments
Labels
question Further information is requested

Comments

@houstontang
Copy link

Sir, I got some LED screen based on CFD435A(column scan) and WM5166PC (row scan), it's high frame rate screen, how can I change the refresh rate in the library? thanks!

Houston

@board707
Copy link
Contributor

According to the info, the driver is not compatible with the current library.

@mrcodetastic mrcodetastic added the question Further information is requested label Jan 22, 2024
@Lukaswnd
Copy link
Contributor

Besides that, the library continuously puts out the frames. So you have to increase the i2sspeed, to maximise the DMA speed. Other than that, you have to lower the color depth. Both can be changed in the config

`
HUB75_I2S_CFG mxconfig(
PANEL_RES_X, // module width
PANEL_RES_Y, // module height
PANEL_CHAIN // Chain length
);

mxconfig.i2sspeed = HUB75_I2S_CFG::HZ_20M;
mxconfig.setPixelColorDepthBits(6)

dma_display = new MatrixPanel_I2S_DMA(mxconfig);
`

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
question Further information is requested
Projects
None yet
Development

No branches or pull requests

4 participants