Parola Connections esp8266

Hey i am using a Parola display with the base as 2 8x32 boards and on top 8 8x8 led displays, i had a problem with the first connections at the right of the modules and now i am using from the second contacts the VCC GND DIN CS CLK i want to now if this is gonna change something in the code, because mine is not working.

i am using this libraries at the moment
#include <MD_Parola.h>
#include <MD_MAX72xx.h>
#include <SPI.h>

sorry for the bad english

Your post is not clear. Can you please post code and/or a photo of what the connections are.

The code supplied as examples needs to be modified for the ESP32. If you are using the standard hardware SPI interface then you will need to ensure that the CS pin matches.; SPI2 needs a different constructor (read the library documentation) and 'any pin' SPI will need the correct pins specified in the application for the library to use.

Problem with led matrix on Esp8266 - Using Arduino / Programming Questions - Arduino Forum



these are my connections, i am using a code from the internet

#include <MD_Parola.h>
#include <MD_MAX72xx.h>
#include <SPI.h>

// Uncomment according to your hardware type
#define HARDWARE_TYPE MD_MAX72XX::FC16_HW
//#define HARDWARE_TYPE MD_MAX72XX::GENERIC_HW

#define MAX_DEVICES 8
#define CS_PIN D8
#define CLK_PIN D5
#define DATA_PIN D7

MD_Parola Display = MD_Parola(HARDWARE_TYPE, CS_PIN, CLK_PIN, DATA_PIN, MAX_DEVICES);

void setup() {

Display.begin();
Display.setIntensity(0);
Display.displayClear();
Display.displayScroll("SCROLL", PA_RIGHT, PA_SCROLL_LEFT, 500);
}

void loop() {
if (Display.displayAnimate()) {
Display.displayReset();
}
}

i dont know if it is a problem to start from the second connection or maybe i am using the wrong hardware but if you guys can help

Are you using the ESP's "3V" to run the external hardware (display boards)?
If so - that won't work.

i am using the usb input, should i change for a 5V font?

  1. You need to connect to the end. The MAX7219 chips pass the serial data (DAT) from one IC to the next, so this signal needs to be injected at the start of the chain of modules. All the others can be connected anywhere however it is usual to connect them all at the starting end.

  2. The power supply to the modules must be directly connected to +5V and make sure the grounds (ESP and modules) are all connected together in at least one place. The digital signals from the ESP must be converted to 5V. The 3V signal may work for a few modules, but once you get past 4 modules it usually does not work well as the voltage for CLK and CS degrades enough to fall below the '0' logic level.

i changed just the cs for the firts conecctions after some troubles but it worked, thanks for the help

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.