SNAKE_STM32F3
Loading...
Searching...
No Matches
ws2812b_matrix_symbols.h
Go to the documentation of this file.
1
11
12#ifndef INC_WS2812B_MATRIX_SYMBOLS_H
13#define INC_WS2812B_MATRIX_SYMBOLS_H
14
15#include <stdint.h>
16#include <stdbool.h>
17#include "ws2812b_matrix.h"
18
19
30void ws2812b_matrix_digits(int number, int R, int G, int B);
31
40void ws2812b_matrix_symboles(const bool symbole[MATRIX_DIM][MATRIX_DIM], int R, int G, int B, int x_offset, int y_offset, bool rotated);
41
42#endif /* INC_WS2812B_MATRIX_SYMBOLS_H_ */
ws2812b diode matrix handling module based on ws2812b driver.
#define MATRIX_DIM
Width of the ws2812b matrix.
Definition ws2812b_matrix.h:22
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.
void ws2812b_matrix_digits(int number, int R, int G, int B)
displays two digit numbers on led matrix.
Definition ws2812b_matrix_symbols.c:147