2018-10-09 04:56:07 +02:00
|
|
|
/*
|
|
|
|
Copyright 2017 Danny Nguyen <danny@keeb.io>
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
/* USB Device descriptor parameter */
|
2019-01-15 23:04:56 +01:00
|
|
|
#define VENDOR_ID 0xCB10
|
2018-10-09 04:56:07 +02:00
|
|
|
#define PRODUCT_ID 0x1256
|
|
|
|
#define DEVICE_VER 0x0300
|
|
|
|
#define MANUFACTURER Keebio
|
2020-03-30 08:47:45 +02:00
|
|
|
#define PRODUCT Keebio Iris Rev. 3
|
2018-10-09 04:56:07 +02:00
|
|
|
|
|
|
|
/* key matrix size */
|
|
|
|
// Rows are doubled-up
|
|
|
|
#define MATRIX_ROWS 10
|
|
|
|
#define MATRIX_COLS 6
|
|
|
|
|
|
|
|
// wiring of each half
|
|
|
|
#define MATRIX_ROW_PINS { D2, D3, D5, D7, D6 }
|
|
|
|
#define MATRIX_COL_PINS { F1, F4, F5, F6, D4, B4 }
|
2019-01-15 23:04:56 +01:00
|
|
|
#define SPLIT_HAND_PIN F0
|
2019-06-02 07:36:30 +02:00
|
|
|
#define QMK_ESC_OUTPUT F1
|
|
|
|
#define QMK_ESC_INPUT D2
|
2019-01-15 23:04:56 +01:00
|
|
|
#define QMK_LED B0
|
|
|
|
#define QMK_SPEAKER C6
|
|
|
|
|
|
|
|
#define ENCODERS_PAD_A { B5 }
|
|
|
|
#define ENCODERS_PAD_B { B7 }
|
2018-10-09 04:56:07 +02:00
|
|
|
|
|
|
|
/* COL2ROW or ROW2COL */
|
|
|
|
#define DIODE_DIRECTION COL2ROW
|
|
|
|
|
|
|
|
/* define if matrix has ghost */
|
|
|
|
//#define MATRIX_HAS_GHOST
|
|
|
|
|
|
|
|
/* number of backlight levels */
|
|
|
|
// #define BACKLIGHT_LEVELS 3
|
|
|
|
|
|
|
|
/* Set 0 if debouncing isn't needed */
|
2019-06-03 21:15:18 +02:00
|
|
|
#define DEBOUNCE 5
|
2018-10-09 04:56:07 +02:00
|
|
|
|
2018-12-14 20:00:10 +01:00
|
|
|
/* serial.c configuration for split keyboard */
|
|
|
|
#define SOFT_SERIAL_PIN D0
|
|
|
|
|
2018-10-09 04:56:07 +02:00
|
|
|
/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
|
|
|
|
#define LOCKING_SUPPORT_ENABLE
|
|
|
|
/* Locking resynchronize hack */
|
|
|
|
#define LOCKING_RESYNC_ENABLE
|
|
|
|
|
2018-10-31 22:43:39 +01:00
|
|
|
#define BACKLIGHT_PIN B6
|
2018-10-09 04:56:07 +02:00
|
|
|
#define BACKLIGHT_LEVELS 5
|
|
|
|
|
|
|
|
/* ws2812 RGB LED */
|
|
|
|
#define RGB_DI_PIN F7
|
|
|
|
#define RGBLED_NUM 12 // Number of LEDs
|
2019-03-24 01:20:14 +01:00
|
|
|
#define RGBLED_SPLIT { 6, 6 }
|
2020-03-19 01:43:20 +01:00
|
|
|
#define RGBLIGHT_ANIMATIONS
|