SNAKE_STM32F3
Loading...
Searching...
No Matches
ws2812b_matrix_symbols.h File Reference

ws2812b diode matrix symbols display module. More...

#include <stdint.h>
#include <stdbool.h>
#include "ws2812b_matrix.h"
Include dependency graph for ws2812b_matrix_symbols.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

void ws2812b_matrix_digits (int number, int R, int G, int B)
 displays two digit numbers on led matrix.
void ws2812b_matrix_symboles (const bool symbole[MATRIX_DIM][MATRIX_DIM], int R, int G, int B, int x_offset, int y_offset, bool rotated)
 displays a symbol on led matrix.

Detailed Description

ws2812b diode matrix symbols display module.

Author
bslrd
Date
2026

SPDX-License-Identifier: MIT

Function Documentation

◆ ws2812b_matrix_digits()

void ws2812b_matrix_digits ( int number,
int R,
int G,
int B )

displays two digit numbers on led matrix.

Parameters
numberNumber to display (0-99)
RR value of color (0-255)
GG value of color (0-255)
BB value of color (0-255)
Note
predefined digits are created for 8x8 matrix display.
Here is the call graph for this function:

◆ ws2812b_matrix_symboles()

void ws2812b_matrix_symboles ( const bool symbole[MATRIX_DIM][MATRIX_DIM],
int R,
int G,
int B,
int x_offset,
int y_offset,
bool rotated )

displays a symbol on led matrix.

Parameters
symbolSymbol defined as two dimensional matrix of values 0 and 1 (0 - led off, 1 - led on)
RR value of color (0-255)
GG value of color (0-255)
BB value of color (0-255)