File tree 4 files changed +579
-4
lines changed
libraries/Arduino_LED_Matrix
examples/DisplaySingleFrame
4 files changed +579
-4
lines changed Original file line number Diff line number Diff line change 8
8
*/
9
9
10
10
#include " Arduino_LED_Matrix.h" // Include the LED_Matrix library
11
- #include " frames.h" // Include a header file containing frame data
11
+ #include " frames.h" // Include a header file containing some custom icons
12
12
13
13
ArduinoLEDMatrix matrix; // Create an instance of the ArduinoLEDMatrix class
14
14
@@ -30,8 +30,8 @@ void loop() {
30
30
matrix.loadFrame (happy);
31
31
delay (500 );
32
32
33
- // Load and display the "heart" frame on the LED matrix
34
- matrix.loadFrame (heart );
33
+ // Load and display the "big heart" frame provided by the library
34
+ matrix.loadFrame (LEDMATRIX_HEART_BIG );
35
35
delay (500 );
36
36
37
37
// Print the current value of millis() to the serial monitor
Original file line number Diff line number Diff line change 1
1
name =LED_Matrix
2
- version =1.0 .0
2
+ version =1.1 .0
3
3
author =Arduino
4
4
maintainer =Arduino <
[email protected] >
5
5
sentence =LED matrix driver for UNO R4 WiFi
Original file line number Diff line number Diff line change 1
1
#include " Arduino.h"
2
2
#include " FspTimer.h"
3
+ #include " gallery.h"
3
4
4
5
#define NUM_LEDS 96
5
6
You can’t perform that action at this time.
0 commit comments