Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 <[email protected]>
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