blob: b0ef3dfafcf0b1b007abb6cc9446ca4b1f689571 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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;
|