2021-07-14 06:26:00 +02:00
|
|
|
/*
|
2021-05-17 00:20:26 +02:00
|
|
|
* Copyright 2021 Quentin LEBASTARD <qlebastard@gmail.com>
|
2022-07-25 11:11:28 +02:00
|
|
|
* Copyright 2022 Charly Delay <charly@codesink.dev> (@0xcharly)
|
2021-05-17 00:20:26 +02:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* the Free Software Foundation, either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
2022-07-25 11:11:28 +02:00
|
|
|
|
|
|
|
/* RGB matrix support. */
|
2021-07-14 06:26:00 +02:00
|
|
|
#ifdef RGB_MATRIX_ENABLE
|
|
|
|
# define SPLIT_TRANSPORT_MIRROR
|
2023-06-18 06:39:07 +02:00
|
|
|
# define RGB_MATRIX_LED_COUNT 58
|
2023-06-06 03:08:04 +02:00
|
|
|
# define RGB_MATRIX_SPLIT { 29, 29 }
|
2021-07-14 06:26:00 +02:00
|
|
|
# define RGB_MATRIX_MAXIMUM_BRIGHTNESS 50
|
2021-07-24 21:17:04 +02:00
|
|
|
# define RGB_DISABLE_WHEN_USB_SUSPENDED
|
2021-07-14 06:26:00 +02:00
|
|
|
# define RGB_MATRIX_KEYPRESSES
|
|
|
|
#endif
|