Skip to content

Commit

Permalink
Merge pull request #198 from alranel/gallery
Browse files Browse the repository at this point in the history
Add gallery of icons and animations
  • Loading branch information
aentinger authored Dec 11, 2023
2 parents b99dca4 + 01463f8 commit 1e94dfe
Show file tree
Hide file tree
Showing 4 changed files with 579 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
*/

#include "Arduino_LED_Matrix.h" // Include the LED_Matrix library
#include "frames.h" // Include a header file containing frame data
#include "frames.h" // Include a header file containing some custom icons

ArduinoLEDMatrix matrix; // Create an instance of the ArduinoLEDMatrix class

Expand All @@ -30,8 +30,8 @@ void loop() {
matrix.loadFrame(happy);
delay(500);

// Load and display the "heart" frame on the LED matrix
matrix.loadFrame(heart);
// Load and display the "big heart" frame provided by the library
matrix.loadFrame(LEDMATRIX_HEART_BIG);
delay(500);

// Print the current value of millis() to the serial monitor
Expand Down
2 changes: 1 addition & 1 deletion libraries/Arduino_LED_Matrix/library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=LED_Matrix
version=1.0.0
version=1.1.0
author=Arduino
maintainer=Arduino <info@arduino.cc>
sentence=LED matrix driver for UNO R4 WiFi
Expand Down
1 change: 1 addition & 0 deletions libraries/Arduino_LED_Matrix/src/Arduino_LED_Matrix.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#include "Arduino.h"
#include "FspTimer.h"
#include "gallery.h"

#define NUM_LEDS 96

Expand Down
Loading

0 comments on commit 1e94dfe

Please sign in to comment.