From 82d3bdb733194a21fddd5cfa2ebc8234a05bfc6f Mon Sep 17 00:00:00 2001 From: Leo Deng Date: Sun, 9 Jan 2022 11:37:03 +0800 Subject: IS31FL3733 driver for LED Matrix (#15088) --- quantum/led_matrix/led_matrix.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'quantum/led_matrix/led_matrix.h') diff --git a/quantum/led_matrix/led_matrix.h b/quantum/led_matrix/led_matrix.h index e42be64661..cb7526d6e0 100644 --- a/quantum/led_matrix/led_matrix.h +++ b/quantum/led_matrix/led_matrix.h @@ -2,6 +2,7 @@ * Copyright 2017 Jack Humbert * Copyright 2018 Yiancar * Copyright 2019 Clueboard + * Copyright 2021 Leo Deng * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -27,6 +28,9 @@ #ifdef IS31FL3731 # include "is31fl3731-simple.h" #endif +#ifdef IS31FL3733 +# include "is31fl3733-simple.h" +#endif #ifndef LED_MATRIX_LED_FLUSH_LIMIT # define LED_MATRIX_LED_FLUSH_LIMIT 16 -- cgit v1.2.1 From 0452ad94791c99572c88af3cd5489ef3c0f9970f Mon Sep 17 00:00:00 2001 From: MasterSpoon <84671859+MasterSpoon@users.noreply.github.com> Date: Mon, 7 Feb 2022 03:04:43 +1000 Subject: Add RGB matrix & LED Matrix support for IS31FL3742A, IS31FL3743A, IS31FL3745, IS31FL3746A (#14989) Co-authored-by: Xelus22 <17491233+Xelus22@users.noreply.github.com> --- quantum/led_matrix/led_matrix.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'quantum/led_matrix/led_matrix.h') diff --git a/quantum/led_matrix/led_matrix.h b/quantum/led_matrix/led_matrix.h index cb7526d6e0..d21f36e295 100644 --- a/quantum/led_matrix/led_matrix.h +++ b/quantum/led_matrix/led_matrix.h @@ -27,6 +27,8 @@ #ifdef IS31FL3731 # include "is31fl3731-simple.h" +#elif defined(IS31FLCOMMON) +# include "is31flcommon.h" #endif #ifdef IS31FL3733 # include "is31fl3733-simple.h" -- cgit v1.2.1