P10 (32x16)8s chaining using ESP32


I have 2 P10 32X16 SMD-2727-8S RGB modules. I want them to daisy chained and display text on it using ESP32. I have tried it using PxMatrix library, it worked but, only for text size 1. When I increase the text size to 2 or 3, each letter’s second half portion(from 9th row) will be printed one column right to the current column position.

`#include <PxMatrix.h>

#define P_LAT 22
#define P_A 19
#define P_B 23
#define P_C 18
#define P_D 5
#define P_E 15
#define P_OE 16

PxMATRIX display(64, 16, P_LAT, P_OE, P_A, P_B, P_C, P_D);

void setup() {
Serial.begin(9600);

display.begin(8);
display.setBrightness(64);
display.clearDisplay();
display.display(8);
}

void loop() {
display.clearDisplay();
display.setTextSize(2);
display.setTextColor(display.color565(255, 0, 0));
display.setCursor(0, 0);
display.print(“HELLO”);
display.display(8);
}`

Hello, Sudhish. This is the SmartMatrix community, not PxMatrix.:blush:

Okay, my mistake. Can we do it using SmartMatrix library? Like my need is to make a large display using P10 32X16 SMD-2727-8S RGB modules of size 6X8.