Skip to content

Panneau LED P5(2121)-3264-16S-M5 ayant des puces RUL6024 et puce RUC7258D #793

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

Open
Consokbd opened this issue May 7, 2025 · 1 comment

Comments

@Consokbd
Copy link

Consokbd commented May 7, 2025

Bonjour, j'ai un problème avec mon panneau LED P5(2121)-3264-16S-M5, lorsque j'ai téléverser le code suivant :

#include "ESP32-HUB75-MatrixPanel-I2S-DMA.h"

#define PANEL_RES_X 64
#define PANEL_RES_Y 32
#define PANEL_CHAIN 1

MatrixPanel_I2S_DMA *dma_display = nullptr;

void setup() {
// Configuration du panneau sans broche E
HUB75_I2S_CFG mxconfig(
PANEL_RES_X,
PANEL_RES_Y,
PANEL_CHAIN
);

// Pas besoin de mxconfig.gpio.e si ton panneau n’a pas de broche E
mxconfig.clkphase = false;
mxconfig.driver = HUB75_I2S_CFG::FM6126A; // Essaie FM6126A ou le driver par défaut

dma_display = new MatrixPanel_I2S_DMA(mxconfig);
dma_display->begin();
dma_display->setBrightness8(90);
dma_display->clearScreen();

// Couleur blanche
uint16_t whiteColor = dma_display->color565(255, 255, 255);

dma_display->setTextSize(1);
dma_display->setTextWrap(false);
dma_display->setTextColor(whiteColor);

// Position du texte
dma_display->setCursor(10, 12);
dma_display->print("Bonjour");
}

void loop() {
// Rien à faire dans la boucle
}

le resultat est :
WhatsApp Image 2025-05-07 à 10 53 38_e5d95fdc

et l'écran présente des scintillements

WhatsApp.Video.2025-05-07.a.10.53.37_af7e8baf.mp4

est ce que quelqu'un peut m'aider a résoudre le problème ?

@Consokbd
Copy link
Author

Consokbd commented May 7, 2025

Quelle configuration pour le Panneau P5(2121)-3264-16S-M5 ayant des puces RUL6024 ?

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

No branches or pull requests

1 participant