2017-09-29 23:52:37 +02:00
|
|
|
/*
|
|
|
|
This is the c configuration file for the keymap
|
|
|
|
|
|
|
|
Copyright 2012 Jun Wako <wakojun@gmail.com>
|
|
|
|
Copyright 2015 Jack Humbert
|
|
|
|
Copyright 2017 Art Ortenburger
|
|
|
|
|
|
|
|
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-07-17 03:04:32 +02:00
|
|
|
#pragma once
|
2017-09-29 23:52:37 +02:00
|
|
|
|
|
|
|
/* Use I2C or Serial, not both */
|
|
|
|
|
|
|
|
#define USE_SERIAL
|
2018-01-17 20:28:23 +01:00
|
|
|
#undef USE_I2C
|
2017-09-29 23:52:37 +02:00
|
|
|
|
|
|
|
/* Select hand configuration */
|
|
|
|
|
|
|
|
// #define MASTER_LEFT
|
2017-11-01 06:03:15 +01:00
|
|
|
// #define MASTER_RIGHT
|
2017-09-29 23:52:37 +02:00
|
|
|
#define EE_HANDS
|
|
|
|
|
2017-10-10 19:11:05 +02:00
|
|
|
|
2017-11-01 08:13:20 +01:00
|
|
|
/* key combination for command */
|
|
|
|
#ifdef IS_COMMAND
|
|
|
|
#undef IS_COMMAND
|
|
|
|
#endif
|
|
|
|
#define IS_COMMAND() ( \
|
|
|
|
keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_LALT)) \
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2017-10-10 19:11:05 +02:00
|
|
|
#ifdef RGBLIGHT_ENABLE
|
|
|
|
#define RGB_DI_PIN D3
|
2017-11-01 08:13:20 +01:00
|
|
|
#define RGBLED_NUM 16 // Number of LEDs
|
2018-10-15 21:34:49 +02:00
|
|
|
|
2017-10-10 19:11:05 +02:00
|
|
|
#define RGBLIGHT_HUE_STEP 12
|
|
|
|
#define RGBLIGHT_SAT_STEP 12
|
|
|
|
#define RGBLIGHT_VAL_STEP 12
|
|
|
|
#define RGBLIGHT_EFFECT_KNIGHT_LENGTH 2
|
|
|
|
#define RGBLIGHT_EFFECT_SNAKE_LENGTH 2
|
|
|
|
#define RGBLIGHT_EFFECT_BREATHE_CENTER 1
|
|
|
|
#endif // RGBLIGHT_ENABLE
|
|
|
|
|
2017-11-11 04:58:53 +01:00
|
|
|
#ifdef AUDIO_ENABLE
|
|
|
|
#define C6_AUDIO
|
2018-05-02 17:39:46 +02:00
|
|
|
#ifdef RGBLIGHT_ENABLE
|
2018-02-08 21:16:06 +01:00
|
|
|
#define NO_MUSIC_MODE
|
2018-08-29 19:42:15 +02:00
|
|
|
#endif
|
2018-05-02 17:39:46 +02:00
|
|
|
#endif //AUDIO_ENABLE
|
2017-10-10 19:11:05 +02:00
|
|
|
|
2018-01-17 20:28:23 +01:00
|
|
|
#undef PRODUCT
|
|
|
|
#ifdef KEYBOARD_orthodox_rev1
|
|
|
|
#define PRODUCT Drashna Hacked Orthodox Rev.1
|
|
|
|
#elif KEYBOARD_orthodox_rev3
|
|
|
|
#define PRODUCT Drashna Hacked Orthodox Rev.3
|
|
|
|
#endif
|
2018-03-25 22:01:15 +02:00
|
|
|
|
2018-05-02 17:39:46 +02:00
|
|
|
#define QMK_ESC_OUTPUT D7 // usually COL
|
2018-07-17 03:04:32 +02:00
|
|
|
#ifdef KEYBOARD_orthodox_rev1
|
2018-05-02 17:39:46 +02:00
|
|
|
#define QMK_ESC_INPUT D4 // usually ROW
|
2018-07-17 03:04:32 +02:00
|
|
|
#else
|
|
|
|
#define QMK_ESC_INPUT D2 // usually ROW
|
|
|
|
#endif
|
2018-05-02 17:39:46 +02:00
|
|
|
#define QMK_LED B0
|
|
|
|
#define QMK_SPEAKER C6
|
|
|
|
|
2018-06-01 07:11:06 +02:00
|
|
|
|
|
|
|
#define SHFT_LED1 5
|
|
|
|
#define SHFT_LED2 10
|
|
|
|
|
|
|
|
#define CTRL_LED1 6
|
|
|
|
#define CTRL_LED2 9
|
|
|
|
|
2018-07-17 03:04:32 +02:00
|
|
|
#define GUI_LED1 8
|
|
|
|
#define ALT_LED1 7
|
2018-06-01 07:11:06 +02:00
|
|
|
|