#include <IRremote.hpp>
#include <MD_Parola.h>
#include <MD_MAX72xx.h>
#include <SPI.h>
#define MAX_DEVICES 4 // Adjust this based on the number of MAX7219 devices you are using.
// Define the IR remote button hex codes
#define BUTTON_A 1570963200
#define BUTTON_B 501415680
#define BUTTON_C 3710058240
#define BUTTON_D 4244832000
#define BUTTON_E 1036189440
#define BUTTON_F 534839040
#define BUTTON_G 1470693120
#define BUTTON_H 1871773440
// Create an instance of the IRremote library and specify the IR receiver pin
const int RECV_PIN=2;
IRrecv irrecv(RECV_PIN);
//decode_results results;
// Create an instance of the MD_Parola library
MD_Parola parola = MD_Parola(MD_MAX72XX::PAROLA_HW, 10, MAX_DEVICES);
// Custom messages to display
char message1[] = "STOP";
char message2[] = "ALERT";
char message3[] = "Fuck U";
char message4[] = " Wanna Race?";
char message5[] = "Aayush";
char message6[] = "Int650";
char message7[] = " Weekend Riders NCR";
void setup() {
// Initialize the IR receiver and LED matrix
Serial.begin(9600);
IrReceiver.begin(RECV_PIN, ENABLE_LED_FEEDBACK);
parola.begin();
// Set the intensity (brightness) of the display (0-15)
parola.setIntensity(5);
}
void loop() {
// Check for incoming IR remote signals
if (IrReceiver.decode()) {
Serial.println(IrReceiver.decodedIRData.decodedRawData);
// If a signal is received, check its hex code
if (IrReceiver.decodedIRData.decodedRawData == BUTTON_A) {
displayMessage(message1);
} else if (IrReceiver.decodedIRData.decodedRawData == BUTTON_B) {
displayMessage(message2);
} else if (IrReceiver.decodedIRData.decodedRawData == BUTTON_C) {
displayMessage(message3);
} else if (IrReceiver.decodedIRData.decodedRawData == BUTTON_D) {
scrollText(message4);
} else if (IrReceiver.decodedIRData.decodedRawData == BUTTON_E) {
displayMessage(message5);
} else if (IrReceiver.decodedIRData.decodedRawData == BUTTON_F) {
displayMessage(message6);
} else if (IrReceiver.decodedIRData.decodedRawData == BUTTON_G) {
scrollText(message7);
}
IrReceiver.resume(); // Receive the next value
}
}
void displayMessage(char* message) {
// Display the custom message on the LED matrix
parola.displayText(message, PA_CENTER, 0, 0, PA_PRINT, PA_NO_EFFECT);
parola.displayAnimate();
//delay(2000);
}
void scrollText(char* message) {
// Continue scrolling the text until any IR button is pressed
parola.displayReset(); // Clear any existing display content
parola.displayText(message, PA_CENTER, 60, 0, PA_SCROLL_LEFT, PA_SCROLL_LEFT);
while (!parola.displayAnimate()) {
parola.displayAnimate();
//delay(50); // Adjust this delay to control the scrolling speed
}
parola.displayReset(); // Clear the display after the loop
displayMessage(message5);
}
//parola.displayText(message, PA_CENTER, 0, 0, PA_PRINT, PA_NO_EFFECT);
// Display the message for 2 seconds (adjust as needed)