Made MD* libraries (Parola, MAX72XX) project specific, to be able to use the newest software version from github.
This commit is contained in:
@@ -0,0 +1,208 @@
|
||||
// Use the Parola library to scroll text on the display
|
||||
//
|
||||
// Demonstrates the use of the scrolling function to display text received
|
||||
// from the serial interface on multiple lines of matrix displays
|
||||
//
|
||||
// User can enter text on the serial monitor and this will display as a
|
||||
// scrolling message on the display.
|
||||
// Message should be prefixed with the line number on which it should be displayed.
|
||||
// Speed for the display is controlled by a pot on SPEED_IN analog in.
|
||||
// Scrolling direction is controlled by a switch on DIRECTION_SET digital in.
|
||||
// Invert ON/OFF is set by a switch on INVERT_SET digital in.
|
||||
//
|
||||
// UISwitch library can be found at https://github.com/MajicDesigns/MD_UISwitch
|
||||
// MD_MAX72XX library can be found at https://github.com/MajicDesigns/MD_MAX72XX
|
||||
//
|
||||
|
||||
#include <MD_Parola.h>
|
||||
#include <MD_MAX72xx.h>
|
||||
#include <SPI.h>
|
||||
|
||||
// set to 1 if we are implementing the user interface pot, switch, etc
|
||||
#define USE_UI_CONTROL 1
|
||||
|
||||
#if USE_UI_CONTROL
|
||||
#include <MD_UISwitch.h>
|
||||
#endif
|
||||
|
||||
// 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
|
||||
|
||||
// Define the number of devices we have in the chain and the hardware interface
|
||||
#define HARDWARE_TYPE MD_MAX72XX::PAROLA_HW
|
||||
#define MAX_DEVICES 4
|
||||
#define BUF_SIZE 75
|
||||
|
||||
struct LineDefinition
|
||||
{
|
||||
MD_Parola P; // object definition
|
||||
char curMessage[BUF_SIZE]; // message for this display
|
||||
boolean newMessageAvailable; // true if new message arrived
|
||||
};
|
||||
|
||||
// Add new entries for more lines.
|
||||
// NOTE: These pin numbers will probably not work with your hardware and may
|
||||
// need to be adapted
|
||||
struct LineDefinition Line[] =
|
||||
{
|
||||
{ MD_Parola(HARDWARE_TYPE, 11, 13, 10, MAX_DEVICES), "abc", false },
|
||||
{ MD_Parola(HARDWARE_TYPE, 11, 13, 9, MAX_DEVICES), "def", false }
|
||||
};
|
||||
|
||||
#define MAX_LINES (sizeof(Line)/sizeof(LineDefinition))
|
||||
|
||||
#define PAUSE_TIME 1000
|
||||
#define SPEED_DEADBAND 5
|
||||
|
||||
// Scrolling parameters
|
||||
#if USE_UI_CONTROL
|
||||
#define SPEED_IN A5
|
||||
#define DIRECTION_SET 8 // change the effect
|
||||
#define INVERT_SET 9 // change the invert
|
||||
|
||||
#endif // USE_UI_CONTROL
|
||||
|
||||
uint8_t frameDelay = 25; // default frame delay value
|
||||
textEffect_t scrollEffect = PA_SCROLL_LEFT;
|
||||
|
||||
// Global message buffer shared by Serial and Scrolling functions
|
||||
char newMessage[BUF_SIZE];
|
||||
uint8_t putLine = 0;
|
||||
|
||||
#if USE_UI_CONTROL
|
||||
|
||||
MD_UISwitch_Digital uiDirection(DIRECTION_SET);
|
||||
MD_UISwitch_Digital uiInvert(INVERT_SET);
|
||||
|
||||
void doUI(void)
|
||||
{
|
||||
// set the speed if it has changed
|
||||
{
|
||||
int16_t speed = map(analogRead(SPEED_IN), 0, 1023, 10, 150);
|
||||
|
||||
if ((speed >= ((int16_t)Line[0].P.getSpeed() + SPEED_DEADBAND)) ||
|
||||
(speed <= ((int16_t)Line[0].P.getSpeed() - SPEED_DEADBAND)))
|
||||
{
|
||||
for (uint8_t i=0; i<MAX_LINES; i++)
|
||||
{
|
||||
Line[i].P.setSpeed(speed);
|
||||
Line[i].P.setPause(speed);
|
||||
frameDelay = speed;
|
||||
}
|
||||
PRINT("\nChanged speed to ", Line[0].P.getSpeed());
|
||||
}
|
||||
}
|
||||
|
||||
if (uiDirection.read() == MD_UISwitch::KEY_PRESS) // SCROLL DIRECTION
|
||||
{
|
||||
PRINTS("\nChanging scroll direction");
|
||||
scrollEffect = (scrollEffect == PA_SCROLL_LEFT ? PA_SCROLL_RIGHT : PA_SCROLL_LEFT);
|
||||
for (uint8_t i=0; i<MAX_LINES; i++)
|
||||
{
|
||||
Line[i].P.setTextEffect(scrollEffect, scrollEffect);
|
||||
Line[i].P.displayReset();
|
||||
}
|
||||
}
|
||||
|
||||
if (uiInvert.read() == MD_UISwitch::KEY_PRESS) // INVERT MODE
|
||||
{
|
||||
PRINTS("\nChanging invert mode");
|
||||
for (uint8_t i=0; i<MAX_LINES; i++)
|
||||
{
|
||||
Line[i].P.setInvert(!Line[i].P.getInvert());
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif // USE_UI_CONTROL
|
||||
|
||||
void readSerial(void)
|
||||
{
|
||||
static int16_t putIndex = -1;
|
||||
char c;
|
||||
|
||||
while (Serial.available())
|
||||
{
|
||||
c = (char)Serial.read();
|
||||
if (putIndex == -1) // first character should be the line number
|
||||
{
|
||||
if ((c >= '0') && (c < '0' + MAX_LINES))
|
||||
{
|
||||
putLine = c - '0';
|
||||
putIndex = 0;
|
||||
}
|
||||
}
|
||||
else if ((c == '\n') || (putIndex >= BUF_SIZE-2)) // end of message character or full buffer
|
||||
{
|
||||
// put in a message separator and end the string
|
||||
newMessage[putIndex] = '\0';
|
||||
// restart the index for next filling spree and flag we have a message waiting
|
||||
putIndex = -1;
|
||||
Line[putLine].newMessageAvailable = true;
|
||||
} else
|
||||
// Just save the next char in next location
|
||||
newMessage[putIndex++] = c;
|
||||
}
|
||||
}
|
||||
|
||||
void setup()
|
||||
{
|
||||
Serial.begin(57600);
|
||||
|
||||
#if USE_UI_CONTROL
|
||||
uiDirection.begin();
|
||||
uiInvert.begin();
|
||||
pinMode(SPEED_IN, INPUT);
|
||||
|
||||
doUI();
|
||||
#endif // USE_UI_CONTROL
|
||||
|
||||
for (uint8_t i=0; i<MAX_LINES; i++)
|
||||
{
|
||||
Line[i].P.begin();
|
||||
Line[i].P.displayClear();
|
||||
Line[i].P.displaySuspend(false);
|
||||
|
||||
Line[i].P.displayScroll(Line[i].curMessage, PA_LEFT, scrollEffect, frameDelay);
|
||||
|
||||
strcpy(Line[i].curMessage, "Hello! Enter new message?");
|
||||
}
|
||||
newMessage[0] = '\0';
|
||||
|
||||
Serial.begin(57600);
|
||||
Serial.print("\n[Parola Scrolling Display Multi Line]\n");
|
||||
Serial.print(MAX_LINES);
|
||||
Serial.print(" lines\nType a message for the scrolling display\nStart message with display number\nEnd message line with a newline");
|
||||
}
|
||||
|
||||
void loop()
|
||||
{
|
||||
#if USE_UI_CONTROL
|
||||
doUI();
|
||||
#endif // USE_UI_CONTROL
|
||||
|
||||
readSerial();
|
||||
for (uint8_t i=0; i<MAX_LINES; i++)
|
||||
{
|
||||
if (Line[i].P.displayAnimate())
|
||||
{
|
||||
if (Line[i].newMessageAvailable)
|
||||
{
|
||||
strcpy(Line[i].curMessage, newMessage);
|
||||
Line[i].newMessageAvailable = false;
|
||||
PRINT("\nLine ", i);
|
||||
PRINT(" msg: ", newMessage);
|
||||
}
|
||||
Line[i].P.displayReset();
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user