diff options
author | Ryan <fauxpark@gmail.com> | 2023-12-08 16:54:47 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-08 16:54:47 +1100 |
commit | 24511d31b6fbf92d182d84d97193f65cbbdfeaa4 (patch) | |
tree | c6f4de1b6836a711377d1e04cfc623f9133193b4 /quantum/led_matrix/led_matrix_drivers.h | |
parent | 2d3f2e92d82187d3509f4f9be716bb0b31771eb9 (diff) |
LED/RGB Matrix: add header for drivers (#22628)
Diffstat (limited to 'quantum/led_matrix/led_matrix_drivers.h')
-rw-r--r-- | quantum/led_matrix/led_matrix_drivers.h | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/quantum/led_matrix/led_matrix_drivers.h b/quantum/led_matrix/led_matrix_drivers.h new file mode 100644 index 0000000000..b0ef3dfafc --- /dev/null +++ b/quantum/led_matrix/led_matrix_drivers.h @@ -0,0 +1,38 @@ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later + +#pragma once + +#include <stdint.h> + +#if defined(LED_MATRIX_IS31FL3218) +# include "is31fl3218-simple.h" +#elif defined(LED_MATRIX_IS31FL3731) +# include "is31fl3731-simple.h" +#elif defined(LED_MATRIX_IS31FL3733) +# include "is31fl3733-simple.h" +#elif defined(LED_MATRIX_IS31FL3736) +# include "is31fl3736-simple.h" +#elif defined(LED_MATRIX_IS31FL3737) +# include "is31fl3737-simple.h" +#elif defined(LED_MATRIX_IS31FL3741) +# include "is31fl3741-simple.h" +#elif defined(IS31FLCOMMON) +# include "is31flcommon.h" +#elif defined(LED_MATRIX_SNLED27351) +# include "snled27351-simple.h" +#endif + +typedef struct { + /* Perform any initialisation required for the other driver functions to work. */ + void (*init)(void); + + /* Set the brightness of a single LED in the buffer. */ + void (*set_value)(int index, uint8_t value); + /* Set the brightness of all LEDS on the keyboard in the buffer. */ + void (*set_value_all)(uint8_t value); + /* Flush any buffered changes to the hardware. */ + void (*flush)(void); +} led_matrix_driver_t; + +extern const led_matrix_driver_t led_matrix_driver; |