2020-10-17 20:46:57 +02:00
|
|
|
/* Copyright 2020 Christopher Courtney, aka Drashna Jael're (@drashna) <drashna@live.com>
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
2018-06-01 07:11:06 +02:00
|
|
|
|
2018-10-26 07:08:22 +02:00
|
|
|
#pragma once
|
2018-06-01 07:11:06 +02:00
|
|
|
|
|
|
|
/* Use I2C or Serial, not both */
|
2018-10-27 23:52:57 +02:00
|
|
|
#include "../drashna/config.h"
|
2018-06-01 07:11:06 +02:00
|
|
|
|
|
|
|
#ifdef RGBLIGHT_ENABLE
|
2019-05-07 07:34:09 +02:00
|
|
|
# undef RGBLED_NUM
|
|
|
|
# define RGBLED_NUM 16 // Number of LEDs
|
|
|
|
# undef RGBLED_SPLIT
|
|
|
|
# define RGBLED_SPLIT { 8, 8 }
|
2018-10-27 23:52:57 +02:00
|
|
|
#endif
|
2018-06-01 07:11:06 +02:00
|
|
|
|
|
|
|
#undef PRODUCT
|
2019-04-22 20:55:55 +02:00
|
|
|
#ifdef KEYBOARD_keebio_iris_rev2
|
2019-05-07 07:34:09 +02:00
|
|
|
# define PRODUCT Drashna Hacked Iris Rev.2 (16 LED)
|
2018-06-01 07:11:06 +02:00
|
|
|
#endif
|
|
|
|
|
2018-10-27 23:52:57 +02:00
|
|
|
#undef SHFT_LED1
|
2018-06-01 07:11:06 +02:00
|
|
|
#define SHFT_LED1 5
|
2018-10-27 23:52:57 +02:00
|
|
|
#undef SHFT_LED2
|
2018-06-01 07:11:06 +02:00
|
|
|
#define SHFT_LED2 10
|
|
|
|
|
2018-10-27 23:52:57 +02:00
|
|
|
#undef CTRL_LED1
|
2018-06-01 07:11:06 +02:00
|
|
|
#define CTRL_LED1 6
|
2018-10-27 23:52:57 +02:00
|
|
|
#undef CTRL_LED2
|
2018-06-01 07:11:06 +02:00
|
|
|
#define CTRL_LED2 9
|
|
|
|
|
2018-10-27 23:52:57 +02:00
|
|
|
#undef ALT_LED1
|
2018-07-17 03:04:32 +02:00
|
|
|
#define ALT_LED1 7
|
2018-10-27 23:52:57 +02:00
|
|
|
#undef GUI_LED1
|
2018-07-17 03:04:32 +02:00
|
|
|
#define GUI_LED1 8
|