#include <MD_Parola.h>
#include <MD_MAX72xx.h>
#include <SPI.h>
// Define the number of devices we have in the chain and the hardware interface
// NOTE: These pin numbers will probably not work with your hardware and may
// need to be adapted
#define HARDWARE_TYPE MD_MAX72XX::PAROLA_HW
#define MAX_DEVICES 51
#define CLK_PIN 52
#define DATA_PIN 51
#define CS_PIN 53
// HARDWARE SPI
MD_Parola P = MD_Parola(HARDWARE_TYPE, CS_PIN, MAX_DEVICES);
// SOFTWARE SPI
//MD_Parola P = MD_Parola(HARDWARE_TYPE, DATA_PIN, CLK_PIN, CS_PIN, MAX_DEVICES);
#define PAUSE_TIME 1000
// Turn on debug statements to the serial output
#define DEBUG 0
#if DEBUG
#define PRINT(s, x) { Serial.print(F(s)); Serial.print(x); }
#define PRINTS(x) Serial.print(F(x))
#define PRINTX(x) Serial.println(x, HEX)
#else
#define PRINT(s, x)
#define PRINTS(x)
#define PRINTX(x)
#endif
// Global variables
typedef struct
{
uint8_t spacing; // character spacing
const char *msg; // message to display
} msgDef_t;
msgDef_t M[] =
{
{ 1, "Leonhel Fortin" },
};
#define MAX_STRINGS (sizeof(M)/sizeof(M[0]))
void setup(void)
{
Serial.begin(57600);
P.begin();
P.setCharSpacing(M[0].spacing);
P.displayText(M[0].msg, PA_CENTER, P.getSpeed(), PAUSE_TIME, PA_SCROLL_LEFT, PA_SCROLL_LEFT);
}
void loop(void)
{
static uint8_t n = 1;
if (P.displayAnimate())
{
P.setTextBuffer(M[n].msg);
P.setCharSpacing(M[n].spacing);
P.displayReset();
n = (n + 1) % MAX_STRINGS;
}
}