Skip to content

Commit afedee8

Browse files
committed
Update led matrix
1 parent c9b1c9f commit afedee8

File tree

1 file changed

+15
-14
lines changed
  • content/hardware/02.hero/boards/uno-r4-wifi/tutorials/led-matrix

1 file changed

+15
-14
lines changed

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

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -381,20 +381,21 @@ Have fun creating interactive interfaces or animation on your UNO R4 WiFi!
381381

382382
To write more advanced sketches on your own, you may use the full API of the library as found below.
383383

384-
Members | Descriptions
385-
--------------------------------|---------------------------------------------
386-
`public ` [`ArduinoLEDMatrix`](#)`()` | The main class for controlling the LED matrix.
387-
`public void` [`autoscroll`](#)`(int32_t interval_ms)` | Sets the time in ms for each frame to be displayed.
388-
`public void` [`on`](#)`(size_t pin)` | Turn an individual pixel on.
389-
`public void` [`off`](#)`(size_t pin)` | Turn an individual pixel off.
390-
`public void` [`begin`](#)`()` | Start the LED matrix.
391-
`public void` [`next`](#)`()` | Manually move to the next frame in the sequence.
392-
`public void` [`loadFrame`](#)`(const uint32_t buffer[3])` | Load a new single frame that is not in any sequence.
393-
`public void` [`renderFrame`](#)`(uint8:t frameNumber)` | Render the loaded frame.
394-
`public void` [`play`](#)`(bool loop = false)` | Start playing the sequence of frames, with the option to loop indefinitely or play once.
395-
`public bool` [`sequenceDone`](#)`()` | checks if the sequence has finished playing.
396-
`public void` [`loadPixels`](#)`(uint8_t *arr, size_t size)` |Loads the pixels into the buffer but does not display them.
397-
`public void` [`loadWrapper`](#)`(`[`const uint32_t frames[][4], uint32_t howMany`](#)` callback)` | Sets the current frame to number 0 in the sequence.
384+
Members | Descriptions
385+
------------------------------------------------------------------------------------------|---------------------------------------------
386+
`public ` [`ArduinoLEDMatrix`](#)`()` | The main class for controlling the LED matrix.
387+
`public void` [`autoscroll`](#)`(int32_t interval_ms)` | Sets the time in ms for each frame to be displayed.
388+
`public void` [`on`](#)`(size_t pin)` | Turn an individual pixel on.
389+
`public void` [`off`](#)`(size_t pin)` | Turn an individual pixel off.
390+
`public void` [`begin`](#)`()` | Start the LED matrix.
391+
`public void` [`next`](#)`()` | Manually move to the next frame in the sequence.
392+
`public void` [`loadFrame`](#)`(const uint32_t buffer[3])` | Load a new single frame that is not in any sequence.
393+
`public void` [`renderFrame`](#)`(uint8:t frameNumber)` | Render the loaded frame.
394+
`public void` [`loadSequence`](#)`(uint8_t *arr)` | Loads the pixels into the buffer but does not display them.
395+
`public void` [`play`](#)`(bool loop = false)` | Start playing the sequence of frames, with the option to loop indefinitely or play once.
396+
`public bool` [`sequenceDone`](#)`()` | checks if the sequence has finished playing.
397+
`public void` [`loadPixels`](#)`(uint8_t *arr, size_t size)` | Loads the pixels into the buffer but does not display them.
398+
`public void` [`loadWrapper`](#)`(`[`const uint32_t frames[][4], uint32_t howMany`](#)`)` | Sets the current frame to number 0 in the sequence.
398399

399400
## Members
400401

0 commit comments

Comments
 (0)