Skip to content

Commit 020c394

Browse files
authored
Merge pull request #422 from arduino/jacobhylen/uno-r4-led-matrix_images
[UNO-R4-WiFi] LED Matrix guide images
2 parents 0970468 + 2f25053 commit 020c394

File tree

4 files changed

+5
-1
lines changed

4 files changed

+5
-1
lines changed
Loading
Loading

content/hardware/02.hero/boards/uno-r4-wifi/tutorials/led-matrix/led-matrix.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ The **Arduino UNO R4 WiFi** comes with a built in 12x8 LED Matrix, that is avail
1919

2020
The matrix and its' API is developed to be programmed in a few different ways, each suited for different applications. This guide will walk you through the basic concepts for programming the LED matrix, and get you started with creating your own animations. While highlighting two different ways of handling the LEDs to create animations and images. Making it easier for you to decide what method fits your needs best!
2121

22+
![The UNO R4 WiFi LED Matrix](./assets/matrix-closeup.png)
23+
2224
## Hardware & Software Needed
2325
To follow along with this guide, you will of course need:
2426
- an [Arduino UNO R4 WiFi](https://store.arduino.cc/products/arduino-uno-r4-wifi),
@@ -64,7 +66,7 @@ The LED matrix library for the UNO R4 WiFi works on the principle of creating a
6466

6567
A frame is what we call the "image" that is displayed at any given moment on the matrix. If an animation is a series of images, a frame is one of those images in the series.
6668

67-
How this frame is created can vary quite a lot, and you can choose whatever way is the easiest for your application, but most of the time you'll be creating an array that holds the frame in 3 32bit integers. A frame like this is difficult for a person to interpret, but it is efficient and therefore the way to go if you're making animations or graphics to display states of a program or interfaces. You can create frames and animations such as this one by using tools such as [FotogramMatrice](#fotogrammatrice). Such a frame may look similar to this:
69+
How this frame is created can vary quite a lot, and you can choose whatever way is the easiest for your application, but most of the time you'll be creating an array that holds the frame in 3 32bit integers. A frame like this is difficult for a person to interpret, but it is efficient and therefore the way to go if you're making animations or graphics to display states of a program or interfaces. You can create frames and animations such as this one by [this browser tool](#animation-generation) developed by Arduino. Such a frame may look similar to this:
6870

6971
```
7072
const uint32_t heart[] = {
@@ -228,6 +230,8 @@ Arduino has developed a tool that is used to generate frames and animations to b
228230

229231
[Click here](https://ledmatrix-editor.arduino.cc) to go to the LED Matrix tool.
230232

233+
234+
![LED Matrix Editor](./assets/led-matrix-editor.png)
231235
It also features a live preview of the frames you're creating displayed right on the LED matrix of the Arduino UNO R4 WiFi, although this is only supported in Google Chrome.
232236

233237
To use the live preview feature of this tool, you need to upload this sketch to your board

0 commit comments

Comments
 (0)