aboutsummaryrefslogtreecommitdiff
path: root/keyboards/wilba_tech/wt_mono_backlight.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/wilba_tech/wt_mono_backlight.c')
-rw-r--r--keyboards/wilba_tech/wt_mono_backlight.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/keyboards/wilba_tech/wt_mono_backlight.c b/keyboards/wilba_tech/wt_mono_backlight.c
index 69d82e582..daf738da2 100644
--- a/keyboards/wilba_tech/wt_mono_backlight.c
+++ b/keyboards/wilba_tech/wt_mono_backlight.c
@@ -19,12 +19,17 @@
19#include "wt_rgb_backlight_api.h" // reuse these for now 19#include "wt_rgb_backlight_api.h" // reuse these for now
20#include "wt_rgb_backlight_keycodes.h" // reuse these for now 20#include "wt_rgb_backlight_keycodes.h" // reuse these for now
21 21
22#include "drivers/avr/i2c_master.h"
23#include "drivers/issi/is31fl3736.h"
24#include <avr/interrupt.h> 22#include <avr/interrupt.h>
23#include "drivers/avr/i2c_master.h"
25 24
26#include "progmem.h" 25#include "progmem.h"
27#include "quantum/color.h" 26#include "quantum/color.h"
27#include "tmk_core/common/eeprom.h"
28
29#include "via.h" // uses only the EEPROM address
30#define MONO_BACKLIGHT_CONFIG_EEPROM_ADDR (VIA_EEPROM_CUSTOM_CONFIG_ADDR)
31
32#include "drivers/issi/is31fl3736.h"
28 33
29#define ISSI_ADDR_DEFAULT 0x50 34#define ISSI_ADDR_DEFAULT 0x50
30 35