diff options
Diffstat (limited to 'keyboards/zeal60')
28 files changed, 0 insertions, 3843 deletions
diff --git a/keyboards/zeal60/config.h b/keyboards/zeal60/config.h deleted file mode 100644 index 7c5340e73..000000000 --- a/keyboards/zeal60/config.h +++ /dev/null | |||
| @@ -1,138 +0,0 @@ | |||
| 1 | /* Copyright 2017 Jason Williams (Wilba) | ||
| 2 | * | ||
| 3 | * This program is free software: you can redistribute it and/or modify | ||
| 4 | * it under the terms of the GNU General Public License as published by | ||
| 5 | * the Free Software Foundation, either version 2 of the License, or | ||
| 6 | * (at your option) any later version. | ||
| 7 | * | ||
| 8 | * This program is distributed in the hope that it will be useful, | ||
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 11 | * GNU General Public License for more details. | ||
| 12 | * | ||
| 13 | * You should have received a copy of the GNU General Public License | ||
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 15 | */ | ||
| 16 | #pragma once | ||
| 17 | |||
| 18 | #include "config_common.h" | ||
| 19 | |||
| 20 | // USB Device descriptor parameter | ||
| 21 | #define VENDOR_ID 0x5A45 // ZealPC ("ZE") | ||
| 22 | #define PRODUCT_ID 0x0060 // Zeal60 | ||
| 23 | #define DEVICE_VER 0x0001 | ||
| 24 | #define MANUFACTURER ZealPC | ||
| 25 | #define PRODUCT Zeal60 | ||
| 26 | #define DESCRIPTION Zeal60 | ||
| 27 | |||
| 28 | // key matrix size | ||
| 29 | #define MATRIX_ROWS 5 | ||
| 30 | #define MATRIX_COLS 14 | ||
| 31 | |||
| 32 | // Zeal60 PCB default pin-out | ||
| 33 | #define MATRIX_ROW_PINS { F0, F1, F4, F6, F7 } | ||
| 34 | #define MATRIX_COL_PINS { F5, D5, B1, B2, B3, D3, D2, C7, C6, B6, B5, B4, D7, D6 } | ||
| 35 | #define UNUSED_PINS | ||
| 36 | |||
| 37 | // IS31FL3731 driver | ||
| 38 | #define DRIVER_COUNT 2 | ||
| 39 | #define DRIVER_LED_TOTAL 72 | ||
| 40 | |||
| 41 | // COL2ROW or ROW2COL | ||
| 42 | #define DIODE_DIRECTION COL2ROW | ||
| 43 | |||
| 44 | // Set 0 if debouncing isn't needed | ||
| 45 | #define DEBOUNCE 5 | ||
| 46 | |||
| 47 | // Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap | ||
| 48 | #define LOCKING_SUPPORT_ENABLE | ||
| 49 | // Locking resynchronize hack | ||
| 50 | #define LOCKING_RESYNC_ENABLE | ||
| 51 | |||
| 52 | /* | ||
| 53 | * Feature disable options | ||
| 54 | * These options are also useful to firmware size reduction. | ||
| 55 | */ | ||
| 56 | |||
| 57 | // disable debug print | ||
| 58 | //#define NO_DEBUG | ||
| 59 | |||
| 60 | // disable print | ||
| 61 | //#define NO_PRINT | ||
| 62 | |||
| 63 | // disable action features | ||
| 64 | //#define NO_ACTION_LAYER | ||
| 65 | //#define NO_ACTION_TAPPING | ||
| 66 | //#define NO_ACTION_ONESHOT | ||
| 67 | //#define NO_ACTION_MACRO | ||
| 68 | //#define NO_ACTION_FUNCTION | ||
| 69 | |||
| 70 | #define RGB_BACKLIGHT_ENABLED 1 | ||
| 71 | |||
| 72 | // This conditionally compiles the backlight code for Zeal60 specifics | ||
| 73 | #define RGB_BACKLIGHT_ZEAL60 | ||
| 74 | |||
| 75 | // enable/disable LEDs based on layout | ||
| 76 | #define RGB_BACKLIGHT_USE_SPLIT_BACKSPACE 0 | ||
| 77 | #define RGB_BACKLIGHT_USE_SPLIT_LEFT_SHIFT 0 | ||
| 78 | #define RGB_BACKLIGHT_USE_SPLIT_RIGHT_SHIFT 0 | ||
| 79 | #define RGB_BACKLIGHT_USE_7U_SPACEBAR 0 | ||
| 80 | #define RGB_BACKLIGHT_USE_ISO_ENTER 0 | ||
| 81 | #define RGB_BACKLIGHT_DISABLE_HHKB_BLOCKER_LEDS 0 | ||
| 82 | |||
| 83 | // disable backlight when USB suspended (PC sleep/hibernate/shutdown) | ||
| 84 | #define RGB_BACKLIGHT_DISABLE_WHEN_USB_SUSPENDED 0 | ||
| 85 | |||
| 86 | // disable backlight after timeout in minutes, 0 = no timeout | ||
| 87 | #define RGB_BACKLIGHT_DISABLE_AFTER_TIMEOUT 0 | ||
| 88 | |||
| 89 | // the default brightness | ||
| 90 | #define RGB_BACKLIGHT_BRIGHTNESS 255 | ||
| 91 | |||
| 92 | // the default effect (RGB test) | ||
| 93 | #define RGB_BACKLIGHT_EFFECT 255 | ||
| 94 | |||
| 95 | // the default effect speed (0-3) | ||
| 96 | #define RGB_BACKLIGHT_EFFECT_SPEED 0 | ||
| 97 | |||
| 98 | // the default color1 and color2 | ||
| 99 | #define RGB_BACKLIGHT_COLOR_1 { .h = 0, .s = 255 } | ||
| 100 | #define RGB_BACKLIGHT_COLOR_2 { .h = 127, .s = 255 } | ||
| 101 | |||
| 102 | // These define which keys in the matrix are alphas/mods | ||
| 103 | // Used for backlight effects so colors are different for | ||
| 104 | // alphas vs. mods | ||
| 105 | // Each value is for a row, bit 0 is column 0 | ||
| 106 | // Alpha=0 Mod=1 | ||
| 107 | #define RGB_BACKLIGHT_ALPHAS_MODS_ROW_0 0b0010000000000001 | ||
| 108 | #define RGB_BACKLIGHT_ALPHAS_MODS_ROW_1 0b0000000000000001 | ||
| 109 | #define RGB_BACKLIGHT_ALPHAS_MODS_ROW_2 0b0001000000000001 | ||
| 110 | #define RGB_BACKLIGHT_ALPHAS_MODS_ROW_3 0b0011000000000001 | ||
| 111 | #define RGB_BACKLIGHT_ALPHAS_MODS_ROW_4 0b0011110000000111 | ||
| 112 | |||
| 113 | #define RGB_BACKLIGHT_CAPS_LOCK_INDICATOR { .color = { .h = 0, .s = 0 }, .index = 255 } | ||
| 114 | #define RGB_BACKLIGHT_LAYER_1_INDICATOR { .color = { .h = 0, .s = 0 }, .index = 255 } | ||
| 115 | #define RGB_BACKLIGHT_LAYER_2_INDICATOR { .color = { .h = 0, .s = 0 }, .index = 255 } | ||
| 116 | #define RGB_BACKLIGHT_LAYER_3_INDICATOR { .color = { .h = 0, .s = 0 }, .index = 255 } | ||
| 117 | |||
| 118 | #define DYNAMIC_KEYMAP_LAYER_COUNT 4 | ||
| 119 | |||
| 120 | // EEPROM usage | ||
| 121 | |||
| 122 | // TODO: refactor with new user EEPROM code (coming soon) | ||
| 123 | #define EEPROM_MAGIC 0x451F | ||
| 124 | #define EEPROM_MAGIC_ADDR 32 | ||
| 125 | // Bump this every time we change what we store | ||
| 126 | // This will automatically reset the EEPROM with defaults | ||
| 127 | // and avoid loading invalid data from the EEPROM | ||
| 128 | #define EEPROM_VERSION 0x08 | ||
| 129 | #define EEPROM_VERSION_ADDR 34 | ||
| 130 | |||
| 131 | // Backlight config starts after EEPROM version | ||
| 132 | #define RGB_BACKLIGHT_CONFIG_EEPROM_ADDR 35 | ||
| 133 | // Dynamic keymap starts after backlight config (35+31) | ||
| 134 | #define DYNAMIC_KEYMAP_EEPROM_ADDR 66 | ||
| 135 | // Dynamic macro starts after dynamic keymaps (66+(4*5*14*2)) = (66+560) | ||
| 136 | #define DYNAMIC_KEYMAP_MACRO_EEPROM_ADDR 626 | ||
| 137 | #define DYNAMIC_KEYMAP_MACRO_EEPROM_SIZE 398 | ||
| 138 | #define DYNAMIC_KEYMAP_MACRO_COUNT 16 | ||
diff --git a/keyboards/zeal60/info.json b/keyboards/zeal60/info.json deleted file mode 100644 index c4234e49a..000000000 --- a/keyboards/zeal60/info.json +++ /dev/null | |||
| @@ -1,25 +0,0 @@ | |||
| 1 | { | ||
| 2 | "keyboard_name": "Zeal60", | ||
| 3 | "url": "", | ||
| 4 | "maintainer": "Wilba", | ||
| 5 | "bootloader": "DFU", | ||
| 6 | "width": 15, | ||
| 7 | "height": 5, | ||
| 8 | "layouts": { | ||
| 9 | "LAYOUT_all": { | ||
| 10 | "layout": [{"label":"~", "x":0, "y":0}, {"label":"!", "x":1, "y":0}, {"label":"@", "x":2, "y":0}, {"label":"#", "x":3, "y":0}, {"label":"$", "x":4, "y":0}, {"label":"%", "x":5, "y":0}, {"label":"^", "x":6, "y":0}, {"label":"&", "x":7, "y":0}, {"label":"*", "x":8, "y":0}, {"label":"(", "x":9, "y":0}, {"label":")", "x":10, "y":0}, {"label":"_", "x":11, "y":0}, {"label":"+", "x":12, "y":0}, {"x":13, "y":0}, {"x":14, "y":0}, {"label":"Tab", "x":0, "y":1, "w":1.5}, {"label":"Q", "x":1.5, "y":1}, {"label":"W", "x":2.5, "y":1}, {"label":"E", "x":3.5, "y":1}, {"label":"R", "x":4.5, "y":1}, {"label":"T", "x":5.5, "y":1}, {"label":"Y", "x":6.5, "y":1}, {"label":"U", "x":7.5, "y":1}, {"label":"I", "x":8.5, "y":1}, {"label":"O", "x":9.5, "y":1}, {"label":"P", "x":10.5, "y":1}, {"label":"{", "x":11.5, "y":1}, {"label":"}", "x":12.5, "y":1}, {"label":"|", "x":13.5, "y":1, "w":1.5}, {"label":"Caps Lock", "x":0, "y":2, "w":1.75}, {"label":"A", "x":1.75, "y":2}, {"label":"S", "x":2.75, "y":2}, {"label":"D", "x":3.75, "y":2}, {"label":"F", "x":4.75, "y":2}, {"label":"G", "x":5.75, "y":2}, {"label":"H", "x":6.75, "y":2}, {"label":"J", "x":7.75, "y":2}, {"label":"K", "x":8.75, "y":2}, {"label":"L", "x":9.75, "y":2}, {"label":":", "x":10.75, "y":2}, {"label":"\"", "x":11.75, "y":2}, {"label":"Enter", "x":12.75, "y":2, "w":2.25}, {"label":"Shift", "x":0, "y":3, "w":1.25}, {"x":1.25, "y":3}, {"label":"Z", "x":2.25, "y":3}, {"label":"X", "x":3.25, "y":3}, {"label":"C", "x":4.25, "y":3}, {"label":"V", "x":5.25, "y":3}, {"label":"B", "x":6.25, "y":3}, {"label":"N", "x":7.25, "y":3}, {"label":"M", "x":8.25, "y":3}, {"label":"<", "x":9.25, "y":3}, {"label":">", "x":10.25, "y":3}, {"label":"?", "x":11.25, "y":3}, {"label":"Shift", "x":12.25, "y":3, "w":1.75}, {"x":14, "y":3}, {"label":"Ctrl", "x":0, "y":4, "w":1.25}, {"label":"Win", "x":1.25, "y":4, "w":1.25}, {"label":"Alt", "x":2.5, "y":4, "w":1.25}, {"x":3.75, "y":4, "w":6.25}, {"label":"Alt", "x":10, "y":4, "w":1.25}, {"label":"Win", "x":11.25, "y":4, "w":1.25}, {"label":"Menu", "x":12.5, "y":4, "w":1.25}, {"label":"Ctrl", "x":13.75, "y":4, "w":1.25}] | ||
| 11 | }, | ||
| 12 | "LAYOUT_60_ansi": { | ||
| 13 | "layout": [{"label":"~", "x":0, "y":0}, {"label":"!", "x":1, "y":0}, {"label":"@", "x":2, "y":0}, {"label":"#", "x":3, "y":0}, {"label":"$", "x":4, "y":0}, {"label":"%", "x":5, "y":0}, {"label":"^", "x":6, "y":0}, {"label":"&", "x":7, "y":0}, {"label":"*", "x":8, "y":0}, {"label":"(", "x":9, "y":0}, {"label":")", "x":10, "y":0}, {"label":"_", "x":11, "y":0}, {"label":"+", "x":12, "y":0}, {"label":"Backspace", "x":13, "y":0, "w":2}, {"label":"Tab", "x":0, "y":1, "w":1.5}, {"label":"Q", "x":1.5, "y":1}, {"label":"W", "x":2.5, "y":1}, {"label":"E", "x":3.5, "y":1}, {"label":"R", "x":4.5, "y":1}, {"label":"T", "x":5.5, "y":1}, {"label":"Y", "x":6.5, "y":1}, {"label":"U", "x":7.5, "y":1}, {"label":"I", "x":8.5, "y":1}, {"label":"O", "x":9.5, "y":1}, {"label":"P", "x":10.5, "y":1}, {"label":"{", "x":11.5, "y":1}, {"label":"}", "x":12.5, "y":1}, {"label":"|", "x":13.5, "y":1, "w":1.5}, {"label":"Caps Lock", "x":0, "y":2, "w":1.75}, {"label":"A", "x":1.75, "y":2}, {"label":"S", "x":2.75, "y":2}, {"label":"D", "x":3.75, "y":2}, {"label":"F", "x":4.75, "y":2}, {"label":"G", "x":5.75, "y":2}, {"label":"H", "x":6.75, "y":2}, {"label":"J", "x":7.75, "y":2}, {"label":"K", "x":8.75, "y":2}, {"label":"L", "x":9.75, "y":2}, {"label":":", "x":10.75, "y":2}, {"label":"\"", "x":11.75, "y":2}, {"label":"Enter", "x":12.75, "y":2, "w":2.25}, {"label":"Shift", "x":0, "y":3, "w":2.25}, {"label":"Z", "x":2.25, "y":3}, {"label":"X", "x":3.25, "y":3}, {"label":"C", "x":4.25, "y":3}, {"label":"V", "x":5.25, "y":3}, {"label":"B", "x":6.25, "y":3}, {"label":"N", "x":7.25, "y":3}, {"label":"M", "x":8.25, "y":3}, {"label":"<", "x":9.25, "y":3}, {"label":">", "x":10.25, "y":3}, {"label":"?", "x":11.25, "y":3}, {"label":"Shift", "x":12.25, "y":3, "w":2.75}, {"label":"Ctrl", "x":0, "y":4, "w":1.25}, {"label":"Win", "x":1.25, "y":4, "w":1.25}, {"label":"Alt", "x":2.5, "y":4, "w":1.25}, {"x":3.75, "y":4, "w":6.25}, {"label":"Alt", "x":10, "y":4, "w":1.25}, {"label":"Win", "x":11.25, "y":4, "w":1.25}, {"label":"Menu", "x":12.5, "y":4, "w":1.25}, {"label":"Ctrl", "x":13.75, "y":4, "w":1.25}] | ||
| 14 | }, | ||
| 15 | "LAYOUT_60_iso": { | ||
| 16 | "layout": [{"label":"\u00ac", "x":0, "y":0}, {"label":"!", "x":1, "y":0}, {"label":"\"", "x":2, "y":0}, {"label":"\u00a3", "x":3, "y":0}, {"label":"$", "x":4, "y":0}, {"label":"%", "x":5, "y":0}, {"label":"^", "x":6, "y":0}, {"label":"&", "x":7, "y":0}, {"label":"*", "x":8, "y":0}, {"label":"(", "x":9, "y":0}, {"label":")", "x":10, "y":0}, {"label":"_", "x":11, "y":0}, {"label":"+", "x":12, "y":0}, {"label":"Backspace", "x":13, "y":0, "w":2}, {"label":"Tab", "x":0, "y":1, "w":1.5}, {"label":"Q", "x":1.5, "y":1}, {"label":"W", "x":2.5, "y":1}, {"label":"E", "x":3.5, "y":1}, {"label":"R", "x":4.5, "y":1}, {"label":"T", "x":5.5, "y":1}, {"label":"Y", "x":6.5, "y":1}, {"label":"U", "x":7.5, "y":1}, {"label":"I", "x":8.5, "y":1}, {"label":"O", "x":9.5, "y":1}, {"label":"P", "x":10.5, "y":1}, {"label":"{", "x":11.5, "y":1}, {"label":"}", "x":12.5, "y":1}, {"label":"Enter", "x":13.75, "y":1, "w":1.25, "h":2}, {"label":"Caps Lock", "x":0, "y":2, "w":1.75}, {"label":"A", "x":1.75, "y":2}, {"label":"S", "x":2.75, "y":2}, {"label":"D", "x":3.75, "y":2}, {"label":"F", "x":4.75, "y":2}, {"label":"G", "x":5.75, "y":2}, {"label":"H", "x":6.75, "y":2}, {"label":"J", "x":7.75, "y":2}, {"label":"K", "x":8.75, "y":2}, {"label":"L", "x":9.75, "y":2}, {"label":":", "x":10.75, "y":2}, {"label":"@", "x":11.75, "y":2}, {"label":"~", "x":12.75, "y":2}, {"label":"Shift", "x":0, "y":3, "w":1.25}, {"label":"|", "x":1.25, "y":3}, {"label":"Z", "x":2.25, "y":3}, {"label":"X", "x":3.25, "y":3}, {"label":"C", "x":4.25, "y":3}, {"label":"V", "x":5.25, "y":3}, {"label":"B", "x":6.25, "y":3}, {"label":"N", "x":7.25, "y":3}, {"label":"M", "x":8.25, "y":3}, {"label":"<", "x":9.25, "y":3}, {"label":">", "x":10.25, "y":3}, {"label":"?", "x":11.25, "y":3}, {"label":"Shift", "x":12.25, "y":3, "w":2.75}, {"label":"Ctrl", "x":0, "y":4, "w":1.25}, {"label":"Win", "x":1.25, "y":4, "w":1.25}, {"label":"Alt", "x":2.5, "y":4, "w":1.25}, {"x":3.75, "y":4, "w":6.25}, {"label":"AltGr", "x":10, "y":4, "w":1.25}, {"label":"Win", "x":11.25, "y":4, "w":1.25}, {"label":"Menu", "x":12.5, "y":4, "w":1.25}, {"label":"Ctrl", "x":13.75, "y":4, "w":1.25}] | ||
| 17 | }, | ||
| 18 | "LAYOUT_60_ansi_split_bs_rshift": { | ||
| 19 | "layout": [{"label":"~", "x":0, "y":0}, {"label":"!", "x":1, "y":0}, {"label":"@", "x":2, "y":0}, {"label":"#", "x":3, "y":0}, {"label":"$", "x":4, "y":0}, {"label":"%", "x":5, "y":0}, {"label":"^", "x":6, "y":0}, {"label":"&", "x":7, "y":0}, {"label":"*", "x":8, "y":0}, {"label":"(", "x":9, "y":0}, {"label":")", "x":10, "y":0}, {"label":"_", "x":11, "y":0}, {"label":"+", "x":12, "y":0}, {"x":13, "y":0}, {"x":14, "y":0}, {"label":"Tab", "x":0, "y":1, "w":1.5}, {"label":"Q", "x":1.5, "y":1}, {"label":"W", "x":2.5, "y":1}, {"label":"E", "x":3.5, "y":1}, {"label":"R", "x":4.5, "y":1}, {"label":"T", "x":5.5, "y":1}, {"label":"Y", "x":6.5, "y":1}, {"label":"U", "x":7.5, "y":1}, {"label":"I", "x":8.5, "y":1}, {"label":"O", "x":9.5, "y":1}, {"label":"P", "x":10.5, "y":1}, {"label":"{", "x":11.5, "y":1}, {"label":"}", "x":12.5, "y":1}, {"label":"|", "x":13.5, "y":1, "w":1.5}, {"label":"Caps Lock", "x":0, "y":2, "w":1.75}, {"label":"A", "x":1.75, "y":2}, {"label":"S", "x":2.75, "y":2}, {"label":"D", "x":3.75, "y":2}, {"label":"F", "x":4.75, "y":2}, {"label":"G", "x":5.75, "y":2}, {"label":"H", "x":6.75, "y":2}, {"label":"J", "x":7.75, "y":2}, {"label":"K", "x":8.75, "y":2}, {"label":"L", "x":9.75, "y":2}, {"label":":", "x":10.75, "y":2}, {"label":"\"", "x":11.75, "y":2}, {"label":"Enter", "x":12.75, "y":2, "w":2.25}, {"label":"Shift", "x":0, "y":3, "w":2.25}, {"label":"Z", "x":2.25, "y":3}, {"label":"X", "x":3.25, "y":3}, {"label":"C", "x":4.25, "y":3}, {"label":"V", "x":5.25, "y":3}, {"label":"B", "x":6.25, "y":3}, {"label":"N", "x":7.25, "y":3}, {"label":"M", "x":8.25, "y":3}, {"label":"<", "x":9.25, "y":3}, {"label":">", "x":10.25, "y":3}, {"label":"?", "x":11.25, "y":3}, {"label":"Shift", "x":12.25, "y":3, "w":1.75}, {"x":14, "y":3}, {"label":"Ctrl", "x":0, "y":4, "w":1.25}, {"label":"Win", "x":1.25, "y":4, "w":1.25}, {"label":"Alt", "x":2.5, "y":4, "w":1.25}, {"x":3.75, "y":4, "w":6.25}, {"label":"Alt", "x":10, "y":4, "w":1.25}, {"label":"Win", "x":11.25, "y":4, "w":1.25}, {"label":"Menu", "x":12.5, "y":4, "w":1.25}, {"label":"Ctrl", "x":13.75, "y":4, "w":1.25}] | ||
| 20 | }, | ||
| 21 | "LAYOUT_60_hhkb": { | ||
| 22 | "layout": [{"label":"Esc", "x":0, "y":0}, {"label":"!", "x":1, "y":0}, {"label":"@", "x":2, "y":0}, {"label":"#", "x":3, "y":0}, {"label":"$", "x":4, "y":0}, {"label":"%", "x":5, "y":0}, {"label":"^", "x":6, "y":0}, {"label":"&", "x":7, "y":0}, {"label":"*", "x":8, "y":0}, {"label":"(", "x":9, "y":0}, {"label":")", "x":10, "y":0}, {"label":"_", "x":11, "y":0}, {"label":"+", "x":12, "y":0}, {"label":"|", "x":13, "y":0}, {"label":"~", "x":14, "y":0}, {"label":"Tab", "x":0, "y":1, "w":1.5}, {"label":"Q", "x":1.5, "y":1}, {"label":"W", "x":2.5, "y":1}, {"label":"E", "x":3.5, "y":1}, {"label":"R", "x":4.5, "y":1}, {"label":"T", "x":5.5, "y":1}, {"label":"Y", "x":6.5, "y":1}, {"label":"U", "x":7.5, "y":1}, {"label":"I", "x":8.5, "y":1}, {"label":"O", "x":9.5, "y":1}, {"label":"P", "x":10.5, "y":1}, {"label":"{", "x":11.5, "y":1}, {"label":"}", "x":12.5, "y":1}, {"label":"Delete", "x":13.5, "y":1, "w":1.5}, {"label":"Control", "x":0, "y":2, "w":1.75}, {"label":"A", "x":1.75, "y":2}, {"label":"S", "x":2.75, "y":2}, {"label":"D", "x":3.75, "y":2}, {"label":"F", "x":4.75, "y":2}, {"label":"G", "x":5.75, "y":2}, {"label":"H", "x":6.75, "y":2}, {"label":"J", "x":7.75, "y":2}, {"label":"K", "x":8.75, "y":2}, {"label":"L", "x":9.75, "y":2}, {"label":":", "x":10.75, "y":2}, {"label":"\"", "x":11.75, "y":2}, {"label":"Enter", "x":12.75, "y":2, "w":2.25}, {"label":"Shift", "x":0, "y":3, "w":2.25}, {"label":"Z", "x":2.25, "y":3}, {"label":"X", "x":3.25, "y":3}, {"label":"C", "x":4.25, "y":3}, {"label":"V", "x":5.25, "y":3}, {"label":"B", "x":6.25, "y":3}, {"label":"N", "x":7.25, "y":3}, {"label":"M", "x":8.25, "y":3}, {"label":"<", "x":9.25, "y":3}, {"label":">", "x":10.25, "y":3}, {"label":"?", "x":11.25, "y":3}, {"label":"Shift", "x":12.25, "y":3, "w":1.75}, {"label":"Fn", "x":14, "y":3}, {"label":"Os", "x":1.5, "y":4}, {"label":"Alt", "x":2.5, "y":4, "w":1.5}, {"x":4, "y":4, "w":7}, {"label":"Alt", "x":11, "y":4, "w":1.5}, {"label":"Os", "x":12.5, "y":4}] | ||
| 23 | } | ||
| 24 | } | ||
| 25 | } \ No newline at end of file | ||
diff --git a/keyboards/zeal60/keymaps/ansi_split_bs_rshift/config.h b/keyboards/zeal60/keymaps/ansi_split_bs_rshift/config.h deleted file mode 100644 index 011cf5c5a..000000000 --- a/keyboards/zeal60/keymaps/ansi_split_bs_rshift/config.h +++ /dev/null | |||
| @@ -1,21 +0,0 @@ | |||
| 1 | #pragma once | ||
| 2 | |||
| 3 | /* enable/disable LEDs based on layout */ | ||
| 4 | #undef RGB_BACKLIGHT_USE_SPLIT_BACKSPACE | ||
| 5 | #define RGB_BACKLIGHT_USE_SPLIT_BACKSPACE 0 | ||
| 6 | |||
| 7 | #undef RGB_BACKLIGHT_USE_SPLIT_LEFT_SHIFT | ||
| 8 | #define RGB_BACKLIGHT_USE_SPLIT_LEFT_SHIFT 0 | ||
| 9 | |||
| 10 | #undef RGB_BACKLIGHT_USE_SPLIT_RIGHT_SHIFT | ||
| 11 | #define RGB_BACKLIGHT_USE_SPLIT_RIGHT_SHIFT 0 | ||
| 12 | |||
| 13 | #undef RGB_BACKLIGHT_USE_7U_SPACEBAR | ||
| 14 | #define RGB_BACKLIGHT_USE_7U_SPACEBAR 0 | ||
| 15 | |||
| 16 | #undef RGB_BACKLIGHT_USE_ISO_ENTER | ||
| 17 | #define RGB_BACKLIGHT_USE_ISO_ENTER 0 | ||
| 18 | |||
| 19 | #undef RGB_BACKLIGHT_DISABLE_HHKB_BLOCKER_LEDS | ||
| 20 | #define RGB_BACKLIGHT_DISABLE_HHKB_BLOCKER_LEDS 0 | ||
| 21 | |||
diff --git a/keyboards/zeal60/keymaps/ansi_split_bs_rshift/keymap.c b/keyboards/zeal60/keymaps/ansi_split_bs_rshift/keymap.c deleted file mode 100644 index edb4f256b..000000000 --- a/keyboards/zeal60/keymaps/ansi_split_bs_rshift/keymap.c +++ /dev/null | |||
| @@ -1,38 +0,0 @@ | |||
| 1 | // ANSI split backspace/right shift layout for Zeal60 | ||
| 2 | #include QMK_KEYBOARD_H | ||
| 3 | |||
| 4 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 5 | |||
| 6 | // Default layer | ||
| 7 | [0] = LAYOUT_60_ansi_split_bs_rshift( | ||
| 8 | KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSLS, KC_DEL, | ||
| 9 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSPC, | ||
| 10 | KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT, | ||
| 11 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, FN_MO13, | ||
| 12 | KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, KC_RGUI, FN_MO23, KC_RCTL), | ||
| 13 | |||
| 14 | // Fn1 Layer | ||
| 15 | [1] = LAYOUT_60_ansi_split_bs_rshift( | ||
| 16 | KC_GRV, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_INS, KC_DEL, | ||
| 17 | KC_CAPS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_PSCR, KC_SLCK, KC_PAUS, KC_UP, KC_TRNS, KC_TRNS, | ||
| 18 | KC_TRNS, KC_VOLD, KC_VOLU, KC_MUTE, KC_EJCT, KC_TRNS, KC_PAST, KC_PSLS, KC_HOME, KC_PGUP, KC_LEFT, KC_RGHT, KC_TRNS, | ||
| 19 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_PPLS, KC_PMNS, KC_END, KC_PGDN, KC_DOWN, KC_TRNS, KC_TRNS, | ||
| 20 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS), | ||
| 21 | |||
| 22 | // Fn2 Layer | ||
| 23 | [2] = LAYOUT_60_ansi_split_bs_rshift( | ||
| 24 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 25 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 26 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 27 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 28 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS), | ||
| 29 | |||
| 30 | // Fn3 Layer (zeal60 Configuration) | ||
| 31 | [3] = LAYOUT_60_ansi_split_bs_rshift( | ||
| 32 | KC_TRNS, EF_DEC, EF_INC, H1_DEC, H1_INC, H2_DEC, H2_INC, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, BR_DEC, BR_INC, KC_TRNS, KC_TRNS, | ||
| 33 | KC_TRNS, KC_TRNS, KC_TRNS, S1_DEC, S1_INC, S2_DEC, S2_INC, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, ES_DEC, ES_INC, KC_TRNS, | ||
| 34 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 35 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 36 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS), | ||
| 37 | |||
| 38 | }; | ||
diff --git a/keyboards/zeal60/keymaps/crd/config.h b/keyboards/zeal60/keymaps/crd/config.h deleted file mode 100644 index a70f9da7e..000000000 --- a/keyboards/zeal60/keymaps/crd/config.h +++ /dev/null | |||
| @@ -1,29 +0,0 @@ | |||
| 1 | #pragma once | ||
| 2 | |||
| 3 | /* enable/disable LEDs based on layout */ | ||
| 4 | #undef RGB_BACKLIGHT_USE_SPLIT_BACKSPACE | ||
| 5 | #define RGB_BACKLIGHT_USE_SPLIT_BACKSPACE 0 | ||
| 6 | |||
| 7 | #undef RGB_BACKLIGHT_USE_SPLIT_LEFT_SHIFT | ||
| 8 | #define RGB_BACKLIGHT_USE_SPLIT_LEFT_SHIFT 0 | ||
| 9 | |||
| 10 | #undef RGB_BACKLIGHT_USE_SPLIT_RIGHT_SHIFT | ||
| 11 | #define RGB_BACKLIGHT_USE_SPLIT_RIGHT_SHIFT 1 | ||
| 12 | |||
| 13 | #undef RGB_BACKLIGHT_USE_7U_SPACEBAR | ||
| 14 | #define RGB_BACKLIGHT_USE_7U_SPACEBAR 1 | ||
| 15 | |||
| 16 | #undef RGB_BACKLIGHT_USE_ISO_ENTER | ||
| 17 | #define RGB_BACKLIGHT_USE_ISO_ENTER 0 | ||
| 18 | |||
| 19 | #undef RGB_BACKLIGHT_DISABLE_HHKB_BLOCKER_LEDS | ||
| 20 | #define RGB_BACKLIGHT_DISABLE_HHKB_BLOCKER_LEDS 0 | ||
| 21 | |||
| 22 | #undef RGB_BACKLIGHT_DISABLE_WHEN_USB_SUSPENDED | ||
| 23 | #define RGB_BACKLIGHT_DISABLE_WHEN_USB_SUSPENDED 1 | ||
| 24 | |||
| 25 | #undef RGB_BACKLIGHT_DISABLE_AFTER_TIMEOUT | ||
| 26 | #define RGB_BACKLIGHT_DISABLE_AFTER_TIMEOUT 3 | ||
| 27 | |||
| 28 | #undef RGB_BACKLIGHT_EFFECT | ||
| 29 | #define RGB_BACKLIGHT_EFFECT 0 \ No newline at end of file | ||
diff --git a/keyboards/zeal60/keymaps/crd/keymap.c b/keyboards/zeal60/keymaps/crd/keymap.c deleted file mode 100644 index 971782561..000000000 --- a/keyboards/zeal60/keymaps/crd/keymap.c +++ /dev/null | |||
| @@ -1,39 +0,0 @@ | |||
| 1 | // tsangan layout for Zeal60 | ||
| 2 | #include QMK_KEYBOARD_H | ||
| 3 | |||
| 4 | enum keyboard_layers { | ||
| 5 | _BL = 0, // Base Layer | ||
| 6 | _FL, // Function Layer | ||
| 7 | _CL // Control Layer | ||
| 8 | }; | ||
| 9 | |||
| 10 | // Custom #defined keycodes (shorter macros for readability) | ||
| 11 | #define KC_CTES CTL_T(KC_ESC) | ||
| 12 | #define KC_RSUP RSFT_T(KC_UP) | ||
| 13 | #define KC_RGLT RCMD_T(KC_LEFT) | ||
| 14 | #define KC_RADN LT(_CL, KC_DOWN) | ||
| 15 | #define KC_RCRT RCTL_T(KC_RIGHT) | ||
| 16 | |||
| 17 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 18 | [_BL] = LAYOUT_60_ansi_split_bs_rshift( | ||
| 19 | KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPC, XXXXXXX, | ||
| 20 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS, | ||
| 21 | KC_CTES, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT, | ||
| 22 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSUP, MO(_FL), | ||
| 23 | KC_LCTL, KC_LALT, KC_LGUI, KC_SPC, XXXXXXX, KC_RGLT, KC_RADN, KC_RCRT | ||
| 24 | ), | ||
| 25 | [_FL] = LAYOUT_60_ansi_split_bs_rshift( | ||
| 26 | KC_ESC, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_DEL, _______, | ||
| 27 | _______, KC_HOME, KC_UP, KC_END, _______, _______, _______, _______, KC_MUTE, _______, _______, KC_PGDN, KC_PGUP, _______, | ||
| 28 | _______, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______, KC_SLCK, KC_VOLD, KC_VOLU, KC_PAUS, _______, _______, _______, | ||
| 29 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 30 | _______, _______, _______, _______, _______, _______, _______, _______ | ||
| 31 | ), | ||
| 32 | [_CL] = LAYOUT_60_ansi_split_bs_rshift( | ||
| 33 | _______, EF_DEC, EF_INC, H1_DEC, H1_INC, H2_DEC, H2_INC, _______, _______, _______, _______, BR_DEC, BR_INC, _______, _______, | ||
| 34 | _______, _______, _______, S1_DEC, S1_INC, S2_DEC, S2_INC, _______, _______, _______, _______, ES_DEC, ES_INC, RESET, | ||
| 35 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 36 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 37 | _______, _______, _______, _______, _______, _______, _______, _______ | ||
| 38 | ), | ||
| 39 | }; | ||
diff --git a/keyboards/zeal60/keymaps/default/config.h b/keyboards/zeal60/keymaps/default/config.h deleted file mode 100644 index f8478a3df..000000000 --- a/keyboards/zeal60/keymaps/default/config.h +++ /dev/null | |||
| @@ -1,20 +0,0 @@ | |||
| 1 | #pragma once | ||
| 2 | |||
| 3 | /* enable/disable LEDs based on layout */ | ||
| 4 | #undef RGB_BACKLIGHT_USE_SPLIT_BACKSPACE | ||
| 5 | #define RGB_BACKLIGHT_USE_SPLIT_BACKSPACE 0 | ||
| 6 | |||
| 7 | #undef RGB_BACKLIGHT_USE_SPLIT_LEFT_SHIFT | ||
| 8 | #define RGB_BACKLIGHT_USE_SPLIT_LEFT_SHIFT 0 | ||
| 9 | |||
| 10 | #undef RGB_BACKLIGHT_USE_SPLIT_RIGHT_SHIFT | ||
| 11 | #define RGB_BACKLIGHT_USE_SPLIT_RIGHT_SHIFT 0 | ||
| 12 | |||
| 13 | #undef RGB_BACKLIGHT_USE_7U_SPACEBAR | ||
| 14 | #define RGB_BACKLIGHT_USE_7U_SPACEBAR 0 | ||
| 15 | |||
| 16 | #undef RGB_BACKLIGHT_USE_ISO_ENTER | ||
| 17 | #define RGB_BACKLIGHT_USE_ISO_ENTER 0 | ||
| 18 | |||
| 19 | #undef RGB_BACKLIGHT_DISABLE_HHKB_BLOCKER_LEDS | ||
| 20 | #define RGB_BACKLIGHT_DISABLE_HHKB_BLOCKER_LEDS 0 | ||
diff --git a/keyboards/zeal60/keymaps/default/keymap.c b/keyboards/zeal60/keymaps/default/keymap.c deleted file mode 100644 index 3a13cf4d5..000000000 --- a/keyboards/zeal60/keymaps/default/keymap.c +++ /dev/null | |||
| @@ -1,38 +0,0 @@ | |||
| 1 | // Default layout for Zeal60 | ||
| 2 | #include QMK_KEYBOARD_H | ||
| 3 | |||
| 4 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 5 | |||
| 6 | // Default layer | ||
| 7 | [0] = LAYOUT_60_ansi( | ||
| 8 | KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPC, | ||
| 9 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS, | ||
| 10 | KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT, | ||
| 11 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, | ||
| 12 | KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, FN_MO13, FN_MO23, KC_RCTL), | ||
| 13 | |||
| 14 | // Fn1 Layer | ||
| 15 | [1] = LAYOUT_60_ansi( | ||
| 16 | KC_GRV, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_DEL , | ||
| 17 | KC_CAPS, KC_TRNS, KC_UP, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_INS, KC_TRNS, KC_PSCR, KC_SLCK, KC_PAUS, KC_TRNS, | ||
| 18 | KC_TRNS, KC_LEFT, KC_DOWN, KC_RGHT, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_HOME, KC_PGUP, KC_TRNS, | ||
| 19 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_VOLD, KC_VOLU, KC_MUTE, KC_END, KC_PGDN, KC_TRNS, | ||
| 20 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS), | ||
| 21 | |||
| 22 | // Fn2 Layer | ||
| 23 | [2] = LAYOUT_60_ansi( | ||
| 24 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 25 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 26 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 27 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 28 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS), | ||
| 29 | |||
| 30 | // Fn3 Layer (zeal60 Configuration) | ||
| 31 | [3] = LAYOUT_60_ansi( | ||
| 32 | KC_TRNS, EF_DEC, EF_INC, H1_DEC, H1_INC, H2_DEC, H2_INC, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, BR_DEC, BR_INC, KC_TRNS, | ||
| 33 | KC_TRNS, KC_TRNS, KC_TRNS, S1_DEC, S1_INC, S2_DEC, S2_INC, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, ES_DEC, ES_INC, KC_TRNS, | ||
| 34 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 35 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 36 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS), | ||
| 37 | |||
| 38 | }; | ||
diff --git a/keyboards/zeal60/keymaps/hhkb/config.h b/keyboards/zeal60/keymaps/hhkb/config.h deleted file mode 100644 index 25f74d3d2..000000000 --- a/keyboards/zeal60/keymaps/hhkb/config.h +++ /dev/null | |||
| @@ -1,20 +0,0 @@ | |||
| 1 | #pragma once | ||
| 2 | |||
| 3 | /* enable/disable LEDs based on layout */ | ||
| 4 | #undef RGB_BACKLIGHT_USE_SPLIT_BACKSPACE | ||
| 5 | #define RGB_BACKLIGHT_USE_SPLIT_BACKSPACE 1 | ||
| 6 | |||
| 7 | #undef RGB_BACKLIGHT_USE_SPLIT_LEFT_SHIFT | ||
| 8 | #define RGB_BACKLIGHT_USE_SPLIT_LEFT_SHIFT 0 | ||
| 9 | |||
| 10 | #undef RGB_BACKLIGHT_USE_SPLIT_RIGHT_SHIFT | ||
| 11 | #define RGB_BACKLIGHT_USE_SPLIT_RIGHT_SHIFT 1 | ||
| 12 | |||
| 13 | #undef RGB_BACKLIGHT_USE_7U_SPACEBAR | ||
| 14 | #define RGB_BACKLIGHT_USE_7U_SPACEBAR 1 | ||
| 15 | |||
| 16 | #undef RGB_BACKLIGHT_USE_ISO_ENTER | ||
| 17 | #define RGB_BACKLIGHT_USE_ISO_ENTER 0 | ||
| 18 | |||
| 19 | #undef RGB_BACKLIGHT_DISABLE_HHKB_BLOCKER_LEDS | ||
| 20 | #define RGB_BACKLIGHT_DISABLE_HHKB_BLOCKER_LEDS 1 | ||
diff --git a/keyboards/zeal60/keymaps/hhkb/keymap.c b/keyboards/zeal60/keymaps/hhkb/keymap.c deleted file mode 100644 index 5cedc6e5e..000000000 --- a/keyboards/zeal60/keymaps/hhkb/keymap.c +++ /dev/null | |||
| @@ -1,38 +0,0 @@ | |||
| 1 | // HHKB layout for Zeal60 | ||
| 2 | #include QMK_KEYBOARD_H | ||
| 3 | |||
| 4 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 5 | |||
| 6 | // Default layer | ||
| 7 | [0] = LAYOUT_60_hhkb( | ||
| 8 | KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSLS, KC_GRV, | ||
| 9 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSPC, | ||
| 10 | KC_LCTL, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT, | ||
| 11 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, FN_MO13, | ||
| 12 | KC_LGUI, KC_LALT, KC_SPC, KC_RALT, FN_MO23), | ||
| 13 | |||
| 14 | // Fn1 Layer | ||
| 15 | [1] = LAYOUT_60_hhkb( | ||
| 16 | KC_PWR, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_INS, KC_DEL, | ||
| 17 | KC_CAPS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_PSCR, KC_SLCK, KC_PAUS, KC_UP, KC_TRNS, KC_TRNS, | ||
| 18 | KC_TRNS, KC_VOLD, KC_VOLU, KC_MUTE, KC_EJCT, KC_TRNS, KC_PAST, KC_PSLS, KC_HOME, KC_PGUP, KC_LEFT, KC_RGHT, KC_TRNS, | ||
| 19 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_PPLS, KC_PMNS, KC_END, KC_PGDN, KC_DOWN, KC_TRNS, KC_TRNS, | ||
| 20 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS), | ||
| 21 | |||
| 22 | // Fn2 Layer | ||
| 23 | [2] = LAYOUT_60_hhkb( | ||
| 24 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 25 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 26 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 27 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 28 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS), | ||
| 29 | |||
| 30 | // Fn3 Layer (zeal60 Configuration) | ||
| 31 | [3] = LAYOUT_60_hhkb( | ||
| 32 | KC_TRNS, EF_DEC, EF_INC, H1_DEC, H1_INC, H2_DEC, H2_INC, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, BR_DEC, BR_INC, KC_TRNS, KC_TRNS, | ||
| 33 | KC_TRNS, KC_TRNS, KC_TRNS, S1_DEC, S1_INC, S2_DEC, S2_INC, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, ES_DEC, ES_INC, KC_TRNS, | ||
| 34 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 35 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 36 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS), | ||
| 37 | |||
| 38 | }; | ||
diff --git a/keyboards/zeal60/keymaps/iso/config.h b/keyboards/zeal60/keymaps/iso/config.h deleted file mode 100644 index c96ef1f05..000000000 --- a/keyboards/zeal60/keymaps/iso/config.h +++ /dev/null | |||
| @@ -1,20 +0,0 @@ | |||
| 1 | #pragma once | ||
| 2 | |||
| 3 | /* enable/disable LEDs based on layout */ | ||
| 4 | #undef RGB_BACKLIGHT_USE_SPLIT_BACKSPACE | ||
| 5 | #define RGB_BACKLIGHT_USE_SPLIT_BACKSPACE 0 | ||
| 6 | |||
| 7 | #undef RGB_BACKLIGHT_USE_SPLIT_LEFT_SHIFT | ||
| 8 | #define RGB_BACKLIGHT_USE_SPLIT_LEFT_SHIFT 1 | ||
| 9 | |||
| 10 | #undef RGB_BACKLIGHT_USE_SPLIT_RIGHT_SHIFT | ||
| 11 | #define RGB_BACKLIGHT_USE_SPLIT_RIGHT_SHIFT 0 | ||
| 12 | |||
| 13 | #undef RGB_BACKLIGHT_USE_7U_SPACEBAR | ||
| 14 | #define RGB_BACKLIGHT_USE_7U_SPACEBAR 0 | ||
| 15 | |||
| 16 | #undef RGB_BACKLIGHT_USE_ISO_ENTER | ||
| 17 | #define RGB_BACKLIGHT_USE_ISO_ENTER 1 | ||
| 18 | |||
| 19 | #undef RGB_BACKLIGHT_DISABLE_HHKB_BLOCKER_LEDS | ||
| 20 | #define RGB_BACKLIGHT_DISABLE_HHKB_BLOCKER_LEDS 0 | ||
diff --git a/keyboards/zeal60/keymaps/iso/keymap.c b/keyboards/zeal60/keymaps/iso/keymap.c deleted file mode 100644 index 55120f05e..000000000 --- a/keyboards/zeal60/keymaps/iso/keymap.c +++ /dev/null | |||
| @@ -1,38 +0,0 @@ | |||
| 1 | // ISO layout for Zeal60 | ||
| 2 | #include QMK_KEYBOARD_H | ||
| 3 | |||
| 4 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 5 | |||
| 6 | // Default layer | ||
| 7 | [0] = LAYOUT_60_iso( | ||
| 8 | KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPC, | ||
| 9 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_ENT, | ||
| 10 | KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_NUHS, | ||
| 11 | KC_LSFT, KC_NUBS, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, | ||
| 12 | KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, FN_MO13, FN_MO23, KC_RCTL), | ||
| 13 | |||
| 14 | // Fn1 Layer | ||
| 15 | [1] = LAYOUT_60_iso( | ||
| 16 | KC_GRV, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_DEL , | ||
| 17 | KC_CAPS, KC_TRNS, KC_UP, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_INS, KC_TRNS, KC_PSCR, KC_SLCK, KC_PAUS, KC_TRNS, | ||
| 18 | KC_TRNS, KC_LEFT, KC_DOWN, KC_RGHT, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_HOME, KC_PGUP, KC_TRNS, | ||
| 19 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_VOLD, KC_VOLU, KC_MUTE, KC_END, KC_PGDN, KC_TRNS, | ||
| 20 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS), | ||
| 21 | |||
| 22 | // Fn2 Layer | ||
| 23 | [2] = LAYOUT_60_iso( | ||
| 24 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 25 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 26 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 27 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 28 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS), | ||
| 29 | |||
| 30 | // Fn3 Layer (zeal60 Configuration) | ||
| 31 | [3] = LAYOUT_60_iso( | ||
| 32 | KC_TRNS, EF_DEC, EF_INC, H1_DEC, H1_INC, H2_DEC, H2_INC, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, BR_DEC, BR_INC, KC_TRNS, | ||
| 33 | KC_TRNS, KC_TRNS, KC_TRNS, S1_DEC, S1_INC, S2_DEC, S2_INC, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, ES_DEC, ES_INC, KC_TRNS, | ||
| 34 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 35 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 36 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS), | ||
| 37 | |||
| 38 | }; | ||
diff --git a/keyboards/zeal60/keymaps/ryanmaclean/config.h b/keyboards/zeal60/keymaps/ryanmaclean/config.h deleted file mode 100644 index f1531eb34..000000000 --- a/keyboards/zeal60/keymaps/ryanmaclean/config.h +++ /dev/null | |||
| @@ -1,21 +0,0 @@ | |||
| 1 | #pragma once | ||
| 2 | |||
| 3 | /* enable/disable LEDs based on layout */ | ||
| 4 | #undef RGB_BACKLIGHT_USE_SPLIT_BACKSPACE | ||
| 5 | #define RGB_BACKLIGHT_USE_SPLIT_BACKSPACE 1 | ||
| 6 | |||
| 7 | #undef RGB_BACKLIGHT_USE_SPLIT_LEFT_SHIFT | ||
| 8 | #define RGB_BACKLIGHT_USE_SPLIT_LEFT_SHIFT 0 | ||
| 9 | |||
| 10 | #undef RGB_BACKLIGHT_USE_SPLIT_RIGHT_SHIFT | ||
| 11 | #define RGB_BACKLIGHT_USE_SPLIT_RIGHT_SHIFT 1 | ||
| 12 | |||
| 13 | #undef RGB_BACKLIGHT_USE_7U_SPACEBAR | ||
| 14 | #define RGB_BACKLIGHT_USE_7U_SPACEBAR 0 | ||
| 15 | |||
| 16 | #undef RGB_BACKLIGHT_USE_ISO_ENTER | ||
| 17 | #define RGB_BACKLIGHT_USE_ISO_ENTER 0 | ||
| 18 | |||
| 19 | #undef RGB_BACKLIGHT_DISABLE_HHKB_BLOCKER_LEDS | ||
| 20 | #define RGB_BACKLIGHT_DISABLE_HHKB_BLOCKER_LEDS 0 | ||
| 21 | |||
diff --git a/keyboards/zeal60/keymaps/ryanmaclean/keymap.c b/keyboards/zeal60/keymaps/ryanmaclean/keymap.c deleted file mode 100644 index 2e342b497..000000000 --- a/keyboards/zeal60/keymaps/ryanmaclean/keymap.c +++ /dev/null | |||
| @@ -1,84 +0,0 @@ | |||
| 1 | // Ryan MacLean's layout for Zeal60 | ||
| 2 | // Note that LGUI and RGUI are swapped with LALT and RALT respectively, for use with Macs | ||
| 3 | // Also note that Control has replaced Caps Lock, and that pressing left or right shift once | ||
| 4 | // will output left parenthese and right parenthese respectively. | ||
| 5 | #include QMK_KEYBOARD_H | ||
| 6 | |||
| 7 | // [0,13] is either left key of split backspace (e.g. HHKB \| key) or 2U backspace | ||
| 8 | // [1,13] is either backslash or ISO Enter | ||
| 9 | // [2,12] is either ANSI Enter or key left of ISO Enter | ||
| 10 | // [2,13] is right key of split backspace (e.g. HHKB `~ key) | ||
| 11 | // [3,1] is right key of split left-shift (e.g ISO key) | ||
| 12 | // [3,13] is right key of split right-shift (e.g. HHKB Fn key) | ||
| 13 | |||
| 14 | |||
| 15 | |||
| 16 | const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) // this is the function signature -- just copy/paste it into your keymap file as it is. KC_LSFT KC_LALT KC_LGUI KC_4 | ||
| 17 | { | ||
| 18 | switch(id) { | ||
| 19 | case 0: // macOS screenshot to capture are to clipboard - this would trigger when you hit a key mapped as M(0) | ||
| 20 | if (record->event.pressed) { | ||
| 21 | return MACRO( D(LSFT), D(LCTL), D(LGUI), T(4), U(LSFT), U(LCTL), U(LGUI), W(255), END ); // this sends the string 'hello' when the macro executes | ||
| 22 | } | ||
| 23 | break; | ||
| 24 | case 1: // macOS screenshot capture area to file - this would trigger when you hit a key mapped as M(1) | ||
| 25 | if (record->event.pressed) { | ||
| 26 | return MACRO( D(LSFT), D(LGUI), T(4), U(LSFT), U(LGUI), W(255), END ); // this sends the string 'hello' when the macro executes | ||
| 27 | } | ||
| 28 | break; | ||
| 29 | case 2: // macOS screenshot to clipboard - this would trigger when you hit a key mapped as M(2) | ||
| 30 | if (record->event.pressed) { | ||
| 31 | return MACRO( D(LSFT), D(LCTL), D(LGUI), T(3), U(LSFT), U(LCTL), U(LGUI), W(255), END ); // this sends the string 'hello' when the macro executes | ||
| 32 | } | ||
| 33 | break; | ||
| 34 | case 3: // macOS screenshot to file - this would trigger when you hit a key mapped as M(3) | ||
| 35 | if (record->event.pressed) { | ||
| 36 | return MACRO( D(LSFT), D(LGUI), T(3), U(LSFT), U(LGUI), W(255), END ); // this sends the string 'hello' when the macro executes | ||
| 37 | } | ||
| 38 | break; | ||
| 39 | } | ||
| 40 | return MACRO_NONE; | ||
| 41 | }; | ||
| 42 | |||
| 43 | #define CADETL MT(KC_LSFT, KC_LBRC) | ||
| 44 | #define CADETR MT(KC_RSFT, KC_RBRC) | ||
| 45 | |||
| 46 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 47 | |||
| 48 | // Default layer | ||
| 49 | [0] = { | ||
| 50 | {KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSLS}, | ||
| 51 | {KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSPC}, | ||
| 52 | {KC_LGUI, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT, KC_GRV}, | ||
| 53 | {KC_LSPO, KC_NO, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSPC, FN_MO13}, | ||
| 54 | {KC_LCTL, KC_LALT, KC_LGUI, KC_NO, KC_NO, KC_NO, KC_NO, KC_SPC, KC_NO, KC_NO, KC_RGUI, KC_RALT, KC_RCTL, FN_MO23} | ||
| 55 | }, | ||
| 56 | |||
| 57 | // Fn1 Layer | ||
| 58 | [1] = { | ||
| 59 | {KC_GRV, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_TRNS}, | ||
| 60 | {KC_CAPS, KC_TRNS, KC_UP, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_INS, KC_TRNS, KC_PSCR, KC_SLCK, KC_PAUS, KC_DEL}, | ||
| 61 | {KC_TRNS, KC_LEFT, KC_DOWN, KC_RGHT, KC_TRNS, KC_TRNS, KC_LEFT, KC_UP, KC_DOWN, KC_RGHT, KC_HOME, KC_PGUP, KC_TRNS, KC_TRNS}, | ||
| 62 | {KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_VOLD, KC_VOLU, KC_MUTE, KC_END, KC_PGDN, KC_TRNS, KC_TRNS}, | ||
| 63 | {KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS} | ||
| 64 | }, | ||
| 65 | |||
| 66 | // Fn2 Layer | ||
| 67 | [2] = { | ||
| 68 | {KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS}, | ||
| 69 | {KC_TRNS, M(2), M(3), KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS}, | ||
| 70 | {KC_TRNS, M(1), M(0), KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS}, | ||
| 71 | {KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS}, | ||
| 72 | {KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS} | ||
| 73 | }, | ||
| 74 | |||
| 75 | // Fn3 Layer (zeal60 Configuration) | ||
| 76 | [3] = { | ||
| 77 | {KC_TRNS, EF_DEC, EF_INC, H1_DEC, H1_INC, H2_DEC, H2_INC, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, BR_DEC, BR_INC, KC_TRNS}, | ||
| 78 | {KC_TRNS, KC_TRNS, KC_TRNS, S1_DEC, S1_INC, S2_DEC, S2_INC, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS}, | ||
| 79 | {KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS}, | ||
| 80 | {KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS}, | ||
| 81 | {KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS} | ||
| 82 | } | ||
| 83 | |||
| 84 | }; | ||
diff --git a/keyboards/zeal60/keymaps/tusing/Makefile b/keyboards/zeal60/keymaps/tusing/Makefile deleted file mode 100644 index 762905da0..000000000 --- a/keyboards/zeal60/keymaps/tusing/Makefile +++ /dev/null | |||
| @@ -1,6 +0,0 @@ | |||
| 1 | # Build Options | ||
| 2 | # change to "no" to disable the options, or define them in the Makefile in | ||
| 3 | # the appropriate keymap folder that will get included automatically | ||
| 4 | # | ||
| 5 | RGBLIGHT_ENABLE = yes | ||
| 6 | AUDIO_ENABLE = no # Underglow cannot be used with audio. | ||
diff --git a/keyboards/zeal60/keymaps/tusing/README.md b/keyboards/zeal60/keymaps/tusing/README.md deleted file mode 100644 index edddf1c58..000000000 --- a/keyboards/zeal60/keymaps/tusing/README.md +++ /dev/null | |||
| @@ -1,80 +0,0 @@ | |||
| 1 | # RGB Underglow Strip on the Zeal60: A Guide | ||
| 2 | |||
| 3 | <img src="https://i.imgur.com/UuUdOCb.jpg" width="800"> | ||
| 4 | |||
| 5 | ## Requirements | ||
| 6 | |||
| 7 | - WS2812B RGB strip, preferably 60 LEDs/meter | ||
| 8 | - Wire, solder | ||
| 9 | - Tape, hot glue, or some sort of adhesive | ||
| 10 | |||
| 11 | ## A. Connecting the strip | ||
| 12 | You might find the [**full PCB image**](https://cdn.shopify.com/s/files/1/0490/7329/files/zeal60jumpers.png) helpful. Ignore the red boxes! | ||
| 13 | |||
| 14 | 1. Connect V+ to the receiving end of the thermistor labeled F1; connect GND to the board's GND pin. (*Avoid connecting +V to the board's +5V pin* - you will likely overload the thermistor, and you will limit your maximum brightness.) | ||
| 15 | |||
| 16 | <img src="https://i.imgur.com/jd7qivh.png" width="300"> | ||
| 17 | |||
| 18 | 2. Connect DI to PB0. | ||
| 19 | |||
| 20 | <img src="https://i.imgur.com/BiMyMLv.jpg" width="300"> | ||
| 21 | |||
| 22 | 3. Should look something like this when finished: | ||
| 23 | |||
| 24 | <img src="https://i.imgur.com/ngxYMuA.jpg" width="600"> | ||
| 25 | |||
| 26 | *Optional:* To allow considerably more light to escape, consider angling the strip outwards by using some sort of fulcrum under the strip. (I used a thick wire.) | ||
| 27 | |||
| 28 | ## B. Enabling the strip | ||
| 29 | 1. If it is not present already, add the following to your ***keymap's*** ```Makefile```: | ||
| 30 | |||
| 31 | ```Makefile | ||
| 32 | RGBLIGHT_ENABLE = yes | ||
| 33 | AUDIO_ENABLE = no #Underglow animations cannot be used with audio. | ||
| 34 | ``` | ||
| 35 | 2. If it is not present already, add the following to your *keymap's* ```config.h```, and edit the values as necessary: | ||
| 36 | |||
| 37 | ```c | ||
| 38 | // Set up RGB underglow. | ||
| 39 | #define RGB_DI_PIN B0 // The pin your RGB strip is wired to | ||
| 40 | #define RGBLIGHT_ANIMATIONS // Require for fancier stuff (not compatible with audio) | ||
| 41 | #define RGBLED_NUM 35 // Number of LEDs | ||
| 42 | #define RGBLIGHT_HUE_STEP 5 // How much each press of rgb_hue changes hue | ||
| 43 | #define RGBLIGHT_SAT_STEP 10 // How much each press of rgb_sat changes sat | ||
| 44 | #define RGBLIGHT_VAL_STEP 10 // How much each press of rgb_val changes val | ||
| 45 | ``` | ||
| 46 | 3. If they are not present already, add the following keycodes to your keymap to control the RGB strip: ```RGB_TOG``` (on/off), ```RGB_MOD``` (step through modes), ```RGB_HUI```, ```RGB_HUD```, ```RGB_SAI```, ```RGB_SAD```, ```RGB_VAI```, ```RGB_VAD``` (HSV increase/decrease). Add these to your keymap. | ||
| 47 | |||
| 48 | ## C. Dealing with current limits | ||
| 49 | USB 2.0 ports on laptops provide up to 500mA max, but USB 3.0 ports can provide up to 900mA; USB 3.1 up to 1.5A; and powered USB hubs even more. We can run our keyboard at a higher brightness if we draw more power. **The Zeal60 uses 500mA at max brightness.** This means that **you have about 400mA remaining for the strip to use on a USB 3.0 port**; 1000mA free on a USB 3.1 port, so on and so forth. | ||
| 50 | |||
| 51 | ***Warning:*** **This means you will need to turn *off* your RGB strip before connecting to a USB 2.0 port**, as USB 2.0 cannot sustain the current necessary! | ||
| 52 | |||
| 53 | 1. If not present already, add the following to your keymap's ```config.h```. Change the numbers based on your needs. The ones below are safe underestimates. | ||
| 54 | |||
| 55 | ```c | ||
| 56 | // Enable current limiting for RGB underglow. | ||
| 57 | #define RGBSTRIP_CURRENT_LIMIT 400 // Strip current limit in mA. (USB amperage - 500mA for keyboard) | ||
| 58 | #define RGBSTRIP_MAX_CURRENT_PER_LIGHT 50 // mA per light when at max brightness. | ||
| 59 | ``` | ||
| 60 | *Example:* I use a USB port capable of providing 1800 mA. The keyboard uses 500mA, so my personal value (in the `tusing` keymap) for `RGBSTRIP_CURRENT_LIMIT` is 1300. The particular WS2812B RGB strip I have uses a maximum of 60 mA per LED, so that is my personal value for `RGBSTRIP_MAX_CURRENT_PER_LIGHT`. | ||
| 61 | 2. Toggle on the LED strip (```RGB_TOG```) and step through animations (```RGB_MOD```) to test it out! | ||
| 62 | |||
| 63 | ## D. Sources and resources | ||
| 64 | ### A. Connecting the strip. | ||
| 65 | * [In-depth description of connecting an RGB strip to the GH60](https://www.reddit.com/r/MechanicalKeyboards/comments/4d5or2/my_first_custom_build_satan_gh60_rbg_underglow_in/d1nz3o7/) | ||
| 66 | * [32U4 Pinout](https://40.media.tumblr.com/93b6bbd4113418c2b45459bb177e67c5/tumblr_mi49a20QMB1s5t695o1_1280.png) | ||
| 67 | * [Redditor describes connecting RGB strips on his Satan GH60](https://www.reddit.com/r/MechanicalKeyboards/comments/4hbjw4/finally_finished_my_satan_gh60_also_granite_o/d2qn8zx/?context=3) | ||
| 68 | * [Another Redditor on RGB with the Satan GH60](https://www.reddit.com/r/MechanicalKeyboards/comments/4ewzdx/gh60_satan_with_the_rgb_mod/d251uu6/ ) | ||
| 69 | |||
| 70 | ### B. Enabling the strip. | ||
| 71 | * [QMK Wiki portion on underglow](https://github.com/jackhumbert/qmk_firmware/wiki#rgb-under-glow-mod) | ||
| 72 | * [Planck ```Makefile```, ```config.h```, and ```keymap.c``` config example](https://github.com/jackhumbert/qmk_firmware/tree/master/keyboards/planck/keymaps/yang) | ||
| 73 | * [Video demonstrating keycode functions and RGB modes on a KC60](https://www.youtube.com/watch?v=VKrpPAHlisY) | ||
| 74 | |||
| 75 | ### C. Dealing with current limits. | ||
| 76 | * [Discussion of cutting jumpers and adding resistors to lower current from Zeal60](https://www.reddit.com/r/MechanicalKeyboards/comments/5hou92/photos_zeal60_lets_just_say_santa_came_early_this/db23qid/) | ||
| 77 | * [A selection of 900mA-1.5A current hold fuses - look for an SMD 0805-sized fuse.](https://goo.gl/748avG) | ||
| 78 | * [Video detailing technique to solder 0805 resistors](https://www.youtube.com/watch?v=PU7wLcuqc-I&t=123s&list=FLheMlKEVQ5cmVXazUt6HrxQ&index=2) | ||
| 79 | * [QMK feature request to implement max power draw limits in ```config.h```](https://github.com/jackhumbert/qmk_firmware/issues/954) | ||
| 80 | * [Commit enabling max power draw limits in ```config.h```](https://github.com/jackhumbert/qmk_firmware/commit/83e613ad239459582ae28f78b6c81535b9b138d7) \ No newline at end of file | ||
diff --git a/keyboards/zeal60/keymaps/tusing/config.h b/keyboards/zeal60/keymaps/tusing/config.h deleted file mode 100644 index 64aaece50..000000000 --- a/keyboards/zeal60/keymaps/tusing/config.h +++ /dev/null | |||
| @@ -1,36 +0,0 @@ | |||
| 1 | #pragma once | ||
| 2 | |||
| 3 | /* Enable/disable LEDs based on layout. */ | ||
| 4 | #undef RGB_BACKLIGHT_USE_SPLIT_BACKSPACE | ||
| 5 | #define RGB_BACKLIGHT_USE_SPLIT_BACKSPACE 0 | ||
| 6 | |||
| 7 | #undef RGB_BACKLIGHT_USE_SPLIT_LEFT_SHIFT | ||
| 8 | #define RGB_BACKLIGHT_USE_SPLIT_LEFT_SHIFT 0 | ||
| 9 | |||
| 10 | #undef RGB_BACKLIGHT_USE_SPLIT_RIGHT_SHIFT | ||
| 11 | #define RGB_BACKLIGHT_USE_SPLIT_RIGHT_SHIFT 0 | ||
| 12 | |||
| 13 | #undef RGB_BACKLIGHT_USE_7U_SPACEBAR | ||
| 14 | #define RGB_BACKLIGHT_USE_7U_SPACEBAR 0 | ||
| 15 | |||
| 16 | #undef RGB_BACKLIGHT_USE_ISO_ENTER | ||
| 17 | #define RGB_BACKLIGHT_USE_ISO_ENTER 0 | ||
| 18 | |||
| 19 | #undef RGB_BACKLIGHT_DISABLE_HHKB_BLOCKER_LEDS | ||
| 20 | #define RGB_BACKLIGHT_DISABLE_HHKB_BLOCKER_LEDS 0 | ||
| 21 | |||
| 22 | // Set up RGB underglow. | ||
| 23 | #define RGB_DI_PIN B0 // The pin your RGB strip is wired to | ||
| 24 | #define RGBLIGHT_ANIMATIONS // Require for fancier stuff (not compatible with audio) | ||
| 25 | #define RGBLED_NUM 35 // Number of LEDs | ||
| 26 | #define RGBLIGHT_HUE_STEP 5 // How much each press of rgb_hue changes hue | ||
| 27 | #define RGBLIGHT_SAT_STEP 10 // How much each press of rgb_sat changes sat | ||
| 28 | #define RGBLIGHT_VAL_STEP 10 // How much each press of rgb_val changes val | ||
| 29 | |||
| 30 | // Enable current limiting for RGB underglow. | ||
| 31 | #define RGBSTRIP_CURRENT_LIMIT 1300 // Strip current limit in mA. (USB amperage - 500mA for keyboard) | ||
| 32 | #define RGBSTRIP_MAX_CURRENT_PER_LIGHT 40 // mA per light when at max brightness. | ||
| 33 | |||
| 34 | // Scale brightnes according to BRIGHTNESS_CORRECTION_TABLE in quantum/rgblight.c. | ||
| 35 | // This allows to mitigate uneven brightness from LED underglow strips. | ||
| 36 | // #define LED_BRIGHTNESS_CORRECTION | ||
diff --git a/keyboards/zeal60/keymaps/tusing/keymap.c b/keyboards/zeal60/keymaps/tusing/keymap.c deleted file mode 100644 index 755ace861..000000000 --- a/keyboards/zeal60/keymaps/tusing/keymap.c +++ /dev/null | |||
| @@ -1,48 +0,0 @@ | |||
| 1 | // Default layout for Zeal60 | ||
| 2 | #include QMK_KEYBOARD_H | ||
| 3 | |||
| 4 | // For readability. | ||
| 5 | #define _x_ KC_NO | ||
| 6 | #define AUD_PRV LCTL(KC_MPRV) // Previous music track | ||
| 7 | #define AUD_PLY LCTL(KC_MPLY) // Pause music | ||
| 8 | #define AUD_NXT LCTL(KC_MNXT) // Next music track | ||
| 9 | |||
| 10 | // Zeal60-specific keys: | ||
| 11 | // EF_INC, EF_DEC, // next/previous backlight effect | ||
| 12 | // H1_INC, H1_DEC, // Color 1 hue increase/decrease | ||
| 13 | // S1_INC, S1_DEC, // Color 1 saturation increase/decrease | ||
| 14 | // H2_INC, H2_DEC, // Color 2 hue increase/decrease | ||
| 15 | // S2_INC, S2_DEC, // Color 2 saturation increase/decrease | ||
| 16 | // BR_INC, BR_DEC, // backlight brightness increase/decrease | ||
| 17 | |||
| 18 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 19 | // Default layer: Pressing caps-lock momentarily switches to Layer 1. | ||
| 20 | // This is the default layer. Pressing an empty keycode on another layer will take you here. | ||
| 21 | [0] = { | ||
| 22 | {KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPC}, | ||
| 23 | {KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS}, | ||
| 24 | {MO(1), KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT, _x_ }, | ||
| 25 | {KC_LSFT, _x_ , KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, _x_ }, | ||
| 26 | {KC_LCTL, KC_LGUI, KC_LALT, _x_ , _x_ , _x_ , _x_ , KC_SPC, _x_ , _x_ , KC_LEFT, KC_UP, KC_DOWN, KC_RGHT} | ||
| 27 | }, | ||
| 28 | |||
| 29 | // Layer 1: Pressing enter switches to layer 2, where backlight controls live. | ||
| 30 | // This is a momentary layer: once you let go of caps, you'll be back in layer 1. | ||
| 31 | [1] = { | ||
| 32 | {KC_ESC, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_DEL }, | ||
| 33 | {_______, KC_VOLD, KC_MUTE, KC_VOLU, _______, _______, _______, _______, KC_PSCR, KC_SLCK, KC_PAUS, KC_INS, KC_DEL, _______}, | ||
| 34 | {_______, AUD_PRV, AUD_PLY, AUD_NXT, _______, _______, _______, _______, _______, _______, _______, _______, TO(2) , _x_ }, | ||
| 35 | {KC_CAPS, _x_ , _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _x_ }, | ||
| 36 | {KC_RCTL, KC_RGUI, KC_RALT, _x_ , _x_ , _x_ , _x_ , _______, _x_ , _x_ , KC_HOME, KC_PGUP, KC_PGDN, KC_END} | ||
| 37 | }, | ||
| 38 | |||
| 39 | // Layer 2: Zeal60 and backlight configuration. (Get here quickly by pressing Caps+Enter from Layer 1.) | ||
| 40 | // This is a persistent layer. Get back to the default layer by pressing enter. | ||
| 41 | [2] = { | ||
| 42 | {RESET, EF_DEC, EF_INC, BR_DEC, BR_INC, ES_DEC, ES_INC, _______, _______, _______, _______, _______, _______, _______}, | ||
| 43 | {_______, H1_DEC, H1_INC, S1_DEC, S1_INC, _______, _______, _______, _______, _______, _______, _______, _______, _______}, | ||
| 44 | {_______, H2_DEC, H2_INC, S2_DEC, S2_INC, _______, _______, _______, _______, _______, _______, _______, TO(0) , _x_ }, | ||
| 45 | {RGB_MOD, _x_ , RGB_HUD, RGB_HUI, RGB_SAD, RGB_SAI, _______, _______, _______, _______, _______, _______, _______, _x_ }, | ||
| 46 | {RGB_TOG, RGB_VAD, RGB_VAI, _x_ , _x_ , _x_ , _x_ , _______, _x_ , _x_ , _______, _______, _______, _______} | ||
| 47 | } | ||
| 48 | }; | ||
diff --git a/keyboards/zeal60/readme.md b/keyboards/zeal60/readme.md deleted file mode 100644 index 9eca28f83..000000000 --- a/keyboards/zeal60/readme.md +++ /dev/null | |||
| @@ -1,47 +0,0 @@ | |||
| 1 | Zeal60 | ||
| 2 | ==== | ||
| 3 | |||
| 4 |  | ||
| 5 | |||
| 6 | This is a 60% PCB with per-key RGB LEDs and supports ANSI, ISO, winkey/winkeyless bottom row, HHKB-layout (split right shift and backspace). | ||
| 7 | |||
| 8 | Keyboard Maintainer: [Wilba](http://wilba.tech/) and on [github](https://github.com/Wilba6582) | ||
| 9 | Hardware Supported: Zeal60 PCB Rev 0-3 | ||
| 10 | Hardware Availability: https://zealpc.net/collections/group-buy-pre-orders/products/zeal60rgb | ||
| 11 | |||
| 12 | Make example for this keyboard (after setting up your build environment): | ||
| 13 | |||
| 14 | make zeal60:default | ||
| 15 | |||
| 16 | See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs). | ||
| 17 | |||
| 18 | |||
| 19 | RGB Backlight Configuration | ||
| 20 | ==== | ||
| 21 | |||
| 22 | A keymap (in the keymaps directory) can optionally configure which RGB backlight LEDs are used, depending on the needs of the layout, by adding a config.h file in the keymap's directory. | ||
| 23 | The following #define symbols will enable/disable a feature using 1 or 0. | ||
| 24 | |||
| 25 | RGB_BACKLIGHT_USE_SPLIT_BACKSPACE | ||
| 26 | |||
| 27 | Split backspace is being used, enables the right LED of the split backspace (the top-right corner) | ||
| 28 | |||
| 29 | RGB_BACKLIGHT_USE_SPLIT_LEFT_SHIFT | ||
| 30 | |||
| 31 | Split left shift is being used (i.e. ISO layout), enables the right LED of the split left shift (the ISO key) | ||
| 32 | |||
| 33 | RGB_BACKLIGHT_USE_SPLIT_RIGHT_SHIFT | ||
| 34 | |||
| 35 | Split right shift is being used (i.e. HHKB style layouts), enables the right LED of the split right shift (the Fn key) | ||
| 36 | |||
| 37 | RGB_BACKLIGHT_USE_7U_SPACEBAR | ||
| 38 | |||
| 39 | A 7U spacebar is being used, controls the LEDs under the right stabilizer (of 7U spacebar) and right Alt (if 6.25U spacebar). | ||
| 40 | |||
| 41 | RGB_BACKLIGHT_USE_ISO_ENTER | ||
| 42 | |||
| 43 | An ISO Enter is being used. Only used to tweak the location of the LED being used under ANSI Enter/backslash | ||
| 44 | |||
| 45 | RGB_BACKLIGHT_DISABLE_HHKB_BLOCKER_LEDS | ||
| 46 | |||
| 47 | Disables the LEDs under HHKB corner blockers, useful for transparent cases. | ||
diff --git a/keyboards/zeal60/rgb_backlight.c b/keyboards/zeal60/rgb_backlight.c deleted file mode 100644 index a3f7151bf..000000000 --- a/keyboards/zeal60/rgb_backlight.c +++ /dev/null | |||
| @@ -1,2196 +0,0 @@ | |||
| 1 | /* Copyright 2017 Jason Williams (Wilba) | ||
| 2 | * | ||
| 3 | * This program is free software: you can redistribute it and/or modify | ||
| 4 | * it under the terms of the GNU General Public License as published by | ||
| 5 | * the Free Software Foundation, either version 2 of the License, or | ||
| 6 | * (at your option) any later version. | ||
| 7 | * | ||
| 8 | * This program is distributed in the hope that it will be useful, | ||
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 11 | * GNU General Public License for more details. | ||
| 12 | * | ||
| 13 | * You should have received a copy of the GNU General Public License | ||
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 15 | */ | ||
| 16 | #if RGB_BACKLIGHT_ENABLED | ||
| 17 | |||
| 18 | #if defined(RGB_BACKLIGHT_ZEAL60) || defined(RGB_BACKLIGHT_ZEAL65) || defined(RGB_BACKLIGHT_M60_A) || defined(RGB_BACKLIGHT_M6_B) || defined(RGB_BACKLIGHT_KOYU) || defined(RGB_BACKLIGHT_HS60) || defined(RGB_BACKLIGHT_NK65) | ||
| 19 | #else | ||
| 20 | #error None of the following was defined: RGB_BACKLIGHT_ZEAL60, RGB_BACKLIGHT_ZEAL65, RGB_BACKLIGHT_M60_A, RGB_BACKLIGHT_M6_B, RGB_BACKLIGHT_KOYU, RGB_BACKLIGHT_HS60, RGB_BACKLIGHT_NK65 | ||
| 21 | #endif | ||
| 22 | |||
| 23 | #ifndef MAX | ||
| 24 | #define MAX(X, Y) ((X) > (Y) ? (X) : (Y)) | ||
| 25 | #endif | ||
| 26 | |||
| 27 | #ifndef MIN | ||
| 28 | #define MIN(a,b) ((a) < (b)? (a): (b)) | ||
| 29 | #endif | ||
| 30 | |||
| 31 | #include "quantum.h" | ||
| 32 | #include "rgb_backlight.h" | ||
| 33 | #include "rgb_backlight_api.h" | ||
| 34 | #include "rgb_backlight_keycodes.h" | ||
| 35 | |||
| 36 | #if !defined(RGB_BACKLIGHT_HS60) && !defined(RGB_BACKLIGHT_NK65) | ||
| 37 | #include <avr/io.h> | ||
| 38 | #include <util/delay.h> | ||
| 39 | #include <avr/interrupt.h> | ||
| 40 | #include "drivers/avr/i2c_master.h" | ||
| 41 | #else | ||
| 42 | #include "ch.h" | ||
| 43 | #include "hal.h" | ||
| 44 | #include "drivers/arm/i2c_master.h" | ||
| 45 | #include "tmk_core/common/eeprom.h" | ||
| 46 | #endif | ||
| 47 | #include "progmem.h" | ||
| 48 | #include "quantum/color.h" | ||
| 49 | |||
| 50 | #if defined(RGB_BACKLIGHT_M6_B) | ||
| 51 | #include "drivers/issi/is31fl3218.h" | ||
| 52 | #define BACKLIGHT_LED_COUNT 6 | ||
| 53 | #elif defined(RGB_BACKLIGHT_HS60) | ||
| 54 | #include "drivers/issi/is31fl3733.h" | ||
| 55 | #define BACKLIGHT_LED_COUNT 64 | ||
| 56 | #elif defined(RGB_BACKLIGHT_NK65) | ||
| 57 | #include "drivers/issi/is31fl3733.h" | ||
| 58 | #define BACKLIGHT_LED_COUNT 69 | ||
| 59 | #else | ||
| 60 | #include "drivers/issi/is31fl3731.h" | ||
| 61 | #define BACKLIGHT_LED_COUNT 72 | ||
| 62 | #endif | ||
| 63 | |||
| 64 | #define BACKLIGHT_EFFECT_MAX 10 | ||
| 65 | |||
| 66 | backlight_config g_config = { | ||
| 67 | .use_split_backspace = RGB_BACKLIGHT_USE_SPLIT_BACKSPACE, | ||
| 68 | .use_split_left_shift = RGB_BACKLIGHT_USE_SPLIT_LEFT_SHIFT, | ||
| 69 | .use_split_right_shift = RGB_BACKLIGHT_USE_SPLIT_RIGHT_SHIFT, | ||
| 70 | .use_7u_spacebar = RGB_BACKLIGHT_USE_7U_SPACEBAR, | ||
| 71 | .use_iso_enter = RGB_BACKLIGHT_USE_ISO_ENTER, | ||
| 72 | .disable_hhkb_blocker_leds = RGB_BACKLIGHT_DISABLE_HHKB_BLOCKER_LEDS, | ||
| 73 | .disable_when_usb_suspended = RGB_BACKLIGHT_DISABLE_WHEN_USB_SUSPENDED, | ||
| 74 | .disable_after_timeout = RGB_BACKLIGHT_DISABLE_AFTER_TIMEOUT, | ||
| 75 | .brightness = RGB_BACKLIGHT_BRIGHTNESS, | ||
| 76 | .effect = RGB_BACKLIGHT_EFFECT, | ||
| 77 | .effect_speed = RGB_BACKLIGHT_EFFECT_SPEED, | ||
| 78 | .color_1 = RGB_BACKLIGHT_COLOR_1, | ||
| 79 | .color_2 = RGB_BACKLIGHT_COLOR_2, | ||
| 80 | .caps_lock_indicator = RGB_BACKLIGHT_CAPS_LOCK_INDICATOR, | ||
| 81 | .layer_1_indicator = RGB_BACKLIGHT_LAYER_1_INDICATOR, | ||
| 82 | .layer_2_indicator = RGB_BACKLIGHT_LAYER_2_INDICATOR, | ||
| 83 | .layer_3_indicator = RGB_BACKLIGHT_LAYER_3_INDICATOR, | ||
| 84 | .alphas_mods = { | ||
| 85 | RGB_BACKLIGHT_ALPHAS_MODS_ROW_0, | ||
| 86 | RGB_BACKLIGHT_ALPHAS_MODS_ROW_1, | ||
| 87 | RGB_BACKLIGHT_ALPHAS_MODS_ROW_2, | ||
| 88 | RGB_BACKLIGHT_ALPHAS_MODS_ROW_3, | ||
| 89 | RGB_BACKLIGHT_ALPHAS_MODS_ROW_4 }, | ||
| 90 | #if defined(RGB_BACKLIGHT_M6_B) | ||
| 91 | .custom_color = { { 0, 255 }, { 43, 255 }, { 85, 255 }, { 128, 255 }, { 171, 255 }, { 213, 255 } } | ||
| 92 | #endif | ||
| 93 | }; | ||
| 94 | |||
| 95 | bool g_suspend_state = false; | ||
| 96 | uint8_t g_indicator_state = 0; | ||
| 97 | |||
| 98 | // Global tick at 20 Hz | ||
| 99 | uint32_t g_tick = 0; | ||
| 100 | |||
| 101 | // Ticks since this key was last hit. | ||
| 102 | uint8_t g_key_hit[BACKLIGHT_LED_COUNT]; | ||
| 103 | |||
| 104 | // Ticks since any key was last hit. | ||
| 105 | uint32_t g_any_key_hit = 0; | ||
| 106 | |||
| 107 | #if defined(RGB_BACKLIGHT_HS60) | ||
| 108 | |||
| 109 | // This is a 7-bit address, that gets left-shifted and bit 0 | ||
| 110 | // set to 0 for write, 1 for read (as per I2C protocol) | ||
| 111 | // ADDR_2 is not needed. it is here as a dummy | ||
| 112 | #define ISSI_ADDR_1 0x50 | ||
| 113 | |||
| 114 | const is31_led g_is31_leds[DRIVER_LED_TOTAL] = { | ||
| 115 | /* Refer to IS31 manual for these locations | ||
| 116 | * driver | ||
| 117 | * | R location | ||
| 118 | * | | G location | ||
| 119 | * | | | B location | ||
| 120 | * | | | | */ | ||
| 121 | {0, B_1, A_1, C_1}, //LA1 | ||
| 122 | {0, E_1, D_1, F_1}, //LA2 | ||
| 123 | {0, H_1, G_1, I_1}, //LA3 | ||
| 124 | {0, K_1, J_1, L_1}, //LA4 | ||
| 125 | {0, B_2, A_2, C_2}, //LA5 | ||
| 126 | {0, E_2, D_2, F_2}, //LA6 | ||
| 127 | {0, H_2, G_2, I_2}, //LA7 | ||
| 128 | {0, K_2, J_2, L_2}, //LA8 | ||
| 129 | {0, B_3, A_3, C_3}, //LA9 | ||
| 130 | {0, E_3, D_3, F_3}, //LA10 | ||
| 131 | {0, H_3, G_3, I_3}, //LA11 | ||
| 132 | {0, K_3, J_3, L_3}, //LA12 | ||
| 133 | {0, B_4, A_4, C_4}, //LA13 | ||
| 134 | {0, E_4, D_4, F_4}, //LA14 | ||
| 135 | {0, H_4, G_4, I_4}, //LA15 | ||
| 136 | {0, K_4, J_4, L_4}, //LA16 | ||
| 137 | {0, B_5, A_5, C_5}, //LA17 | ||
| 138 | {0, E_5, D_5, F_5}, //LA18 | ||
| 139 | {0, H_5, G_5, I_5}, //LA19 | ||
| 140 | {0, K_5, J_5, L_5}, //LA20 | ||
| 141 | {0, B_6, A_6, C_6}, //LA21 | ||
| 142 | {0, E_6, D_6, F_6}, //LA22 | ||
| 143 | {0, H_6, G_6, I_6}, //LA23 | ||
| 144 | {0, K_6, J_6, L_6}, //LA24 | ||
| 145 | {0, B_7, A_7, C_7}, //LA25 | ||
| 146 | {0, E_7, D_7, F_7}, //LA26 | ||
| 147 | {0, H_7, G_7, I_7}, //LA27 | ||
| 148 | {0, K_7, J_7, L_7}, //LA28 | ||
| 149 | {0, B_8, A_8, C_8}, //LA29 | ||
| 150 | {0, E_8, D_8, F_8}, //LA30 | ||
| 151 | {0, H_8, G_8, I_8}, //LA31 | ||
| 152 | {0, K_8, J_8, L_8}, //LA32 | ||
| 153 | {0, B_9, A_9, C_9}, //LA33 | ||
| 154 | {0, E_9, D_9, F_9}, //LA34 | ||
| 155 | {0, H_9, G_9, I_9}, //LA35 | ||
| 156 | {0, K_9, J_9, L_9}, //LA36 | ||
| 157 | {0, B_10, A_10, C_10}, //LA37 | ||
| 158 | {0, E_10, D_10, F_10}, //LA38 | ||
| 159 | {0, H_10, G_10, I_10}, //LA39 | ||
| 160 | {0, K_10, J_10, L_10}, //LA40 | ||
| 161 | {0, B_11, A_11, C_11}, //LA41 | ||
| 162 | {0, E_11, D_11, F_11}, //LA42 | ||
| 163 | {0, H_11, G_11, I_11}, //LA43 | ||
| 164 | {0, K_11, J_11, L_11}, //LA44 | ||
| 165 | {0, B_12, A_12, C_12}, //LA45 | ||
| 166 | {0, E_12, D_12, F_12}, //LA46 | ||
| 167 | {0, H_12, G_12, I_12}, //LA47 | ||
| 168 | {0, K_12, J_12, L_12}, //LA48 | ||
| 169 | {0, B_13, A_13, C_13}, //LA49 | ||
| 170 | {0, E_13, D_13, F_13}, //LA50 | ||
| 171 | {0, H_13, G_13, I_13}, //LA51 | ||
| 172 | {0, K_13, J_13, L_13}, //LA52 | ||
| 173 | {0, B_14, A_14, C_14}, //LA53 | ||
| 174 | {0, E_14, D_14, F_14}, //LA54 | ||
| 175 | {0, H_14, G_14, I_14}, //LA55 | ||
| 176 | {0, K_14, J_14, L_14}, //LA56 | ||
| 177 | {0, B_15, A_15, C_15}, //LA57 | ||
| 178 | {0, E_15, D_15, F_15}, //LA58 | ||
| 179 | {0, H_15, G_15, I_15}, //LA59 | ||
| 180 | {0, K_15, J_15, L_15}, //LA60 | ||
| 181 | {0, B_16, A_16, C_16}, //LA61 | ||
| 182 | {0, E_16, D_16, F_16}, //LA62 | ||
| 183 | {0, H_16, G_16, I_16}, //LA63 | ||
| 184 | {0, K_16, J_16, L_16}, //LA64 | ||
| 185 | }; | ||
| 186 | |||
| 187 | #elif defined(RGB_BACKLIGHT_NK65) | ||
| 188 | |||
| 189 | // This is a 7-bit address, that gets left-shifted and bit 0 | ||
| 190 | // set to 0 for write, 1 for read (as per I2C protocol) | ||
| 191 | // ADDR_2 is not needed. it is here as a dummy | ||
| 192 | #define ISSI_ADDR_1 0x50 | ||
| 193 | #define ISSI_ADDR_2 0x52 | ||
| 194 | |||
| 195 | const is31_led g_is31_leds[DRIVER_LED_TOTAL] = { | ||
| 196 | /* Refer to IS31 manual for these locations | ||
| 197 | * driver | ||
| 198 | * | R location | ||
| 199 | * | | G location | ||
| 200 | * | | | B location | ||
| 201 | * | | | | */ | ||
| 202 | {0, B_1, A_1, C_1}, //LA1 | ||
| 203 | {0, E_1, D_1, F_1}, //LA2 | ||
| 204 | {0, H_1, G_1, I_1}, //LA3 | ||
| 205 | {0, K_1, J_1, L_1}, //LA4 | ||
| 206 | {0, B_2, A_2, C_2}, //LA5 | ||
| 207 | {0, E_2, D_2, F_2}, //LA6 | ||
| 208 | {0, H_2, G_2, I_2}, //LA7 | ||
| 209 | {0, K_2, J_2, L_2}, //LA8 | ||
| 210 | {0, B_3, A_3, C_3}, //LA9 | ||
| 211 | {0, E_3, D_3, F_3}, //LA10 | ||
| 212 | {0, H_3, G_3, I_3}, //LA11 | ||
| 213 | {0, K_3, J_3, L_3}, //LA12 | ||
| 214 | {0, B_4, A_4, C_4}, //LA13 | ||
| 215 | {0, E_4, D_4, F_4}, //LA14 | ||
| 216 | {0, H_4, G_4, I_4}, //LA15 | ||
| 217 | {0, K_4, J_4, L_4}, //LA16 | ||
| 218 | {0, B_5, A_5, C_5}, //LA17 | ||
| 219 | {0, E_5, D_5, F_5}, //LA18 | ||
| 220 | {0, H_5, G_5, I_5}, //LA19 | ||
| 221 | {0, K_5, J_5, L_5}, //LA20 | ||
| 222 | {0, B_6, A_6, C_6}, //LA21 | ||
| 223 | {0, E_6, D_6, F_6}, //LA22 | ||
| 224 | {0, H_6, G_6, I_6}, //LA23 | ||
| 225 | {0, K_6, J_6, L_6}, //LA24 | ||
| 226 | {0, B_7, A_7, C_7}, //LA25 | ||
| 227 | {0, E_7, D_7, F_7}, //LA26 | ||
| 228 | {0, H_7, G_7, I_7}, //LA27 | ||
| 229 | {0, K_7, J_7, L_7}, //LA28 | ||
| 230 | {0, B_8, A_8, C_8}, //LA29 | ||
| 231 | {0, E_8, D_8, F_8}, //LA30 | ||
| 232 | {0, H_8, G_8, I_8}, //LA31 | ||
| 233 | {0, K_8, J_8, L_8}, //LA32 | ||
| 234 | {0, B_9, A_9, C_9}, //LA33 | ||
| 235 | {0, E_9, D_9, F_9}, //LA34 | ||
| 236 | {0, H_9, G_9, I_9}, //LA35 | ||
| 237 | {0, K_9, J_9, L_9}, //LA36 | ||
| 238 | {0, B_10, A_10, C_10}, //LA37 | ||
| 239 | {0, E_10, D_10, F_10}, //LA38 | ||
| 240 | {0, H_10, G_10, I_10}, //LA39 | ||
| 241 | {0, K_10, J_10, L_10}, //LA40 | ||
| 242 | {0, B_11, A_11, C_11}, //LA41 | ||
| 243 | {0, E_11, D_11, F_11}, //LA42 | ||
| 244 | {0, H_11, G_11, I_11}, //LA43 | ||
| 245 | {0, K_11, J_11, L_11}, //LA44 | ||
| 246 | {0, B_12, A_12, C_12}, //LA45 | ||
| 247 | {0, E_12, D_12, F_12}, //LA46 | ||
| 248 | {0, H_12, G_12, I_12}, //LA47 | ||
| 249 | {0, K_12, J_12, L_12}, //LA48 | ||
| 250 | {0, B_13, A_13, C_13}, //LA49 | ||
| 251 | {0, E_13, D_13, F_13}, //LA50 | ||
| 252 | {0, H_13, G_13, I_13}, //LA51 | ||
| 253 | {0, K_13, J_13, L_13}, //LA52 | ||
| 254 | {0, B_14, A_14, C_14}, //LA53 | ||
| 255 | {0, E_14, D_14, F_14}, //LA54 | ||
| 256 | {0, H_14, G_14, I_14}, //LA55 | ||
| 257 | {0, K_14, J_14, L_14}, //LA56 | ||
| 258 | {0, B_15, A_15, C_15}, //LA57 | ||
| 259 | {0, E_15, D_15, F_15}, //LA58 | ||
| 260 | {0, H_15, G_15, I_15}, //LA59 | ||
| 261 | {0, K_15, J_15, L_15}, //LA60 | ||
| 262 | {0, B_16, A_16, C_16}, //LA61 | ||
| 263 | {0, E_16, D_16, F_16}, //LA62 | ||
| 264 | {0, H_16, G_16, I_16}, //LA63 | ||
| 265 | {0, K_16, J_16, L_16}, //LA64 | ||
| 266 | |||
| 267 | {1, B_1, A_1, C_1}, //LB1 | ||
| 268 | {1, E_1, D_1, F_1}, //LB2 | ||
| 269 | {1, H_1, G_1, I_1}, //LB3 | ||
| 270 | {1, K_1, J_1, L_1}, //LB4 | ||
| 271 | {1, B_2, A_2, C_2}, //LB5 | ||
| 272 | {1, E_2, D_2, F_2}, //LB6 | ||
| 273 | {1, H_2, G_2, I_2}, //LB7 | ||
| 274 | {1, K_2, J_2, L_2}, //LB8 | ||
| 275 | {1, B_3, A_3, C_3}, //LB9 | ||
| 276 | {1, E_3, D_3, F_3}, //LB10 | ||
| 277 | {1, H_3, G_3, I_3}, //LB11 | ||
| 278 | {1, K_3, J_3, L_3}, //LB12 | ||
| 279 | {1, B_4, A_4, C_4}, //LB13 | ||
| 280 | {1, E_4, D_4, F_4}, //LB14 | ||
| 281 | {1, H_4, G_4, I_4}, //LB15 | ||
| 282 | {1, K_4, J_4, L_4}, //LB16 | ||
| 283 | {1, B_5, A_5, C_5}, //LB17 | ||
| 284 | {1, E_5, D_5, F_5}, //LB18 | ||
| 285 | {1, H_5, G_5, I_5}, //LB19 | ||
| 286 | {1, K_5, J_5, L_5}, //LB20 | ||
| 287 | {1, B_6, A_6, C_6}, //LB21 | ||
| 288 | {1, E_6, D_6, F_6}, //LB22 | ||
| 289 | {1, H_6, G_6, I_6}, //LB23 | ||
| 290 | {1, K_6, J_6, L_6}, //LB24 | ||
| 291 | {1, B_7, A_7, C_7}, //LB25 | ||
| 292 | {1, E_7, D_7, F_7}, //LB26 | ||
| 293 | {1, H_7, G_7, I_7}, //LB27 | ||
| 294 | {1, K_7, J_7, L_7}, //LB28 | ||
| 295 | {1, B_8, A_8, C_8}, //LB29 | ||
| 296 | {1, E_8, D_8, F_8}, //LB30 | ||
| 297 | {1, H_8, G_8, I_8}, //LB31 | ||
| 298 | {1, K_8, J_8, L_8}, //LB32 | ||
| 299 | {1, B_9, A_9, C_9}, //LB33 | ||
| 300 | {1, E_9, D_9, F_9}, //LB34 | ||
| 301 | {1, H_9, G_9, I_9}, //LB35 | ||
| 302 | {1, K_9, J_9, L_9}, //LB36 | ||
| 303 | {1, B_10, A_10, C_10}, //LB37 | ||
| 304 | {1, E_10, D_10, F_10}, //LB38 | ||
| 305 | {1, H_10, G_10, I_10}, //LB39 | ||
| 306 | {1, K_10, J_10, L_10}, //LB40 | ||
| 307 | {1, B_11, A_11, C_11}, //LB41 | ||
| 308 | {1, E_11, D_11, F_11}, //LB42 | ||
| 309 | {1, H_11, G_11, I_11}, //LB43 | ||
| 310 | {1, K_11, J_11, L_11}, //LB44 | ||
| 311 | {1, B_12, A_12, C_12}, //LB45 | ||
| 312 | {1, E_12, D_12, F_12}, //LB46 | ||
| 313 | {1, H_12, G_12, I_12}, //LB47 | ||
| 314 | {1, K_12, J_12, L_12}, //LB48 | ||
| 315 | {1, B_13, A_13, C_13}, //LB49 | ||
| 316 | {1, E_13, D_13, F_13}, //LB50 | ||
| 317 | {1, H_13, G_13, I_13}, //LB51 | ||
| 318 | {1, K_13, J_13, L_13}, //LB52 | ||
| 319 | {1, B_14, A_14, C_14}, //LB53 | ||
| 320 | {1, E_14, D_14, F_14}, //LB54 | ||
| 321 | {1, H_14, G_14, I_14}, //LB55 | ||
| 322 | {1, K_14, J_14, L_14}, //LB56 | ||
| 323 | {1, B_15, A_15, C_15}, //LB57 | ||
| 324 | {1, E_15, D_15, F_15}, //LB58 | ||
| 325 | {1, H_15, G_15, I_15}, //LB59 | ||
| 326 | {1, K_15, J_15, L_15}, //LB60 | ||
| 327 | {1, B_16, A_16, C_16}, //LB61 | ||
| 328 | {1, E_16, D_16, F_16}, //LB62 | ||
| 329 | {1, H_16, G_16, I_16}, //LB63 | ||
| 330 | {1, K_16, J_16, L_16}, //LB64 | ||
| 331 | }; | ||
| 332 | |||
| 333 | #elif !defined(RGB_BACKLIGHT_M6_B) | ||
| 334 | // This is a 7-bit address, that gets left-shifted and bit 0 | ||
| 335 | // set to 0 for write, 1 for read (as per I2C protocol) | ||
| 336 | #define ISSI_ADDR_1 0x74 | ||
| 337 | #define ISSI_ADDR_2 0x76 | ||
| 338 | |||
| 339 | const is31_led g_is31_leds[DRIVER_LED_TOTAL] = { | ||
| 340 | /* Refer to IS31 manual for these locations | ||
| 341 | * driver | ||
| 342 | * | R location | ||
| 343 | * | | G location | ||
| 344 | * | | | B location | ||
| 345 | * | | | | */ | ||
| 346 | {0, C2_1, C3_1, C4_1}, // LA0 | ||
| 347 | {0, C1_1, C3_2, C4_2}, // LA1 | ||
| 348 | {0, C1_2, C2_2, C4_3}, // LA2 | ||
| 349 | {0, C1_3, C2_3, C3_3}, // LA3 | ||
| 350 | {0, C1_4, C2_4, C3_4}, // LA4 | ||
| 351 | {0, C1_5, C2_5, C3_5}, // LA5 | ||
| 352 | {0, C1_6, C2_6, C3_6}, // LA6 | ||
| 353 | {0, C1_7, C2_7, C3_7}, // LA7 | ||
| 354 | {0, C1_8, C2_8, C3_8}, // LA8 | ||
| 355 | {0, C9_1, C8_1, C7_1}, // LA9 | ||
| 356 | {0, C9_2, C8_2, C7_2}, // LA10 | ||
| 357 | {0, C9_3, C8_3, C7_3}, // LA11 | ||
| 358 | {0, C9_4, C8_4, C7_4}, // LA12 | ||
| 359 | {0, C9_5, C8_5, C7_5}, // LA13 | ||
| 360 | {0, C9_6, C8_6, C7_6}, // LA14 | ||
| 361 | {0, C9_7, C8_7, C6_6}, // LA15 | ||
| 362 | {0, C9_8, C7_7, C6_7}, // LA16 | ||
| 363 | {0, C8_8, C7_8, C6_8}, // LA17 | ||
| 364 | |||
| 365 | {0, C2_9, C3_9, C4_9}, // LB0 | ||
| 366 | {0, C1_9, C3_10, C4_10}, // LB1 | ||
| 367 | {0, C1_10, C2_10, C4_11}, // LB2 | ||
| 368 | {0, C1_11, C2_11, C3_11}, // LB3 | ||
| 369 | {0, C1_12, C2_12, C3_12}, // LB4 | ||
| 370 | {0, C1_13, C2_13, C3_13}, // LB5 | ||
| 371 | {0, C1_14, C2_14, C3_14}, // LB6 | ||
| 372 | {0, C1_15, C2_15, C3_15}, // LB7 | ||
| 373 | {0, C1_16, C2_16, C3_16}, // LB8 | ||
| 374 | {0, C9_9, C8_9, C7_9}, // LB9 | ||
| 375 | {0, C9_10, C8_10, C7_10}, // LB10 | ||
| 376 | {0, C9_11, C8_11, C7_11}, // LB11 | ||
| 377 | {0, C9_12, C8_12, C7_12}, // LB12 | ||
| 378 | {0, C9_13, C8_13, C7_13}, // LB13 | ||
| 379 | {0, C9_14, C8_14, C7_14}, // LB14 | ||
| 380 | {0, C9_15, C8_15, C6_14}, // LB15 | ||
| 381 | {0, C9_16, C7_15, C6_15}, // LB16 | ||
| 382 | {0, C8_16, C7_16, C6_16}, // LB17 | ||
| 383 | |||
| 384 | {1, C2_1, C3_1, C4_1}, // LC0 | ||
| 385 | {1, C1_1, C3_2, C4_2}, // LC1 | ||
| 386 | {1, C1_2, C2_2, C4_3}, // LC2 | ||
| 387 | {1, C1_3, C2_3, C3_3}, // LC3 | ||
| 388 | {1, C1_4, C2_4, C3_4}, // LC4 | ||
| 389 | {1, C1_5, C2_5, C3_5}, // LC5 | ||
| 390 | {1, C1_6, C2_6, C3_6}, // LC6 | ||
| 391 | {1, C1_7, C2_7, C3_7}, // LC7 | ||
| 392 | {1, C1_8, C2_8, C3_8}, // LC8 | ||
| 393 | {1, C9_1, C8_1, C7_1}, // LC9 | ||
| 394 | {1, C9_2, C8_2, C7_2}, // LC10 | ||
| 395 | {1, C9_3, C8_3, C7_3}, // LC11 | ||
| 396 | {1, C9_4, C8_4, C7_4}, // LC12 | ||
| 397 | {1, C9_5, C8_5, C7_5}, // LC13 | ||
| 398 | {1, C9_6, C8_6, C7_6}, // LC14 | ||
| 399 | {1, C9_7, C8_7, C6_6}, // LC15 | ||
| 400 | {1, C9_8, C7_7, C6_7}, // LC16 | ||
| 401 | {1, C8_8, C7_8, C6_8}, // LC17 | ||
| 402 | |||
| 403 | {1, C2_9, C3_9, C4_9}, // LD0 | ||
| 404 | {1, C1_9, C3_10, C4_10}, // LD1 | ||
| 405 | {1, C1_10, C2_10, C4_11}, // LD2 | ||
| 406 | {1, C1_11, C2_11, C3_11}, // LD3 | ||
| 407 | {1, C1_12, C2_12, C3_12}, // LD4 | ||
| 408 | {1, C1_13, C2_13, C3_13}, // LD5 | ||
| 409 | {1, C1_14, C2_14, C3_14}, // LD6 | ||
| 410 | {1, C1_15, C2_15, C3_15}, // LD7 | ||
| 411 | {1, C1_16, C2_16, C3_16}, // LD8 | ||
| 412 | {1, C9_9, C8_9, C7_9}, // LD9 | ||
| 413 | {1, C9_10, C8_10, C7_10}, // LD10 | ||
| 414 | {1, C9_11, C8_11, C7_11}, // LD11 | ||
| 415 | {1, C9_12, C8_12, C7_12}, // LD12 | ||
| 416 | {1, C9_13, C8_13, C7_13}, // LD13 | ||
| 417 | {1, C9_14, C8_14, C7_14}, // LD14 | ||
| 418 | {1, C9_15, C8_15, C6_14}, // LD15 | ||
| 419 | {1, C9_16, C7_15, C6_15}, // LD16 | ||
| 420 | {1, C8_16, C7_16, C6_16}, // LD17 | ||
| 421 | }; | ||
| 422 | #endif // !defined(RGB_BACKLIGHT_M6_B) | ||
| 423 | |||
| 424 | |||
| 425 | typedef struct Point { | ||
| 426 | uint8_t x; | ||
| 427 | uint8_t y; | ||
| 428 | } Point; | ||
| 429 | |||
| 430 | |||
| 431 | // index in range 0..71 (LA0..LA17, LB0..LB17, LC0..LC17, LD0..LD17) | ||
| 432 | // point values in range x=0..224 y=0..64 | ||
| 433 | // origin is center of top-left key (i.e Esc) | ||
| 434 | #if defined(RGB_BACKLIGHT_ZEAL65) | ||
| 435 | const Point g_map_led_to_point[BACKLIGHT_LED_COUNT] PROGMEM = { | ||
| 436 | // LA0..LA17 | ||
| 437 | {120,16}, {104,16}, {88,16}, {72,16}, {56,16}, {40,16}, {24,16}, {4,16}, {4,32}, | ||
| 438 | {128,0}, {112,0}, {96,0}, {80,0}, {64,0}, {48,0}, {32,0}, {16,0}, {0,0}, | ||
| 439 | // LB0..LB17 | ||
| 440 | {144,0}, {160,0}, {176,0}, {192,0}, {216,0}, {224,0}, {240,0}, {240,16}, {240,32}, | ||
| 441 | {136,16}, {152,16}, {168,16}, {184,16}, {200,16}, {220,16}, {240,48}, {240,64}, {224,64}, | ||
| 442 | // LC0..LC17 | ||
| 443 | {96,64}, {100,48}, {84,48}, {68,48}, {52,48}, {36,48}, {255,255}, {48,60}, {28,64}, | ||
| 444 | {108,32}, {92,32}, {76,32}, {60,32}, {44,32}, {28,32}, {20,44}, {10,48}, {4,64}, | ||
| 445 | // LD0..LD17 | ||
| 446 | {124,32}, {140,32}, {156,32}, {172,32}, {188,32}, {214,32}, {180,48}, {202,48}, {224,48}, | ||
| 447 | {116,48}, {132,48}, {148,48}, {164,48}, {255,255}, {144,60}, {164,64}, {188,64}, {208,64} | ||
| 448 | }; | ||
| 449 | const Point g_map_led_to_point_polar[BACKLIGHT_LED_COUNT] PROGMEM = { | ||
| 450 | // LA0..LA17 | ||
| 451 | {64,128}, {75,132}, {84,145}, {91,164}, {97,187}, {102,213}, {105,242}, {109,255}, {128,243}, | ||
| 452 | {61,255}, {67,255}, {72,255}, {77,255}, {82,255}, {86,255}, {90,255}, {93,255}, {96,255}, | ||
| 453 | // LB0..LB17 | ||
| 454 | {56,255}, {51,255}, {46,255}, {42,255}, {37,255}, {35,255}, {32,255}, {19,255}, {0,255}, | ||
| 455 | {53,132}, {44,145}, {37,164}, {31,187}, {26,213}, {22,249}, {237,255}, {224,255}, {221,255}, | ||
| 456 | // LC0..LC17 | ||
| 457 | {184,255}, {179,135}, {170,149}, {163,169}, {157,193}, {153,220}, {255,255}, {167,255}, {165,255}, | ||
| 458 | {128,26}, {128,60}, {128,94}, {128,128}, {128,162}, {128,196}, {145,233}, {148,255}, {161,255}, | ||
| 459 | // LD0..LD17 | ||
| 460 | {0,9}, {0,43}, {0,77}, {0,111}, {0,145}, {0,201}, {224,181}, {230,217}, {235,255}, | ||
| 461 | {189,128}, {200,131}, {210,141}, {218,159}, {255,255}, {201,228}, {206,255}, {213,255}, {218,255} | ||
| 462 | }; | ||
| 463 | #elif defined(RGB_BACKLIGHT_KOYU) | ||
| 464 | const Point g_map_led_to_point[BACKLIGHT_LED_COUNT] PROGMEM = { | ||
| 465 | // LA0..LA17 | ||
| 466 | {120,16}, {104,16}, {88,16}, {72,16}, {56,16}, {40,16}, {24,16}, {4,16}, {4,32}, | ||
| 467 | {128,0}, {112,0}, {96,0}, {80,0}, {64,0}, {48,0}, {32,0}, {16,0}, {0,0}, | ||
| 468 | // LB0..LB17 | ||
| 469 | {144,0}, {160,0}, {176,0}, {192,0}, {208,0}, {224,0}, {240,0}, {240,16}, {240,32}, | ||
| 470 | {136,16}, {152,16}, {168,16}, {184,16}, {200,16}, {220,16}, {240,48}, {240,64}, {224,64}, | ||
| 471 | // LC0..LC17 | ||
| 472 | {112,64}, {100,48}, {84,48}, {68,48}, {52,48}, {36,48}, {64,60}, {44,60}, {24,64}, | ||
| 473 | {108,32}, {92,32}, {76,32}, {60,32}, {44,32}, {28,32}, {255,255}, {10,48}, {4,64}, | ||
| 474 | // LD0..LD17 | ||
| 475 | {124,32}, {140,32}, {156,32}, {172,32}, {188,32}, {214,32}, {180,48}, {202,48}, {224,48}, | ||
| 476 | {116,48}, {132,48}, {148,48}, {164,48}, {255,255}, {160,60}, {180,64}, {208,64}, {255,255} | ||
| 477 | }; | ||
| 478 | const Point g_map_led_to_point_polar[BACKLIGHT_LED_COUNT] PROGMEM = { | ||
| 479 | // LA0..LA17 | ||
| 480 | {64,128}, {75,132}, {84,145}, {91,164}, {97,187}, {102,213}, {105,242}, {109,255}, {128,243}, | ||
| 481 | {61,255}, {67,255}, {72,255}, {77,255}, {82,255}, {86,255}, {90,255}, {93,255}, {96,255}, | ||
| 482 | // LB0..LB17 | ||
| 483 | {56,255}, {51,255}, {46,255}, {42,255}, {38,255}, {35,255}, {32,255}, {19,255}, {0,255}, | ||
| 484 | {53,132}, {44,145}, {37,164}, {31,187}, {26,213}, {22,249}, {237,255}, {224,255}, {221,255}, | ||
| 485 | // LC0..LC17 | ||
| 486 | {189,255}, {179,135}, {170,149}, {163,169}, {157,193}, {153,220}, {172,252}, {169,255}, {165,255}, | ||
| 487 | {128,26}, {128,60}, {128,94}, {128,128}, {128,162}, {128,196}, {255,255}, {148,255}, {161,255}, | ||
| 488 | // LD0..LD17 | ||
| 489 | {0,9}, {0,43}, {0,77}, {0,111}, {0,145}, {0,201}, {224,181}, {230,217}, {235,255}, | ||
| 490 | {189,128}, {200,131}, {210,141}, {218,159}, {255,255}, {207,238}, {211,255}, {218,255}, {255,255} | ||
| 491 | }; | ||
| 492 | #elif defined(RGB_BACKLIGHT_ZEAL60) || defined(RGB_BACKLIGHT_M60_A) | ||
| 493 | const Point g_map_led_to_point[BACKLIGHT_LED_COUNT] PROGMEM = { | ||
| 494 | // LA0..LA17 | ||
| 495 | {120,16}, {104,16}, {88,16}, {72,16}, {56,16}, {40,16}, {24,16}, {4,16}, {4,32}, | ||
| 496 | {128,0}, {112,0}, {96,0}, {80,0}, {64,0}, {48,0}, {32,0}, {16,0}, {0,0}, | ||
| 497 | // LB0..LB17 | ||
| 498 | {144,0}, {160,0}, {176,0}, {192,0}, {216,0}, {224,0}, {255,255}, {255,255}, {255,255}, | ||
| 499 | {136,16}, {152,16}, {168,16}, {184,16}, {200,16}, {220,16}, {255,255}, {255,255}, {255,255}, | ||
| 500 | // LC0..LC17 | ||
| 501 | {102,64}, {100,48}, {84,48}, {68,48}, {52,48}, {36,48}, {60,64}, {43,64}, {23,64}, | ||
| 502 | {108,32}, {92,32}, {76,32}, {60,32}, {44,32}, {28,32}, {20,48}, {2,48}, {3,64}, | ||
| 503 | // LD0..LD17 | ||
| 504 | {124,32}, {140,32}, {156,32}, {172,32}, {188,32}, {214,32}, {180,48}, {210,48}, {224,48}, | ||
| 505 | {116,48}, {132,48}, {148,48}, {164,48}, {144,64}, {161,64}, {181,64}, {201,64}, {221,64} | ||
| 506 | }; | ||
| 507 | const Point g_map_led_to_point_polar[BACKLIGHT_LED_COUNT] PROGMEM = { | ||
| 508 | // LA0..LA17 | ||
| 509 | {58,129}, {70,129}, {80,139}, {89,157}, {96,181}, {101,208}, {105,238}, {109,255}, {128,247}, {58,255}, | ||
| 510 | {64,255}, {70,255}, {75,255}, {80,255}, {85,255}, {89,255}, {93,255}, {96,255}, | ||
| 511 | // LB0..LB17 | ||
| 512 | {53,255}, {48,255}, {43,255}, {39,255}, {34,255}, {32,255}, {255,255}, {255,255}, {255,255}, | ||
| 513 | {48,139}, {39,157}, {32,181}, {27,208}, {23,238}, {19,255}, {255,255}, {255,255}, {255,255}, | ||
| 514 | // LC0..LC17 | ||
| 515 | {188,255}, {183,131}, {173,143}, {165,163}, {159,188}, {154,216}, {172,252}, {170,255}, {165,255}, | ||
| 516 | {128,9}, {128,46}, {128,82}, {128,119}, {128,155}, {128,192}, {150,244}, {147,255}, {161,255}, | ||
| 517 | // LD0..LD17 | ||
| 518 | {0,27}, {0,64}, {0,101}, {0,137}, {0,174}, {255,233}, {228,201}, {235,255}, {237,255}, | ||
| 519 | {195,128}, {206,136}, {215,152}, {222,175}, {205,234}, {209,255}, {214,255}, {219,255}, {223,255} | ||
| 520 | }; | ||
| 521 | #elif defined(RGB_BACKLIGHT_HS60) && defined(HS60_ANSI) | ||
| 522 | const Point g_map_led_to_point[BACKLIGHT_LED_COUNT] PROGMEM = { | ||
| 523 | // LA1..LA47 | ||
| 524 | {0,0}, {4,16}, {6,32}, {10,48}, {16,0}, {24,16}, {28,32}, {36,48}, {32,0}, {40,16}, {44,32}, {52,48}, | ||
| 525 | {48,0}, {56,16}, {60,32}, {68,48}, {64,0}, {72,16}, {76,32}, {84,48}, {80,0}, {88,16}, {92,32}, {100,48}, | ||
| 526 | {96,0}, {104,16}, {108,32}, {116,48}, {112,0}, {120,16}, {124,32}, {132,48}, {128,0}, {136,16}, {140,32}, | ||
| 527 | {148,48}, {144,0}, {152,16}, {156,32}, {164,48}, {160,0}, {168,16}, {172,32}, {180,48}, {176,0}, {184, 16}, {188,32}, | ||
| 528 | {255,255},// LA48 does not exist, dummy | ||
| 529 | // LA49..LA50 | ||
| 530 | {192,0}, {200,16}, | ||
| 531 | {255,255},// LA51 does not exit, dummy | ||
| 532 | // LA52..LA60 | ||
| 533 | {210,48}, {216,0}, {220,16}, {214,32}, {222,64}, {2,64}, {22,64}, {42,64}, {102,64}, | ||
| 534 | {255,255},// LA61 does not exit, dummy | ||
| 535 | {162,64}, {182,64}, {202,64} | ||
| 536 | }; | ||
| 537 | const Point g_map_led_to_point_polar[BACKLIGHT_LED_COUNT] PROGMEM = { | ||
| 538 | // LA1..LA47 | ||
| 539 | {96,255}, {109,255}, {128,242}, {148,255}, {93,255}, {105,238}, {128,192}, {154,216}, {89,255}, {101,208}, {128,155}, {159,188}, | ||
| 540 | {85,255}, {96,181}, {128,119}, {165,163}, {81,255}, {89,157}, {128,82}, {173,143}, {75,255}, {81,139}, {128,46}, {183,131}, | ||
| 541 | {70,255}, {70,129}, {129,9}, {195,128}, {64,255}, {58,129}, {255,27}, {206,136}, {58,255}, {47,139}, {255,64}, {215,152}, | ||
| 542 | {53,255}, {39,157}, {255,101}, {222,175}, {47,255}, {32,181}, {255,137}, {228,201}, {43,255}, {27,208}, {255, 174}, | ||
| 543 | {255,255},// LA48 does not exist, dummy | ||
| 544 | // LA49..LA50 | ||
| 545 | {39,255}, {23,238}, | ||
| 546 | {255,255},// LA51 does not exit, dummy | ||
| 547 | // LA52..LA60 | ||
| 548 | {235,255}, {33,255}, {19,255}, {255,233}, {224,255}, {160,255}, {164,255}, {169,255}, {188,255}, | ||
| 549 | {255,255},// LA61 does not exit, dummy | ||
| 550 | {209,255}, {215,255}, {220,255} | ||
| 551 | }; | ||
| 552 | #elif defined(RGB_BACKLIGHT_HS60) && defined(HS60_HHKB) | ||
| 553 | const Point g_map_led_to_point[BACKLIGHT_LED_COUNT] PROGMEM = { | ||
| 554 | // LA1..LA60 | ||
| 555 | {0,0}, {4,16}, {6,32}, {10,48}, {16,0}, {24,16}, {28,32}, {36,48}, {32,0}, {40,16}, {44,32}, {52,48}, | ||
| 556 | {48,0}, {56,16}, {60,32}, {68,48}, {64,0}, {72,16}, {76,32}, {84,48}, {80,0}, {88,16}, {92,32}, {100,48}, | ||
| 557 | {96,0}, {104,16}, {108,32}, {116,48}, {112,0}, {120,16}, {124,32}, {132,48}, {128,0}, {136,16}, {140,32}, | ||
| 558 | {148,48}, {144,0}, {152,16}, {156,32}, {164,48}, {160,0}, {168,16}, {172,32}, {180,48}, {176,0}, {184, 16}, {188,32}, | ||
| 559 | {224,0}, {192,0}, {200,16}, {202,48}, {224,48}, {208,0}, {220,16}, {214,32}, {220,64}, {4,64}, {24,64}, {44,64}, {112,64}, | ||
| 560 | {255,255}, {255,255}, // LA61..LA62 does not exit, dummy | ||
| 561 | // LA63..LA64 | ||
| 562 | {180,64}, {200,64} | ||
| 563 | }; | ||
| 564 | const Point g_map_led_to_point_polar[BACKLIGHT_LED_COUNT] PROGMEM = { | ||
| 565 | // LA1..LA60 | ||
| 566 | {96,255}, {109,255}, {128,242}, {148,255}, {93,255}, {105,238}, {128,192}, {154,216}, {89,255}, {101,208}, {128,155}, {159,188}, | ||
| 567 | {85,255}, {96,181}, {128,119}, {165,163}, {81,255}, {89,157}, {128,82}, {173,143}, {75,255}, {81,139}, {128,46}, {183,131}, | ||
| 568 | {70,255}, {70,129}, {129,9}, {195,128}, {64,255}, {58,129}, {255,27}, {206,136}, {58,255}, {47,139}, {255,64}, {215,152}, | ||
| 569 | {53,255}, {39,157}, {255,101}, {222,175}, {47,255}, {32,181}, {255,137}, {228,201}, {43,255}, {27,208}, {255, 174}, {32,255}, | ||
| 570 | {39,255}, {23,238}, {233,242}, {237,255}, {35,255}, {19,255}, {255,233}, {223,255}, {161,255}, {165,255}, {170,255}, {192,255}, | ||
| 571 | {255,255}, {255,255}, // LA61..LA62 does not exit, dummy | ||
| 572 | // LA63..LA64 | ||
| 573 | {214,255}, {219,255} | ||
| 574 | }; | ||
| 575 | #elif defined(RGB_BACKLIGHT_HS60) //HS60_ISO | ||
| 576 | const Point g_map_led_to_point[BACKLIGHT_LED_COUNT] PROGMEM = { | ||
| 577 | // LA1..LA50 | ||
| 578 | {0,0}, {4,16}, {6,32}, {2,48}, {16,0}, {24,16}, {28,32}, {36,48}, {32,0}, {40,16}, {44,32}, {52,48}, {48,0}, | ||
| 579 | {56,16}, {60,32}, {68,48}, {64,0}, {72,16}, {76,32}, {84,48}, {80,0}, {88,16}, {92,32}, {100,48}, {96,0}, {104,16}, | ||
| 580 | {108,32}, {116,48}, {112,0}, {120,16}, {124,32}, {132,48}, {128,0}, {136,16}, {140,32}, {148,48}, {144,0}, {152,16}, | ||
| 581 | {156,32}, {164,48}, {160,0}, {168,16}, {172,32}, {180,48}, {176,0}, {184, 16}, {188,32}, {20,48}, {192,0}, {200,16}, | ||
| 582 | {255,255},// LA51 does not exit, dummy | ||
| 583 | // LA52..LA60 | ||
| 584 | {210,48}, {216,0}, {220,16}, {222,24}, {222,64}, {2,64}, {22,64}, {42,64}, {102,64}, | ||
| 585 | {255,255},// LA61 does not exit, dummy | ||
| 586 | {162,64}, {182,64}, {202,64} | ||
| 587 | }; | ||
| 588 | const Point g_map_led_to_point_polar[BACKLIGHT_LED_COUNT] PROGMEM = { | ||
| 589 | // LA1..LA50 | ||
| 590 | {96,255}, {109,255}, {128,242}, {147,255}, {93,255}, {105,238}, {128,192}, {154,216}, {89,255}, {101,208}, {128,155}, {159,188}, {85,255}, | ||
| 591 | {96,181}, {128,119}, {165,163}, {81,255}, {89,157}, {128,82}, {173,143}, {75,255}, {81,139}, {128,46}, {183,131}, {70,255}, {70,129}, | ||
| 592 | {129,9}, {195,128}, {64,255}, {58,129}, {255,27}, {206,136}, {58,255}, {47,139}, {255,64}, {215,152}, {53,255}, {39,157}, {255,101}, | ||
| 593 | {222,175}, {47,255}, {32,181}, {255,137}, {228,201}, {43,255}, {27,208}, {255, 174}, {150,246}, {39,255}, {23,238}, | ||
| 594 | {255,255},// LA51 does not exit, dummy | ||
| 595 | // LA52..LA60 | ||
| 596 | {235,255}, {33,255}, {19,255}, {10,255}, {224,255}, {160,255}, {164,255}, {169,255}, {188,255}, | ||
| 597 | {255,255},// LA61 does not exit, dummy | ||
| 598 | {209,255}, {215,255}, {220,255} | ||
| 599 | }; | ||
| 600 | #elif defined(RGB_BACKLIGHT_NK65) | ||
| 601 | const Point g_map_led_to_point[BACKLIGHT_LED_COUNT] PROGMEM = { | ||
| 602 | // LA1..LA60 | ||
| 603 | {0,0}, {4,16}, {6,32}, {10,48}, {16,0}, {24,16}, {28,32}, {36,48}, {32,0}, {40,16}, {44,32}, {52,48}, | ||
| 604 | {48,0}, {56,16}, {60,32}, {68,48}, {64,0}, {72,16}, {76,32}, {84,48}, {80,0}, {88,16}, {92,32}, {100,48}, | ||
| 605 | {96,0}, {104,16}, {108,32}, {116,48}, {112,0}, {120,16}, {124,32}, {132,48}, {128,0}, {136,16}, {140,32}, | ||
| 606 | {148,48}, {144,0}, {152,16}, {156,32}, {164,48}, {160,0}, {168,16}, {172,32}, {180,48}, {176,0}, {184, 16}, {188,32}, | ||
| 607 | {160,64}, {192,0}, {200,16}, {210,48}, {224,48}, {216,0}, {220,16}, {214,32}, {224,64}, {2,64}, {22,64}, {42,64}, {102,64}, | ||
| 608 | {255,255},// LA61 does not exit, dummy | ||
| 609 | //LA62..LB5 | ||
| 610 | {176,64}, {192,64}, {208,64}, {240,0}, {240,16}, {240,48}, {240,64}, {240,32} | ||
| 611 | }; | ||
| 612 | const Point g_map_led_to_point_polar[BACKLIGHT_LED_COUNT] PROGMEM = { | ||
| 613 | // LA1..LA60 | ||
| 614 | {96,255}, {109,255}, {128,242}, {148,255}, {93,255}, {105,238}, {128,192}, {154,216}, {89,255}, {101,208}, {128,155}, {159,188}, | ||
| 615 | {85,255}, {96,181}, {128,119}, {165,163}, {81,255}, {89,157}, {128,82}, {173,143}, {75,255}, {81,139}, {128,46}, {183,131}, | ||
| 616 | {70,255}, {70,129}, {129,9}, {195,128}, {64,255}, {58,129}, {255,27}, {206,136}, {58,255}, {47,139}, {255,64}, {215,152}, | ||
| 617 | {53,255}, {39,157}, {255,101}, {222,175}, {47,255}, {32,181}, {255,137}, {228,201}, {43,255}, {27,208}, {255, 174}, | ||
| 618 | {208,255}, {39,255}, {23,238}, {235,255}, {235,255}, {33,255}, {19,255}, {255,233}, {224,255}, {160,255}, {164,255}, {169,255}, {188,255}, | ||
| 619 | {255,255},// LA61 does not exit, dummy | ||
| 620 | //LA62..LB5 | ||
| 621 | {221,255}, {225,255}, {229,255}, {22,255}, {12,255}, {244,255}, {234,255}, {255,255}, | ||
| 622 | }; | ||
| 623 | #elif defined(RGB_BACKLIGHT_M6_B) | ||
| 624 | // M6-B is really simple: | ||
| 625 | // 0 3 5 | ||
| 626 | // 1 2 4 | ||
| 627 | const Point g_map_led_to_point[BACKLIGHT_LED_COUNT] PROGMEM = { | ||
| 628 | {0,0}, {0,16}, {16,16}, {16,0}, {32,16}, {32,0} | ||
| 629 | }; | ||
| 630 | const Point g_map_led_to_point_polar[BACKLIGHT_LED_COUNT] PROGMEM = { | ||
| 631 | {160,255}, {96,255}, {77,255}, {179,255}, {51,255}, {205,255} | ||
| 632 | }; | ||
| 633 | #endif | ||
| 634 | |||
| 635 | // This may seem counter-intuitive, but it's quite flexible. | ||
| 636 | // For each LED, get it's position to decide what color to make it. | ||
| 637 | // This solves the issue of LEDs (and switches) not aligning to a grid, | ||
| 638 | // or having a large "bitmap" and sampling them. | ||
| 639 | void map_led_to_point( uint8_t index, Point *point ) | ||
| 640 | { | ||
| 641 | // Slightly messy way to get Point structs out of progmem. | ||
| 642 | uint8_t *addr = (uint8_t*)&g_map_led_to_point[index]; | ||
| 643 | point->x = pgm_read_byte(addr); | ||
| 644 | point->y = pgm_read_byte(addr+1); | ||
| 645 | |||
| 646 | #if defined(RGB_BACKLIGHT_M6_B) || defined(RGB_BACKLIGHT_HS60) || defined(RGB_BACKLIGHT_NK65) | ||
| 647 | return; | ||
| 648 | #endif | ||
| 649 | |||
| 650 | switch (index) | ||
| 651 | { | ||
| 652 | case 18+4: // LB4A | ||
| 653 | if ( g_config.use_split_backspace ) | ||
| 654 | point->x -= 8; | ||
| 655 | break; | ||
| 656 | #if defined(RGB_BACKLIGHT_ZEAL60) | ||
| 657 | case 18+14: // LB14A | ||
| 658 | if ( g_config.use_iso_enter ) | ||
| 659 | point->y += 8; // extremely pedantic | ||
| 660 | break; | ||
| 661 | case 54+5: // LD5A | ||
| 662 | if ( !g_config.use_iso_enter ) | ||
| 663 | point->x -= 10; | ||
| 664 | break; | ||
| 665 | case 36+16: // LC16A | ||
| 666 | if ( !g_config.use_split_left_shift ) | ||
| 667 | point->x += 8; | ||
| 668 | break; | ||
| 669 | #endif | ||
| 670 | #if defined(RGB_BACKLIGHT_ZEAL60) || defined(RGB_BACKLIGHT_M60_A) | ||
| 671 | case 36+0: // LC0A | ||
| 672 | if ( g_config.use_7u_spacebar ) | ||
| 673 | point->x += 10; | ||
| 674 | break; | ||
| 675 | case 36+6: // LC6A | ||
| 676 | if ( g_config.use_7u_spacebar ) | ||
| 677 | point->x += 4; | ||
| 678 | break; | ||
| 679 | case 54+7: // LD7A | ||
| 680 | if ( !g_config.use_split_right_shift ) | ||
| 681 | point->x -= 8; | ||
| 682 | break; | ||
| 683 | #endif | ||
| 684 | } | ||
| 685 | } | ||
| 686 | |||
| 687 | void map_led_to_point_polar( uint8_t index, Point *point ) | ||
| 688 | { | ||
| 689 | // Slightly messy way to get Point structs out of progmem. | ||
| 690 | uint8_t *addr = (uint8_t*)&g_map_led_to_point_polar[index]; | ||
| 691 | point->x = pgm_read_byte(addr); | ||
| 692 | point->y = pgm_read_byte(addr+1); | ||
| 693 | } | ||
| 694 | |||
| 695 | // | ||
| 696 | // Maps switch matrix coordinate (row,col) to LED index | ||
| 697 | // | ||
| 698 | |||
| 699 | |||
| 700 | #if defined(RGB_BACKLIGHT_ZEAL65) | ||
| 701 | // Note: Left spacebar stab is at 4,2 (LC7) | ||
| 702 | // Right spacebar stab is at 4,9 (D14) | ||
| 703 | // | ||
| 704 | // A17, A16, A15, A14, A13, A12, A11, A10, A9, B0, B1, B2, B3, B4, B6 | ||
| 705 | // A7, A6, A5, A4, A3, A2, A1, A0, B9, B10, B11, B12, B13, B14, B7 | ||
| 706 | // A8, C14, C13, C12, C11, C10, C9, D0, D1, D2, D3, D4, D5, B5, B8 | ||
| 707 | // C16, C15, C5, C4, C3, C2, C1, D9, D10, D11, D12, D6, D7, D8, B15 | ||
| 708 | // C17, C8, C7, ---, ---, ---, ---, C0, ---, D14, D15, D16, D17, B17, B16 | ||
| 709 | const uint8_t g_map_row_column_to_led[MATRIX_ROWS][MATRIX_COLS] PROGMEM = { | ||
| 710 | { 0+17, 0+16, 0+15, 0+14, 0+13, 0+12, 0+11, 0+10, 0+9, 18+0, 18+1, 18+2, 18+3, 18+4, 18+6 }, | ||
| 711 | { 0+7, 0+6, 0+5, 0+4, 0+3, 0+2, 0+1, 0+0, 18+9, 18+10, 18+11, 18+12, 18+13, 18+14, 18+7 }, | ||
| 712 | { 0+8, 36+14, 36+13, 36+12, 36+11, 36+10, 36+9, 54+0, 54+1, 54+2, 54+3, 54+4, 54+5, 18+5, 18+8 }, | ||
| 713 | { 36+16, 36+15, 36+5, 36+4, 36+3, 36+2, 36+1, 54+9, 54+10, 54+11, 54+12, 54+6, 54+7, 54+8, 18+15 }, | ||
| 714 | { 36+17, 36+8, 36+7, 255, 255, 255, 255, 36+0, 255, 54+14, 54+15, 54+16, 54+17, 18+17, 18+16 } | ||
| 715 | }; | ||
| 716 | #elif defined(RGB_BACKLIGHT_KOYU) | ||
| 717 | // Note: Left spacebar stab is at 4,4 (LC6) | ||
| 718 | // Right spacebar stab is at 4,10 (D14) | ||
| 719 | // | ||
| 720 | // A17, A16, A15, A14, A13, A12, A11, A10, A9, B0, B1, B2, B3, B4, B6 | ||
| 721 | // A7, A6, A5, A4, A3, A2, A1, A0, B9, B10, B11, B12, B13, B14, B7 | ||
| 722 | // A8, C14, C13, C12, C11, C10, C9, D0, D1, D2, D3, D4, D5, B5, B8 | ||
| 723 | // C16, C15, C5, C4, C3, C2, C1, D9, D10, D11, D12, D6, D7, D8, B15 | ||
| 724 | // C17, C8, C7, C6, ---, ---, ---, C0, ---, ---, D14, D15, D16, B17, B16 | ||
| 725 | const uint8_t g_map_row_column_to_led[MATRIX_ROWS][MATRIX_COLS] PROGMEM = { | ||
| 726 | { 0+17, 0+16, 0+15, 0+14, 0+13, 0+12, 0+11, 0+10, 0+9, 18+0, 18+1, 18+2, 18+3, 18+4, 18+6 }, | ||
| 727 | { 0+7, 0+6, 0+5, 0+4, 0+3, 0+2, 0+1, 0+0, 18+9, 18+10, 18+11, 18+12, 18+13, 18+14, 18+7 }, | ||
| 728 | { 0+8, 36+14, 36+13, 36+12, 36+11, 36+10, 36+9, 54+0, 54+1, 54+2, 54+3, 54+4, 54+5, 18+5, 18+8 }, | ||
| 729 | { 36+16, 36+15, 36+5, 36+4, 36+3, 36+2, 36+1, 54+9, 54+10, 54+11, 54+12, 54+6, 54+7, 54+8, 18+15 }, | ||
| 730 | { 36+17, 36+8, 36+7, 36+6, 255, 255, 255, 36+0, 255, 255, 54+14, 54+15, 54+16, 18+17, 18+16 } | ||
| 731 | }; | ||
| 732 | #elif defined(RGB_BACKLIGHT_ZEAL60) || defined(RGB_BACKLIGHT_M60_A) | ||
| 733 | // Note: Left spacebar stab is at 4,3 (LC6) | ||
| 734 | // Right spacebar stab is at 4,9 (LD13) or 4,10 (LD14) | ||
| 735 | // | ||
| 736 | // A17, A16, A15, A14, A13, A12, A11, A10, A9, B0, B1, B2, B3, B4, | ||
| 737 | // A7, A6, A5, A4, A3, A2, A1, A0, B9, B10, B11, B12, B13, B14, | ||
| 738 | // A8, C14, C13, C12, C11, C10, C9, D0, D1, D2, D3, D4, D5, B5, | ||
| 739 | // C16, C15, C5, C4, C3, C2, C1, D9, D10, D11, D12, D6, D7, D8, | ||
| 740 | // C17, C8, C7, C6, ---, ---, ---, C0, ---, D13, D14, D15, D16, D17, | ||
| 741 | const uint8_t g_map_row_column_to_led[MATRIX_ROWS][MATRIX_COLS] PROGMEM = { | ||
| 742 | { 0+17, 0+16, 0+15, 0+14, 0+13, 0+12, 0+11, 0+10, 0+9, 18+0, 18+1, 18+2, 18+3, 18+4 }, | ||
| 743 | { 0+7, 0+6, 0+5, 0+4, 0+3, 0+2, 0+1, 0+0, 18+9, 18+10, 18+11, 18+12, 18+13, 18+14 }, | ||
| 744 | { 0+8, 36+14, 36+13, 36+12, 36+11, 36+10, 36+9, 54+0, 54+1, 54+2, 54+3, 54+4, 54+5, 18+5 }, | ||
| 745 | { 36+16, 36+15, 36+5, 36+4, 36+3, 36+2, 36+1, 54+9, 54+10, 54+11, 54+12, 54+6, 54+7, 54+8 }, | ||
| 746 | { 36+17, 36+8, 36+7, 36+6, 255, 255, 255, 36+0, 255, 54+13, 54+14, 54+15, 54+16, 54+17 } | ||
| 747 | }; | ||
| 748 | #elif defined(RGB_BACKLIGHT_HS60) && defined(HS60_ANSI) | ||
| 749 | // | ||
| 750 | // LA1, LA5, LA9, LA13, LA17, LA21, LA25, LA29, LA33, LA37, LA41, LA45, LA49, LA53, | ||
| 751 | // LA2, LA6, LA10, LA14, LA18, LA22, LA26, LA30, LA34, LA38, LA42, LA46, LA50, ---, | ||
| 752 | // LA3, LA7, LA11, LA15, LA19, LA23, LA27, LA31, LA35, LA39, LA43, LA47, LA54, LA55, | ||
| 753 | // LA4, ---, LA8, LA12, LA16, LA20, LA24, LA28, LA32, LA36, LA40, LA44, ---, LA52, | ||
| 754 | // LA57, LA58, LA59, ---, ---, ---, LA60, ---, ---, ---, LA62, LA63, LA64, LA56 | ||
| 755 | const uint8_t g_map_row_column_to_led[MATRIX_ROWS][MATRIX_COLS] PROGMEM = { | ||
| 756 | { 1-1, 5-1, 9-1, 13-1, 17-1, 21-1, 25-1, 29-1, 33-1, 37-1, 41-1, 45-1, 49-1, 53-1 }, | ||
| 757 | { 2-1, 6-1, 10-1, 14-1, 18-1, 22-1, 26-1, 30-1, 34-1, 38-1, 42-1, 46-1, 50-1, 255 }, | ||
| 758 | { 3-1, 7-1, 11-1, 15-1, 19-1, 23-1, 27-1, 31-1, 35-1, 39-1, 43-1, 47-1, 54-1, 55-1 }, | ||
| 759 | { 4-1, 255, 8-1, 12-1, 16-1, 20-1, 24-1, 28-1, 32-1, 36-1, 40-1, 44-1, 255, 52-1 }, | ||
| 760 | { 57-1, 58-1, 59-1, 255, 255, 255, 60-1, 255, 255, 255, 62-1, 63-1, 64-1, 56-1 } | ||
| 761 | }; | ||
| 762 | #elif defined(RGB_BACKLIGHT_HS60) && defined(HS60_HHKB) | ||
| 763 | // | ||
| 764 | // LA1, LA5, LA9, LA13, LA17, LA21, LA25, LA29, LA33, LA37, LA41, LA45, LA49, LA53, | ||
| 765 | // LA2, LA6, LA10, LA14, LA18, LA22, LA26, LA30, LA34, LA38, LA42, LA46, LA50, LA48, | ||
| 766 | // LA3, LA7, LA11, LA15, LA19, LA23, LA27, LA31, LA35, LA39, LA43, LA47, LA54, LA55, | ||
| 767 | // LA4, ---, LA8, LA12, LA16, LA20, LA24, LA28, LA32, LA36, LA40, LA44, LA51, LA52, | ||
| 768 | // LA57, LA58, LA59, ---, ---, ---, LA60, ---, ---, ---, ---, LA63, LA64, LA56 | ||
| 769 | const uint8_t g_map_row_column_to_led[MATRIX_ROWS][MATRIX_COLS] PROGMEM = { | ||
| 770 | { 1-1, 5-1, 9-1, 13-1, 17-1, 21-1, 25-1, 29-1, 33-1, 37-1, 41-1, 45-1, 49-1, 53-1 }, | ||
| 771 | { 2-1, 6-1, 10-1, 14-1, 18-1, 22-1, 26-1, 30-1, 34-1, 38-1, 42-1, 46-1, 50-1, 48-1 }, | ||
| 772 | { 3-1, 7-1, 11-1, 15-1, 19-1, 23-1, 27-1, 31-1, 35-1, 39-1, 43-1, 47-1, 54-1, 55-1 }, | ||
| 773 | { 4-1, 255, 8-1, 12-1, 16-1, 20-1, 24-1, 28-1, 32-1, 36-1, 40-1, 44-1, 51-1, 52-1 }, | ||
| 774 | { 57-1, 58-1, 59-1, 255, 255, 255, 60-1, 255, 255, 255, 255, 63-1, 64-1, 56-1 } | ||
| 775 | }; | ||
| 776 | #elif defined(RGB_BACKLIGHT_HS60) //HS60_ISO | ||
| 777 | // | ||
| 778 | // LA1, LA5, LA9, LA13, LA17, LA21, LA25, LA29, LA33, LA37, LA41, LA45, LA49, LA53, | ||
| 779 | // LA2, LA6, LA10, LA14, LA18, LA22, LA26, LA30, LA34, LA38, LA42, LA46, LA50, ---, | ||
| 780 | // LA3, LA7, LA11, LA15, LA19, LA23, LA27, LA31, LA35, LA39, LA43, LA47, LA54, LA55, | ||
| 781 | // LA4, LA48, LA8, LA12, LA16, LA20, LA24, LA28, LA32, LA36, LA40, LA44, ---, LA52, | ||
| 782 | // LA57, LA58, LA59, ---, ---, ---, LA60, ---, ---, ---, LA62, LA63, LA64, LA56 | ||
| 783 | const uint8_t g_map_row_column_to_led[MATRIX_ROWS][MATRIX_COLS] PROGMEM = { | ||
| 784 | { 1-1, 5-1, 9-1, 13-1, 17-1, 21-1, 25-1, 29-1, 33-1, 37-1, 41-1, 45-1, 49-1, 53-1 }, | ||
| 785 | { 2-1, 6-1, 10-1, 14-1, 18-1, 22-1, 26-1, 30-1, 34-1, 38-1, 42-1, 46-1, 50-1, 255 }, | ||
| 786 | { 3-1, 7-1, 11-1, 15-1, 19-1, 23-1, 27-1, 31-1, 35-1, 39-1, 43-1, 47-1, 54-1, 55-1 }, | ||
| 787 | { 4-1, 48-1, 8-1, 12-1, 16-1, 20-1, 24-1, 28-1, 32-1, 36-1, 40-1, 44-1, 255, 52-1 }, | ||
| 788 | { 57-1, 58-1, 59-1, 255, 255, 255, 60-1, 255, 255, 255, 62-1, 63-1, 64-1, 56-1 } | ||
| 789 | }; | ||
| 790 | #elif defined(RGB_BACKLIGHT_NK65) | ||
| 791 | // | ||
| 792 | // LA1, LA5, LA9, LA13, LA17, LA21, LA25, LA29, LA33, LA37, LA41, LA45, LA49, LA53, LB1, | ||
| 793 | // LA2, LA6, LA10, LA14, LA18, LA22, LA26, LA30, LA34, LA38, LA42, LA46, LA50, ---, LB2, | ||
| 794 | // LA3, LA7, LA11, LA15, LA19, LA23, LA27, LA31, LA35, LA39, LA43, LA47, LA54, LA55, LB5, | ||
| 795 | // LA4, ---, LA8, LA12, LA16, LA20, LA24, LA28, LA32, LA36, LA40, LA44, LA51, LA52, LB3, | ||
| 796 | // LA57, LA58, LA59, ---, ---, ---, LA60, ---, ---, LA48, LA62, LA63, LA64, LA56, LB4 | ||
| 797 | const uint8_t g_map_row_column_to_led[MATRIX_ROWS][MATRIX_COLS] PROGMEM = { | ||
| 798 | { 1-1, 5-1, 9-1, 13-1, 17-1, 21-1, 25-1, 29-1, 33-1, 37-1, 41-1, 45-1, 49-1, 53-1, 1+64-1 }, | ||
| 799 | { 2-1, 6-1, 10-1, 14-1, 18-1, 22-1, 26-1, 30-1, 34-1, 38-1, 42-1, 46-1, 50-1, 255, 2+64-1 }, | ||
| 800 | { 3-1, 7-1, 11-1, 15-1, 19-1, 23-1, 27-1, 31-1, 35-1, 39-1, 43-1, 47-1, 54-1, 55-1, 5+64-1 }, | ||
| 801 | { 4-1, 255, 8-1, 12-1, 16-1, 20-1, 24-1, 28-1, 32-1, 36-1, 40-1, 44-1, 51-1, 52-1, 3+64-1 }, | ||
| 802 | { 57-1, 58-1, 59-1, 255, 255, 255, 60-1, 255, 255, 48-1, 62-1, 63-1, 64-1, 56-1, 4+64-1 } | ||
| 803 | }; | ||
| 804 | #elif defined(RGB_BACKLIGHT_M6_B) | ||
| 805 | // M6-B is really simple: | ||
| 806 | // 0 3 5 | ||
| 807 | // 1 2 4 | ||
| 808 | const uint8_t g_map_row_column_to_led[MATRIX_ROWS][MATRIX_COLS] PROGMEM = { | ||
| 809 | { 0, 3, 5, 1, 2, 4 } | ||
| 810 | }; | ||
| 811 | #endif | ||
| 812 | |||
| 813 | void map_row_column_to_led( uint8_t row, uint8_t column, uint8_t *led ) | ||
| 814 | { | ||
| 815 | *led = 255; | ||
| 816 | if ( row < MATRIX_ROWS && column < MATRIX_COLS ) | ||
| 817 | { | ||
| 818 | *led = pgm_read_byte(&g_map_row_column_to_led[row][column]); | ||
| 819 | } | ||
| 820 | } | ||
| 821 | |||
| 822 | void backlight_update_pwm_buffers(void) | ||
| 823 | { | ||
| 824 | #if defined(RGB_BACKLIGHT_M6_B) | ||
| 825 | IS31FL3218_update_pwm_buffers(); | ||
| 826 | #elif defined(RGB_BACKLIGHT_HS60) | ||
| 827 | IS31FL3733_update_pwm_buffers( ISSI_ADDR_1, 0 ); | ||
| 828 | IS31FL3733_update_led_control_registers( ISSI_ADDR_1, 0 ); | ||
| 829 | #elif defined(RGB_BACKLIGHT_NK65) | ||
| 830 | IS31FL3733_update_pwm_buffers( ISSI_ADDR_1, 0 ); | ||
| 831 | IS31FL3733_update_pwm_buffers( ISSI_ADDR_2, 1 ); | ||
| 832 | IS31FL3733_update_led_control_registers( ISSI_ADDR_1, 0 ); | ||
| 833 | IS31FL3733_update_led_control_registers( ISSI_ADDR_2, 1 ); | ||
| 834 | #else | ||
| 835 | IS31FL3731_update_pwm_buffers( ISSI_ADDR_1, ISSI_ADDR_2 ); | ||
| 836 | IS31FL3731_update_led_control_registers( ISSI_ADDR_1, ISSI_ADDR_2 ); | ||
| 837 | #endif | ||
| 838 | } | ||
| 839 | |||
| 840 | void backlight_set_color( int index, uint8_t red, uint8_t green, uint8_t blue ) | ||
| 841 | { | ||
| 842 | #if defined(RGB_BACKLIGHT_M6_B) | ||
| 843 | IS31FL3218_set_color( index, red, green, blue ); | ||
| 844 | #elif defined(RGB_BACKLIGHT_HS60) || defined(RGB_BACKLIGHT_NK65) | ||
| 845 | IS31FL3733_set_color( index, red, green, blue ); | ||
| 846 | #else | ||
| 847 | IS31FL3731_set_color( index, red, green, blue ); | ||
| 848 | #endif | ||
| 849 | } | ||
| 850 | |||
| 851 | void backlight_set_color_all( uint8_t red, uint8_t green, uint8_t blue ) | ||
| 852 | { | ||
| 853 | #if defined(RGB_BACKLIGHT_M6_B) | ||
| 854 | IS31FL3218_set_color_all( red, green, blue ); | ||
| 855 | #elif defined(RGB_BACKLIGHT_HS60) || defined(RGB_BACKLIGHT_NK65) | ||
| 856 | IS31FL3733_set_color_all( red, green, blue ); | ||
| 857 | #else | ||
| 858 | IS31FL3731_set_color_all( red, green, blue ); | ||
| 859 | #endif | ||
| 860 | } | ||
| 861 | |||
| 862 | void backlight_set_key_hit(uint8_t row, uint8_t column) | ||
| 863 | { | ||
| 864 | uint8_t led; | ||
| 865 | map_row_column_to_led(row,column,&led); | ||
| 866 | g_key_hit[led] = 0; | ||
| 867 | |||
| 868 | g_any_key_hit = 0; | ||
| 869 | } | ||
| 870 | |||
| 871 | #if !defined(RGB_BACKLIGHT_HS60) && !defined(RGB_BACKLIGHT_NK65) | ||
| 872 | // This is (F_CPU/1024) / 20 Hz | ||
| 873 | // = 15625 Hz / 20 Hz | ||
| 874 | // = 781 | ||
| 875 | #define TIMER3_TOP 781 | ||
| 876 | |||
| 877 | void backlight_timer_init(void) | ||
| 878 | { | ||
| 879 | static uint8_t backlight_timer_is_init = 0; | ||
| 880 | if ( backlight_timer_is_init ) | ||
| 881 | { | ||
| 882 | return; | ||
| 883 | } | ||
| 884 | backlight_timer_is_init = 1; | ||
| 885 | |||
| 886 | // Timer 3 setup | ||
| 887 | TCCR3B = _BV(WGM32) | // CTC mode OCR3A as TOP | ||
| 888 | _BV(CS32) | _BV(CS30); // prescale by /1024 | ||
| 889 | // Set TOP value | ||
| 890 | uint8_t sreg = SREG; | ||
| 891 | cli(); | ||
| 892 | |||
| 893 | OCR3AH = (TIMER3_TOP >> 8) & 0xff; | ||
| 894 | OCR3AL = TIMER3_TOP & 0xff; | ||
| 895 | SREG = sreg; | ||
| 896 | } | ||
| 897 | |||
| 898 | void backlight_timer_enable(void) | ||
| 899 | { | ||
| 900 | TIMSK3 |= _BV(OCIE3A); | ||
| 901 | } | ||
| 902 | |||
| 903 | void backlight_timer_disable(void) | ||
| 904 | { | ||
| 905 | TIMSK3 &= ~_BV(OCIE3A); | ||
| 906 | } | ||
| 907 | #else //STM32, use GPT with TIM4. Enable in halconf.h | ||
| 908 | static void gpt_backlight_timer_task(GPTDriver *gptp); | ||
| 909 | // Timer setup at 200Khz, callback at 10k ticks = 20Hz | ||
| 910 | static GPTConfig gpt4cfg1 = { | ||
| 911 | .frequency = 200000U, | ||
| 912 | .callback = gpt_backlight_timer_task | ||
| 913 | }; | ||
| 914 | |||
| 915 | void backlight_timer_init(void) | ||
| 916 | { | ||
| 917 | gptStart(&GPTD4, &gpt4cfg1); | ||
| 918 | } | ||
| 919 | |||
| 920 | void backlight_timer_enable(void) | ||
| 921 | { | ||
| 922 | gptStartContinuous(&GPTD4, 10000); | ||
| 923 | } | ||
| 924 | |||
| 925 | void backlight_timer_disable(void) | ||
| 926 | { | ||
| 927 | gptStopTimer(&GPTD4); | ||
| 928 | } | ||
| 929 | #endif //!defined(RGB_BACKLIGHT_HS60) && !defined(RGB_BACKLIGHT_NK65) | ||
| 930 | |||
| 931 | void backlight_set_suspend_state(bool state) | ||
| 932 | { | ||
| 933 | g_suspend_state = state; | ||
| 934 | } | ||
| 935 | |||
| 936 | void backlight_set_indicator_state(uint8_t state) | ||
| 937 | { | ||
| 938 | g_indicator_state = state; | ||
| 939 | } | ||
| 940 | |||
| 941 | void backlight_effect_rgb_test(void) | ||
| 942 | { | ||
| 943 | // Mask out bits 4 and 5 | ||
| 944 | // This 2-bit value will stay the same for 16 ticks. | ||
| 945 | switch ( (g_tick & 0x30) >> 4 ) | ||
| 946 | { | ||
| 947 | case 0: | ||
| 948 | { | ||
| 949 | backlight_set_color_all( 255, 0, 0 ); | ||
| 950 | break; | ||
| 951 | } | ||
| 952 | case 1: | ||
| 953 | { | ||
| 954 | backlight_set_color_all( 0, 255, 0 ); | ||
| 955 | break; | ||
| 956 | } | ||
| 957 | case 2: | ||
| 958 | { | ||
| 959 | backlight_set_color_all( 0, 0, 255 ); | ||
| 960 | break; | ||
| 961 | } | ||
| 962 | case 3: | ||
| 963 | { | ||
| 964 | backlight_set_color_all( 255, 255, 255 ); | ||
| 965 | break; | ||
| 966 | } | ||
| 967 | } | ||
| 968 | } | ||
| 969 | |||
| 970 | #if defined(RGB_DEBUGGING_ONLY) | ||
| 971 | // This tests the LEDs | ||
| 972 | // Note that it will change the LED control registers | ||
| 973 | // in the LED drivers, and leave them in an invalid | ||
| 974 | // state for other backlight effects. | ||
| 975 | // ONLY USE THIS FOR TESTING LEDS! | ||
| 976 | void backlight_effect_single_LED_test(void) | ||
| 977 | { | ||
| 978 | static uint8_t color = 0; // 0,1,2 for R,G,B | ||
| 979 | static uint8_t row = 0; | ||
| 980 | static uint8_t column = 0; | ||
| 981 | |||
| 982 | static uint8_t tick = 0; | ||
| 983 | tick++; | ||
| 984 | |||
| 985 | if ( tick > 2 ) | ||
| 986 | { | ||
| 987 | tick = 0; | ||
| 988 | column++; | ||
| 989 | } | ||
| 990 | if ( column > 14 ) | ||
| 991 | { | ||
| 992 | column = 0; | ||
| 993 | row++; | ||
| 994 | } | ||
| 995 | if ( row > 4 ) | ||
| 996 | { | ||
| 997 | row = 0; | ||
| 998 | color++; | ||
| 999 | } | ||
| 1000 | if ( color > 2 ) | ||
| 1001 | { | ||
| 1002 | color = 0; | ||
| 1003 | } | ||
| 1004 | |||
| 1005 | uint8_t led; | ||
| 1006 | map_row_column_to_led( row, column, &led ); | ||
| 1007 | backlight_set_color_all( 255, 255, 255 ); | ||
| 1008 | backlight_test_led( led, color==0, color==1, color==2 ); | ||
| 1009 | } | ||
| 1010 | #endif // defined(RGB_DEBUGGING_ONLY) | ||
| 1011 | |||
| 1012 | // All LEDs off | ||
| 1013 | void backlight_effect_all_off(void) | ||
| 1014 | { | ||
| 1015 | backlight_set_color_all( 0, 0, 0 ); | ||
| 1016 | } | ||
| 1017 | |||
| 1018 | // Solid color | ||
| 1019 | void backlight_effect_solid_color(void) | ||
| 1020 | { | ||
| 1021 | HSV hsv = { .h = g_config.color_1.h, .s = g_config.color_1.s, .v = g_config.brightness }; | ||
| 1022 | RGB rgb = hsv_to_rgb( hsv ); | ||
| 1023 | backlight_set_color_all( rgb.r, rgb.g, rgb.b ); | ||
| 1024 | } | ||
| 1025 | |||
| 1026 | // alphas = color1, mods = color2 | ||
| 1027 | void backlight_effect_alphas_mods(void) | ||
| 1028 | { | ||
| 1029 | RGB rgb1 = hsv_to_rgb( (HSV){ .h = g_config.color_1.h, .s = g_config.color_1.s, .v = g_config.brightness } ); | ||
| 1030 | RGB rgb2 = hsv_to_rgb( (HSV){ .h = g_config.color_2.h, .s = g_config.color_2.s, .v = g_config.brightness } ); | ||
| 1031 | |||
| 1032 | for ( int row = 0; row < MATRIX_ROWS; row++ ) | ||
| 1033 | { | ||
| 1034 | for ( int column = 0; column < MATRIX_COLS; column++ ) | ||
| 1035 | { | ||
| 1036 | uint8_t index; | ||
| 1037 | map_row_column_to_led( row, column, &index ); | ||
| 1038 | if ( index < BACKLIGHT_LED_COUNT ) | ||
| 1039 | { | ||
| 1040 | if ( ( g_config.alphas_mods[row] & (1<<column) ) == 0 ) | ||
| 1041 | { | ||
| 1042 | backlight_set_color( index, rgb1.r, rgb1.g, rgb1.b ); | ||
| 1043 | } | ||
| 1044 | else | ||
| 1045 | { | ||
| 1046 | backlight_set_color( index, rgb2.r, rgb2.g, rgb2.b ); | ||
| 1047 | } | ||
| 1048 | } | ||
| 1049 | } | ||
| 1050 | } | ||
| 1051 | } | ||
| 1052 | |||
| 1053 | void backlight_effect_gradient_up_down(void) | ||
| 1054 | { | ||
| 1055 | int16_t h1 = g_config.color_1.h; | ||
| 1056 | int16_t h2 = g_config.color_2.h; | ||
| 1057 | int16_t deltaH = h2 - h1; | ||
| 1058 | |||
| 1059 | // Take the shortest path between hues | ||
| 1060 | if ( deltaH > 127 ) | ||
| 1061 | { | ||
| 1062 | deltaH -= 256; | ||
| 1063 | } | ||
| 1064 | else if ( deltaH < -127 ) | ||
| 1065 | { | ||
| 1066 | deltaH += 256; | ||
| 1067 | } | ||
| 1068 | // Divide delta by 4, this gives the delta per row | ||
| 1069 | deltaH /= 4; | ||
| 1070 | |||
| 1071 | int16_t s1 = g_config.color_1.s; | ||
| 1072 | int16_t s2 = g_config.color_2.s; | ||
| 1073 | int16_t deltaS = ( s2 - s1 ) / 4; | ||
| 1074 | |||
| 1075 | HSV hsv = { .h = 0, .s = 255, .v = g_config.brightness }; | ||
| 1076 | RGB rgb; | ||
| 1077 | Point point; | ||
| 1078 | for ( int i=0; i<BACKLIGHT_LED_COUNT; i++ ) | ||
| 1079 | { | ||
| 1080 | map_led_to_point( i, &point ); | ||
| 1081 | // The y range will be 0..64, map this to 0..4 | ||
| 1082 | uint8_t y = (point.y>>4); | ||
| 1083 | // Relies on hue being 8-bit and wrapping | ||
| 1084 | hsv.h = g_config.color_1.h + ( deltaH * y ); | ||
| 1085 | hsv.s = g_config.color_1.s + ( deltaS * y ); | ||
| 1086 | rgb = hsv_to_rgb( hsv ); | ||
| 1087 | backlight_set_color( i, rgb.r, rgb.g, rgb.b ); | ||
| 1088 | } | ||
| 1089 | } | ||
| 1090 | |||
| 1091 | void backlight_effect_raindrops(bool initialize) | ||
| 1092 | { | ||
| 1093 | int16_t h1 = g_config.color_1.h; | ||
| 1094 | int16_t h2 = g_config.color_2.h; | ||
| 1095 | int16_t deltaH = h2 - h1; | ||
| 1096 | deltaH /= 4; | ||
| 1097 | |||
| 1098 | // Take the shortest path between hues | ||
| 1099 | if ( deltaH > 127 ) | ||
| 1100 | { | ||
| 1101 | deltaH -= 256; | ||
| 1102 | } | ||
| 1103 | else if ( deltaH < -127 ) | ||
| 1104 | { | ||
| 1105 | deltaH += 256; | ||
| 1106 | } | ||
| 1107 | |||
| 1108 | int16_t s1 = g_config.color_1.s; | ||
| 1109 | int16_t s2 = g_config.color_2.s; | ||
| 1110 | int16_t deltaS = ( s2 - s1 ) / 4; | ||
| 1111 | |||
| 1112 | HSV hsv; | ||
| 1113 | RGB rgb; | ||
| 1114 | |||
| 1115 | // Change one LED every tick | ||
| 1116 | uint8_t led_to_change = ( g_tick & 0x000 ) == 0 ? rand() % BACKLIGHT_LED_COUNT : 255; | ||
| 1117 | |||
| 1118 | for ( int i=0; i<BACKLIGHT_LED_COUNT; i++ ) | ||
| 1119 | { | ||
| 1120 | // If initialize, all get set to random colors | ||
| 1121 | // If not, all but one will stay the same as before. | ||
| 1122 | if ( initialize || i == led_to_change ) | ||
| 1123 | { | ||
| 1124 | hsv.h = h1 + ( deltaH * ( rand() & 0x03 ) ); | ||
| 1125 | hsv.s = s1 + ( deltaS * ( rand() & 0x03 ) ); | ||
| 1126 | // Override brightness with global brightness control | ||
| 1127 | hsv.v = g_config.brightness;; | ||
| 1128 | |||
| 1129 | rgb = hsv_to_rgb( hsv ); | ||
| 1130 | backlight_set_color( i, rgb.r, rgb.g, rgb.b ); | ||
| 1131 | } | ||
| 1132 | } | ||
| 1133 | } | ||
| 1134 | |||
| 1135 | void backlight_effect_cycle_all(void) | ||
| 1136 | { | ||
| 1137 | uint8_t offset = ( g_tick << g_config.effect_speed ) & 0xFF; | ||
| 1138 | |||
| 1139 | // Relies on hue being 8-bit and wrapping | ||
| 1140 | for ( int i=0; i<BACKLIGHT_LED_COUNT; i++ ) | ||
| 1141 | { | ||
| 1142 | uint16_t offset2 = g_key_hit[i]<<2; | ||
| 1143 | #if !defined(RGB_BACKLIGHT_HS60) && !defined(RGB_BACKLIGHT_NK65) | ||
| 1144 | // stabilizer LEDs use spacebar hits | ||
| 1145 | if ( i == 36+6 || i == 54+13 || // LC6, LD13 | ||
| 1146 | ( g_config.use_7u_spacebar && i == 54+14 ) ) // LD14 | ||
| 1147 | { | ||
| 1148 | offset2 = g_key_hit[36+0]<<2; | ||
| 1149 | } | ||
| 1150 | #endif | ||
| 1151 | offset2 = (offset2<=63) ? (63-offset2) : 0; | ||
| 1152 | |||
| 1153 | HSV hsv = { .h = offset+offset2, .s = 255, .v = g_config.brightness }; | ||
| 1154 | RGB rgb = hsv_to_rgb( hsv ); | ||
| 1155 | backlight_set_color( i, rgb.r, rgb.g, rgb.b ); | ||
| 1156 | } | ||
| 1157 | } | ||
| 1158 | |||
| 1159 | void backlight_effect_cycle_left_right(void) | ||
| 1160 | { | ||
| 1161 | uint8_t offset = ( g_tick << g_config.effect_speed ) & 0xFF; | ||
| 1162 | HSV hsv = { .h = 0, .s = 255, .v = g_config.brightness }; | ||
| 1163 | RGB rgb; | ||
| 1164 | Point point; | ||
| 1165 | for ( int i=0; i<BACKLIGHT_LED_COUNT; i++ ) | ||
| 1166 | { | ||
| 1167 | uint16_t offset2 = g_key_hit[i]<<2; | ||
| 1168 | #if !defined(RGB_BACKLIGHT_HS60) && !defined(RGB_BACKLIGHT_NK65) | ||
| 1169 | // stabilizer LEDs use spacebar hits | ||
| 1170 | if ( i == 36+6 || i == 54+13 || // LC6, LD13 | ||
| 1171 | ( g_config.use_7u_spacebar && i == 54+14 ) ) // LD14 | ||
| 1172 | { | ||
| 1173 | offset2 = g_key_hit[36+0]<<2; | ||
| 1174 | } | ||
| 1175 | #endif | ||
| 1176 | offset2 = (offset2<=63) ? (63-offset2) : 0; | ||
| 1177 | |||
| 1178 | map_led_to_point( i, &point ); | ||
| 1179 | // Relies on hue being 8-bit and wrapping | ||
| 1180 | hsv.h = point.x + offset + offset2; | ||
| 1181 | rgb = hsv_to_rgb( hsv ); | ||
| 1182 | backlight_set_color( i, rgb.r, rgb.g, rgb.b ); | ||
| 1183 | } | ||
| 1184 | } | ||
| 1185 | |||
| 1186 | void backlight_effect_cycle_up_down(void) | ||
| 1187 | { | ||
| 1188 | uint8_t offset = ( g_tick << g_config.effect_speed ) & 0xFF; | ||
| 1189 | HSV hsv = { .h = 0, .s = 255, .v = g_config.brightness }; | ||
| 1190 | RGB rgb; | ||
| 1191 | Point point; | ||
| 1192 | for ( int i=0; i<BACKLIGHT_LED_COUNT; i++ ) | ||
| 1193 | { | ||
| 1194 | uint16_t offset2 = g_key_hit[i]<<2; | ||
| 1195 | #if !defined(RGB_BACKLIGHT_HS60) && !defined(RGB_BACKLIGHT_NK65) | ||
| 1196 | // stabilizer LEDs use spacebar hits | ||
| 1197 | if ( i == 36+6 || i == 54+13 || // LC6, LD13 | ||
| 1198 | ( g_config.use_7u_spacebar && i == 54+14 ) ) // LD14 | ||
| 1199 | { | ||
| 1200 | offset2 = g_key_hit[36+0]<<2; | ||
| 1201 | } | ||
| 1202 | #endif | ||
| 1203 | offset2 = (offset2<=63) ? (63-offset2) : 0; | ||
| 1204 | |||
| 1205 | map_led_to_point( i, &point ); | ||
| 1206 | // Relies on hue being 8-bit and wrapping | ||
| 1207 | hsv.h = point.y + offset + offset2; | ||
| 1208 | rgb = hsv_to_rgb( hsv ); | ||
| 1209 | backlight_set_color( i, rgb.r, rgb.g, rgb.b ); | ||
| 1210 | } | ||
| 1211 | } | ||
| 1212 | |||
| 1213 | void backlight_effect_jellybean_raindrops( bool initialize ) | ||
| 1214 | { | ||
| 1215 | HSV hsv; | ||
| 1216 | RGB rgb; | ||
| 1217 | |||
| 1218 | // Change one LED every tick | ||
| 1219 | uint8_t led_to_change = ( g_tick & 0x000 ) == 0 ? rand() % BACKLIGHT_LED_COUNT : 255; | ||
| 1220 | |||
| 1221 | for ( int i=0; i<BACKLIGHT_LED_COUNT; i++ ) | ||
| 1222 | { | ||
| 1223 | // If initialize, all get set to random colors | ||
| 1224 | // If not, all but one will stay the same as before. | ||
| 1225 | if ( initialize || i == led_to_change ) | ||
| 1226 | { | ||
| 1227 | hsv.h = rand() & 0xFF; | ||
| 1228 | hsv.s = rand() & 0xFF; | ||
| 1229 | // Override brightness with global brightness control | ||
| 1230 | hsv.v = g_config.brightness;; | ||
| 1231 | |||
| 1232 | rgb = hsv_to_rgb( hsv ); | ||
| 1233 | backlight_set_color( i, rgb.r, rgb.g, rgb.b ); | ||
| 1234 | } | ||
| 1235 | } | ||
| 1236 | } | ||
| 1237 | |||
| 1238 | void backlight_effect_cycle_radial1(void) | ||
| 1239 | { | ||
| 1240 | uint8_t offset = ( g_tick << g_config.effect_speed ) & 0xFF; | ||
| 1241 | HSV hsv = { .h = 0, .s = 255, .v = g_config.brightness }; | ||
| 1242 | RGB rgb; | ||
| 1243 | Point point; | ||
| 1244 | for ( int i=0; i<BACKLIGHT_LED_COUNT; i++ ) | ||
| 1245 | { | ||
| 1246 | map_led_to_point_polar( i, &point ); | ||
| 1247 | // Relies on hue being 8-bit and wrapping | ||
| 1248 | hsv.h = point.x + offset; | ||
| 1249 | hsv.s = point.y; | ||
| 1250 | rgb = hsv_to_rgb( hsv ); | ||
| 1251 | backlight_set_color( i, rgb.r, rgb.g, rgb.b ); | ||
| 1252 | } | ||
| 1253 | } | ||
| 1254 | |||
| 1255 | void backlight_effect_cycle_radial2(void) | ||
| 1256 | { | ||
| 1257 | uint8_t offset = ( g_tick << g_config.effect_speed ) & 0xFF; | ||
| 1258 | |||
| 1259 | HSV hsv = { .h = 0, .s = g_config.color_1.s, .v = g_config.brightness }; | ||
| 1260 | RGB rgb; | ||
| 1261 | Point point; | ||
| 1262 | for ( int i=0; i<BACKLIGHT_LED_COUNT; i++ ) | ||
| 1263 | { | ||
| 1264 | map_led_to_point_polar( i, &point ); | ||
| 1265 | uint8_t offset2 = offset + point.x; | ||
| 1266 | if ( offset2 & 0x80 ) | ||
| 1267 | { | ||
| 1268 | offset2 = ~offset2; | ||
| 1269 | } | ||
| 1270 | offset2 = offset2 >> 2; | ||
| 1271 | hsv.h = g_config.color_1.h + offset2; | ||
| 1272 | hsv.s = 127 + ( point.y >> 1 ); | ||
| 1273 | rgb = hsv_to_rgb( hsv ); | ||
| 1274 | backlight_set_color( i, rgb.r, rgb.g, rgb.b ); | ||
| 1275 | } | ||
| 1276 | } | ||
| 1277 | |||
| 1278 | #if defined(RGB_BACKLIGHT_M6_B) | ||
| 1279 | void backlight_effect_custom_colors(void) | ||
| 1280 | { | ||
| 1281 | RGB rgb; | ||
| 1282 | for ( uint8_t i = 0; i < 6; i++ ) | ||
| 1283 | { | ||
| 1284 | HSV hsv = { .h = g_config.custom_color[i].h, .s = g_config.custom_color[i].s, .v = g_config.brightness }; | ||
| 1285 | rgb = hsv_to_rgb( hsv ); | ||
| 1286 | uint8_t led; | ||
| 1287 | map_row_column_to_led( 0, i, &led ); | ||
| 1288 | backlight_set_color( led, rgb.r, rgb.g, rgb.b ); | ||
| 1289 | } | ||
| 1290 | } | ||
| 1291 | #endif | ||
| 1292 | |||
| 1293 | void backlight_effect_indicators_set_colors( uint8_t index, HS color ) | ||
| 1294 | { | ||
| 1295 | HSV hsv = { .h = color.h, .s = color.s, .v = g_config.brightness }; | ||
| 1296 | RGB rgb = hsv_to_rgb( hsv ); | ||
| 1297 | if ( index == 254 ) | ||
| 1298 | { | ||
| 1299 | backlight_set_color_all( rgb.r, rgb.g, rgb.b ); | ||
| 1300 | } | ||
| 1301 | else | ||
| 1302 | { | ||
| 1303 | backlight_set_color( index, rgb.r, rgb.g, rgb.b ); | ||
| 1304 | |||
| 1305 | // If the spacebar LED is the indicator, | ||
| 1306 | // do the same for the spacebar stabilizers | ||
| 1307 | if ( index == 36+0 ) // LC0 | ||
| 1308 | { | ||
| 1309 | #if defined(RGB_BACKLIGHT_ZEAL65) | ||
| 1310 | backlight_set_color( 36+7, rgb.r, rgb.g, rgb.b ); // LC7 | ||
| 1311 | backlight_set_color( 54+14, rgb.r, rgb.g, rgb.b ); // LD14 | ||
| 1312 | #elif defined(RGB_BACKLIGHT_KOYU) | ||
| 1313 | backlight_set_color( 36+6, rgb.r, rgb.g, rgb.b ); // LC6 | ||
| 1314 | backlight_set_color( 54+14, rgb.r, rgb.g, rgb.b ); // LD14 | ||
| 1315 | #elif defined(RGB_BACKLIGHT_ZEAL60) || defined(RGB_BACKLIGHT_M60_A) | ||
| 1316 | backlight_set_color( 36+6, rgb.r, rgb.g, rgb.b ); // LC6 | ||
| 1317 | backlight_set_color( 54+13, rgb.r, rgb.g, rgb.b ); // LD13 | ||
| 1318 | if ( g_config.use_7u_spacebar ) | ||
| 1319 | { | ||
| 1320 | backlight_set_color( 54+14, rgb.r, rgb.g, rgb.b ); // LD14 | ||
| 1321 | } | ||
| 1322 | #endif | ||
| 1323 | } | ||
| 1324 | } | ||
| 1325 | } | ||
| 1326 | |||
| 1327 | // This runs after another backlight effect and replaces | ||
| 1328 | // colors already set | ||
| 1329 | void backlight_effect_indicators(void) | ||
| 1330 | { | ||
| 1331 | if ( g_config.caps_lock_indicator.index != 255 && | ||
| 1332 | ( g_indicator_state & (1<<USB_LED_CAPS_LOCK) ) ) | ||
| 1333 | { | ||
| 1334 | backlight_effect_indicators_set_colors( g_config.caps_lock_indicator.index, g_config.caps_lock_indicator.color ); | ||
| 1335 | } | ||
| 1336 | |||
| 1337 | #if defined(RGB_BACKLIGHT_NK65) | ||
| 1338 | if ( g_indicator_state & (1<<USB_LED_CAPS_LOCK) ) | ||
| 1339 | { | ||
| 1340 | IS31FL3733_set_color( 7+64-1, 0, 255, 0 ); | ||
| 1341 | } else { | ||
| 1342 | IS31FL3733_set_color( 7+64-1, 0, 0, 0 ); | ||
| 1343 | } | ||
| 1344 | if ( g_indicator_state & (1<<USB_LED_SCROLL_LOCK) ) | ||
| 1345 | { | ||
| 1346 | IS31FL3733_set_color( 6+64-1, 255, 0, 255 ); | ||
| 1347 | } else { | ||
| 1348 | IS31FL3733_set_color( 6+64-1, 0, 0, 0 ); | ||
| 1349 | } | ||
| 1350 | if ( g_indicator_state & (1<<USB_LED_NUM_LOCK) ) | ||
| 1351 | { | ||
| 1352 | IS31FL3733_set_color( 6+64-1, 0, 255, 0 ); | ||
| 1353 | } else { | ||
| 1354 | IS31FL3733_set_color( 6+64-1, 0, 0, 0 ); | ||
| 1355 | } | ||
| 1356 | #endif | ||
| 1357 | |||
| 1358 | // This if/else if structure allows higher layers to | ||
| 1359 | // override lower ones. If we set layer 3's indicator | ||
| 1360 | // to none, then it will NOT show layer 2 or layer 1 | ||
| 1361 | // indicators, even if those layers are on via the | ||
| 1362 | // MO13/MO23 Fn combo magic. | ||
| 1363 | // | ||
| 1364 | // Basically we want to handle the case where layer 3 is | ||
| 1365 | // still the backlight configuration layer and we don't | ||
| 1366 | // want "all LEDs" indicators hiding the backlight effect, | ||
| 1367 | // but still allow end users to do whatever they want. | ||
| 1368 | if ( IS_LAYER_ON(3) ) | ||
| 1369 | { | ||
| 1370 | if ( g_config.layer_3_indicator.index != 255 ) | ||
| 1371 | { | ||
| 1372 | backlight_effect_indicators_set_colors( g_config.layer_3_indicator.index, g_config.layer_3_indicator.color ); | ||
| 1373 | } | ||
| 1374 | } | ||
| 1375 | else if ( IS_LAYER_ON(2) ) | ||
| 1376 | { | ||
| 1377 | if ( g_config.layer_2_indicator.index != 255 ) | ||
| 1378 | { | ||
| 1379 | backlight_effect_indicators_set_colors( g_config.layer_2_indicator.index, g_config.layer_2_indicator.color ); | ||
| 1380 | } | ||
| 1381 | } | ||
| 1382 | else if ( IS_LAYER_ON(1) ) | ||
| 1383 | { | ||
| 1384 | if ( g_config.layer_1_indicator.index != 255 ) | ||
| 1385 | { | ||
| 1386 | backlight_effect_indicators_set_colors( g_config.layer_1_indicator.index, g_config.layer_1_indicator.color ); | ||
| 1387 | } | ||
| 1388 | } | ||
| 1389 | } | ||
| 1390 | |||
| 1391 | #if !defined(RGB_BACKLIGHT_HS60) && !defined(RGB_BACKLIGHT_NK65) | ||
| 1392 | ISR(TIMER3_COMPA_vect) | ||
| 1393 | #else //STM32 interrupt | ||
| 1394 | static void gpt_backlight_timer_task(GPTDriver *gptp) | ||
| 1395 | #endif | ||
| 1396 | { | ||
| 1397 | // delay 1 second before driving LEDs or doing anything else | ||
| 1398 | static uint8_t startup_tick = 0; | ||
| 1399 | if ( startup_tick < 20 ) | ||
| 1400 | { | ||
| 1401 | startup_tick++; | ||
| 1402 | return; | ||
| 1403 | } | ||
| 1404 | |||
| 1405 | g_tick++; | ||
| 1406 | |||
| 1407 | if ( g_any_key_hit < 0xFFFFFFFF ) | ||
| 1408 | { | ||
| 1409 | g_any_key_hit++; | ||
| 1410 | } | ||
| 1411 | |||
| 1412 | for ( int led = 0; led < BACKLIGHT_LED_COUNT; led++ ) | ||
| 1413 | { | ||
| 1414 | if ( g_key_hit[led] < 255 ) | ||
| 1415 | { | ||
| 1416 | g_key_hit[led]++; | ||
| 1417 | } | ||
| 1418 | } | ||
| 1419 | |||
| 1420 | // Factory default magic value | ||
| 1421 | if ( g_config.effect == 255 ) | ||
| 1422 | { | ||
| 1423 | backlight_effect_rgb_test(); | ||
| 1424 | return; | ||
| 1425 | } | ||
| 1426 | |||
| 1427 | // Ideally we would also stop sending zeros to the LED driver PWM buffers | ||
| 1428 | // while suspended and just do a software shutdown. This is a cheap hack for now. | ||
| 1429 | bool suspend_backlight = ((g_suspend_state && g_config.disable_when_usb_suspended) || | ||
| 1430 | (g_config.disable_after_timeout > 0 && g_any_key_hit > g_config.disable_after_timeout * 60 * 20)); | ||
| 1431 | uint8_t effect = suspend_backlight ? 0 : g_config.effect; | ||
| 1432 | |||
| 1433 | // Keep track of the effect used last time, | ||
| 1434 | // detect change in effect, so each effect can | ||
| 1435 | // have an optional initialization. | ||
| 1436 | static uint8_t effect_last = 255; | ||
| 1437 | bool initialize = effect != effect_last; | ||
| 1438 | effect_last = effect; | ||
| 1439 | |||
| 1440 | // this gets ticked at 20 Hz. | ||
| 1441 | // each effect can opt to do calculations | ||
| 1442 | // and/or request PWM buffer updates. | ||
| 1443 | switch ( effect ) | ||
| 1444 | { | ||
| 1445 | case 0: | ||
| 1446 | backlight_effect_all_off(); | ||
| 1447 | break; | ||
| 1448 | case 1: | ||
| 1449 | backlight_effect_solid_color(); | ||
| 1450 | break; | ||
| 1451 | case 2: | ||
| 1452 | #if defined(RGB_BACKLIGHT_M6_B) | ||
| 1453 | backlight_effect_custom_colors(); | ||
| 1454 | #else | ||
| 1455 | backlight_effect_alphas_mods(); | ||
| 1456 | #endif | ||
| 1457 | break; | ||
| 1458 | case 3: | ||
| 1459 | backlight_effect_gradient_up_down(); | ||
| 1460 | break; | ||
| 1461 | case 4: | ||
| 1462 | backlight_effect_raindrops( initialize ); | ||
| 1463 | break; | ||
| 1464 | case 5: | ||
| 1465 | backlight_effect_cycle_all(); | ||
| 1466 | break; | ||
| 1467 | case 6: | ||
| 1468 | backlight_effect_cycle_left_right(); | ||
| 1469 | break; | ||
| 1470 | case 7: | ||
| 1471 | backlight_effect_cycle_up_down(); | ||
| 1472 | break; | ||
| 1473 | case 8: | ||
| 1474 | backlight_effect_jellybean_raindrops( initialize ); | ||
| 1475 | break; | ||
| 1476 | case 9: | ||
| 1477 | backlight_effect_cycle_radial1(); | ||
| 1478 | break; | ||
| 1479 | case 10: | ||
| 1480 | backlight_effect_cycle_radial2(); | ||
| 1481 | break; | ||
| 1482 | default: | ||
| 1483 | backlight_effect_all_off(); | ||
| 1484 | break; | ||
| 1485 | } | ||
| 1486 | |||
| 1487 | if ( ! suspend_backlight ) | ||
| 1488 | { | ||
| 1489 | #if !defined(RGB_BACKLIGHT_M6_B) | ||
| 1490 | backlight_effect_indicators(); | ||
| 1491 | #endif | ||
| 1492 | } | ||
| 1493 | } | ||
| 1494 | |||
| 1495 | void backlight_set_indicator_index( uint8_t *index, uint8_t row, uint8_t column ) | ||
| 1496 | { | ||
| 1497 | if ( row >= MATRIX_ROWS ) | ||
| 1498 | { | ||
| 1499 | // Special value, 255=none, 254=all | ||
| 1500 | *index = row; | ||
| 1501 | } | ||
| 1502 | else | ||
| 1503 | { | ||
| 1504 | map_row_column_to_led( row, column, index ); | ||
| 1505 | } | ||
| 1506 | } | ||
| 1507 | |||
| 1508 | void backlight_get_indicator_row_col( uint8_t index, uint8_t *row, uint8_t *column ) | ||
| 1509 | { | ||
| 1510 | if ( index == 255 || index == 254 ) | ||
| 1511 | { | ||
| 1512 | // Special value, 255=none, 254=all | ||
| 1513 | *row = index; | ||
| 1514 | *column = 0; | ||
| 1515 | return; | ||
| 1516 | } | ||
| 1517 | for ( uint8_t r = 0; r < MATRIX_ROWS; r++ ) | ||
| 1518 | { | ||
| 1519 | for ( uint8_t c = 0; c < MATRIX_COLS; c++ ) | ||
| 1520 | { | ||
| 1521 | uint8_t i = 255; | ||
| 1522 | map_row_column_to_led( r, c, &i ); | ||
| 1523 | if ( i == index ) | ||
| 1524 | { | ||
| 1525 | *row = r; | ||
| 1526 | *column = c; | ||
| 1527 | return; | ||
| 1528 | } | ||
| 1529 | } | ||
| 1530 | } | ||
| 1531 | } | ||
| 1532 | |||
| 1533 | // Some helpers for setting/getting HSV | ||
| 1534 | void _set_color( HS *color, uint8_t *data ) | ||
| 1535 | { | ||
| 1536 | color->h = data[0]; | ||
| 1537 | color->s = data[1]; | ||
| 1538 | } | ||
| 1539 | |||
| 1540 | void _get_color( HS *color, uint8_t *data ) | ||
| 1541 | { | ||
| 1542 | data[0] = color->h; | ||
| 1543 | data[1] = color->s; | ||
| 1544 | } | ||
| 1545 | |||
| 1546 | void backlight_config_set_value( uint8_t *data ) | ||
| 1547 | { | ||
| 1548 | bool reinitialize = false; | ||
| 1549 | uint8_t *value_id = &(data[0]); | ||
| 1550 | uint8_t *value_data = &(data[1]); | ||
| 1551 | switch ( *value_id ) | ||
| 1552 | { | ||
| 1553 | #if defined (RGB_BACKLIGHT_ZEAL60) || defined(RGB_BACKLIGHT_ZEAL65) | ||
| 1554 | case id_use_split_backspace: | ||
| 1555 | { | ||
| 1556 | g_config.use_split_backspace = (bool)*value_data; | ||
| 1557 | reinitialize = true; | ||
| 1558 | break; | ||
| 1559 | } | ||
| 1560 | #endif | ||
| 1561 | #if defined (RGB_BACKLIGHT_ZEAL60) | ||
| 1562 | case id_use_split_left_shift: | ||
| 1563 | { | ||
| 1564 | g_config.use_split_left_shift = (bool)*value_data; | ||
| 1565 | reinitialize = true; | ||
| 1566 | break; | ||
| 1567 | } | ||
| 1568 | case id_use_split_right_shift: | ||
| 1569 | { | ||
| 1570 | g_config.use_split_right_shift = (bool)*value_data; | ||
| 1571 | reinitialize = true; | ||
| 1572 | break; | ||
| 1573 | } | ||
| 1574 | case id_use_7u_spacebar: | ||
| 1575 | { | ||
| 1576 | g_config.use_7u_spacebar = (bool)*value_data; | ||
| 1577 | reinitialize = true; | ||
| 1578 | break; | ||
| 1579 | } | ||
| 1580 | case id_use_iso_enter: | ||
| 1581 | { | ||
| 1582 | g_config.use_iso_enter = (bool)*value_data; | ||
| 1583 | reinitialize = true; | ||
| 1584 | break; | ||
| 1585 | } | ||
| 1586 | case id_disable_hhkb_blocker_leds: | ||
| 1587 | { | ||
| 1588 | g_config.disable_hhkb_blocker_leds = (bool)*value_data; | ||
| 1589 | reinitialize = true; | ||
| 1590 | break; | ||
| 1591 | } | ||
| 1592 | #endif | ||
| 1593 | case id_disable_when_usb_suspended: | ||
| 1594 | { | ||
| 1595 | g_config.disable_when_usb_suspended = (bool)*value_data; | ||
| 1596 | break; | ||
| 1597 | } | ||
| 1598 | case id_disable_after_timeout: | ||
| 1599 | { | ||
| 1600 | g_config.disable_after_timeout = *value_data; | ||
| 1601 | break; | ||
| 1602 | } | ||
| 1603 | case id_brightness: | ||
| 1604 | { | ||
| 1605 | g_config.brightness = *value_data; | ||
| 1606 | break; | ||
| 1607 | } | ||
| 1608 | case id_effect: | ||
| 1609 | { | ||
| 1610 | g_config.effect = *value_data; | ||
| 1611 | break; | ||
| 1612 | } | ||
| 1613 | case id_effect_speed: | ||
| 1614 | { | ||
| 1615 | g_config.effect_speed = *value_data; | ||
| 1616 | break; | ||
| 1617 | } | ||
| 1618 | case id_color_1: | ||
| 1619 | { | ||
| 1620 | _set_color( &(g_config.color_1), value_data ); | ||
| 1621 | break; | ||
| 1622 | } | ||
| 1623 | case id_color_2: | ||
| 1624 | { | ||
| 1625 | _set_color( &(g_config.color_2), value_data ); | ||
| 1626 | break; | ||
| 1627 | } | ||
| 1628 | case id_caps_lock_indicator_color: | ||
| 1629 | { | ||
| 1630 | _set_color( &(g_config.caps_lock_indicator.color), value_data ); | ||
| 1631 | break; | ||
| 1632 | } | ||
| 1633 | case id_caps_lock_indicator_row_col: | ||
| 1634 | { | ||
| 1635 | backlight_set_indicator_index( &(g_config.caps_lock_indicator.index), value_data[0], value_data[1] ); | ||
| 1636 | break; | ||
| 1637 | } | ||
| 1638 | case id_layer_1_indicator_color: | ||
| 1639 | { | ||
| 1640 | _set_color( &(g_config.layer_1_indicator.color), value_data ); | ||
| 1641 | break; | ||
| 1642 | } | ||
| 1643 | case id_layer_1_indicator_row_col: | ||
| 1644 | { | ||
| 1645 | backlight_set_indicator_index( &(g_config.layer_1_indicator.index), value_data[0], value_data[1] ); | ||
| 1646 | break; | ||
| 1647 | } | ||
| 1648 | case id_layer_2_indicator_color: | ||
| 1649 | { | ||
| 1650 | _set_color( &(g_config.layer_2_indicator.color), value_data ); | ||
| 1651 | break; | ||
| 1652 | } | ||
| 1653 | case id_layer_2_indicator_row_col: | ||
| 1654 | { | ||
| 1655 | backlight_set_indicator_index( &(g_config.layer_2_indicator.index), value_data[0], value_data[1] ); | ||
| 1656 | break; | ||
| 1657 | } | ||
| 1658 | case id_layer_3_indicator_color: | ||
| 1659 | { | ||
| 1660 | _set_color( &(g_config.layer_3_indicator.color), value_data ); | ||
| 1661 | break; | ||
| 1662 | } | ||
| 1663 | case id_layer_3_indicator_row_col: | ||
| 1664 | { | ||
| 1665 | backlight_set_indicator_index( &(g_config.layer_3_indicator.index), value_data[0], value_data[1] ); | ||
| 1666 | break; | ||
| 1667 | } | ||
| 1668 | case id_alphas_mods: | ||
| 1669 | { | ||
| 1670 | for ( int i=0; i<5; i++ ) | ||
| 1671 | { | ||
| 1672 | g_config.alphas_mods[i] = ( *(value_data+i*2) << 8 ) | ( *(value_data+i*2+1) ); | ||
| 1673 | } | ||
| 1674 | } | ||
| 1675 | #if defined(RGB_BACKLIGHT_M6_B) | ||
| 1676 | case id_custom_color: | ||
| 1677 | { | ||
| 1678 | uint8_t index = value_data[0]; | ||
| 1679 | if ( index >= 0 && index <= 6 ) | ||
| 1680 | { | ||
| 1681 | _set_color( &(g_config.custom_color[index]), &(value_data[1]) ); | ||
| 1682 | } | ||
| 1683 | } | ||
| 1684 | #endif | ||
| 1685 | } | ||
| 1686 | |||
| 1687 | if ( reinitialize ) | ||
| 1688 | { | ||
| 1689 | backlight_init_drivers(); | ||
| 1690 | } | ||
| 1691 | } | ||
| 1692 | |||
| 1693 | void backlight_config_get_value( uint8_t *data ) | ||
| 1694 | { | ||
| 1695 | uint8_t *value_id = &(data[0]); | ||
| 1696 | uint8_t *value_data = &(data[1]); | ||
| 1697 | switch ( *value_id ) | ||
| 1698 | { | ||
| 1699 | case id_use_split_backspace: | ||
| 1700 | { | ||
| 1701 | *value_data = ( g_config.use_split_backspace ? 1 : 0 ); | ||
| 1702 | break; | ||
| 1703 | } | ||
| 1704 | case id_use_split_left_shift: | ||
| 1705 | { | ||
| 1706 | *value_data = ( g_config.use_split_left_shift ? 1 : 0 ); | ||
| 1707 | break; | ||
| 1708 | } | ||
| 1709 | case id_use_split_right_shift: | ||
| 1710 | { | ||
| 1711 | *value_data = ( g_config.use_split_right_shift ? 1 : 0 ); | ||
| 1712 | break; | ||
| 1713 | } | ||
| 1714 | case id_use_7u_spacebar: | ||
| 1715 | { | ||
| 1716 | *value_data = ( g_config.use_7u_spacebar ? 1 : 0 ); | ||
| 1717 | break; | ||
| 1718 | } | ||
| 1719 | case id_use_iso_enter: | ||
| 1720 | { | ||
| 1721 | *value_data = ( g_config.use_iso_enter ? 1 : 0 ); | ||
| 1722 | break; | ||
| 1723 | } | ||
| 1724 | case id_disable_when_usb_suspended: | ||
| 1725 | { | ||
| 1726 | *value_data = ( g_config.disable_when_usb_suspended ? 1 : 0 ); | ||
| 1727 | break; | ||
| 1728 | } | ||
| 1729 | case id_disable_hhkb_blocker_leds: | ||
| 1730 | { | ||
| 1731 | *value_data = ( g_config.disable_hhkb_blocker_leds ? 1 : 0 ); | ||
| 1732 | break; | ||
| 1733 | } | ||
| 1734 | case id_disable_after_timeout: | ||
| 1735 | { | ||
| 1736 | *value_data = g_config.disable_after_timeout; | ||
| 1737 | break; | ||
| 1738 | } | ||
| 1739 | case id_brightness: | ||
| 1740 | { | ||
| 1741 | *value_data = g_config.brightness; | ||
| 1742 | break; | ||
| 1743 | } | ||
| 1744 | case id_effect: | ||
| 1745 | { | ||
| 1746 | *value_data = g_config.effect; | ||
| 1747 | break; | ||
| 1748 | } | ||
| 1749 | case id_effect_speed: | ||
| 1750 | { | ||
| 1751 | *value_data = g_config.effect_speed; | ||
| 1752 | break; | ||
| 1753 | } | ||
| 1754 | case id_color_1: | ||
| 1755 | { | ||
| 1756 | _get_color( &(g_config.color_1), value_data ); | ||
| 1757 | break; | ||
| 1758 | } | ||
| 1759 | case id_color_2: | ||
| 1760 | { | ||
| 1761 | _get_color( &(g_config.color_2), value_data ); | ||
| 1762 | break; | ||
| 1763 | } | ||
| 1764 | case id_caps_lock_indicator_color: | ||
| 1765 | { | ||
| 1766 | _get_color( &(g_config.caps_lock_indicator.color), value_data ); | ||
| 1767 | break; | ||
| 1768 | } | ||
| 1769 | case id_caps_lock_indicator_row_col: | ||
| 1770 | { | ||
| 1771 | backlight_get_indicator_row_col( g_config.caps_lock_indicator.index, &(value_data[0]), &(value_data[1]) ); | ||
| 1772 | break; | ||
| 1773 | } | ||
| 1774 | case id_layer_1_indicator_color: | ||
| 1775 | { | ||
| 1776 | _get_color( &(g_config.layer_1_indicator.color), value_data ); | ||
| 1777 | break; | ||
| 1778 | } | ||
| 1779 | case id_layer_1_indicator_row_col: | ||
| 1780 | { | ||
| 1781 | backlight_get_indicator_row_col( g_config.layer_1_indicator.index, &(value_data[0]), &(value_data[1]) ); | ||
| 1782 | break; | ||
| 1783 | } | ||
| 1784 | case id_layer_2_indicator_color: | ||
| 1785 | { | ||
| 1786 | _get_color( &(g_config.layer_2_indicator.color), value_data ); | ||
| 1787 | break; | ||
| 1788 | } | ||
| 1789 | case id_layer_2_indicator_row_col: | ||
| 1790 | { | ||
| 1791 | backlight_get_indicator_row_col( g_config.layer_2_indicator.index, &(value_data[0]), &(value_data[1]) ); | ||
| 1792 | break; | ||
| 1793 | } | ||
| 1794 | case id_layer_3_indicator_color: | ||
| 1795 | { | ||
| 1796 | _get_color( &(g_config.layer_3_indicator.color), value_data ); | ||
| 1797 | break; | ||
| 1798 | } | ||
| 1799 | case id_layer_3_indicator_row_col: | ||
| 1800 | { | ||
| 1801 | backlight_get_indicator_row_col( g_config.layer_3_indicator.index, &(value_data[0]), &(value_data[1]) ); | ||
| 1802 | break; | ||
| 1803 | } | ||
| 1804 | case id_alphas_mods: | ||
| 1805 | { | ||
| 1806 | for ( int i=0; i<5; i++ ) | ||
| 1807 | { | ||
| 1808 | *(value_data+i*2) = g_config.alphas_mods[i] >> 8; | ||
| 1809 | *(value_data+i*2+1) = g_config.alphas_mods[i] & 0xFF; | ||
| 1810 | } | ||
| 1811 | } | ||
| 1812 | #if defined(RGB_BACKLIGHT_M6_B) | ||
| 1813 | case id_custom_color: | ||
| 1814 | { | ||
| 1815 | uint8_t index = value_data[0]; | ||
| 1816 | if ( index >= 0 && index <= 6 ) | ||
| 1817 | { | ||
| 1818 | _get_color( &(g_config.custom_color[index]), &(value_data[1]) ); | ||
| 1819 | } | ||
| 1820 | } | ||
| 1821 | #endif | ||
| 1822 | } | ||
| 1823 | } | ||
| 1824 | |||
| 1825 | void backlight_config_set_alphas_mods( uint16_t *alphas_mods ) | ||
| 1826 | { | ||
| 1827 | for ( int i=0; i<5; i++ ) | ||
| 1828 | { | ||
| 1829 | g_config.alphas_mods[i] = alphas_mods[i]; | ||
| 1830 | } | ||
| 1831 | |||
| 1832 | backlight_config_save(); | ||
| 1833 | } | ||
| 1834 | |||
| 1835 | void backlight_config_load(void) | ||
| 1836 | { | ||
| 1837 | eeprom_read_block( &g_config, ((void*)RGB_BACKLIGHT_CONFIG_EEPROM_ADDR), sizeof(backlight_config) ); | ||
| 1838 | } | ||
| 1839 | |||
| 1840 | void backlight_config_save(void) | ||
| 1841 | { | ||
| 1842 | eeprom_update_block( &g_config, ((void*)RGB_BACKLIGHT_CONFIG_EEPROM_ADDR), sizeof(backlight_config) ); | ||
| 1843 | } | ||
| 1844 | |||
| 1845 | void backlight_init_drivers(void) | ||
| 1846 | { | ||
| 1847 | // Initialize I2C | ||
| 1848 | i2c_init(); | ||
| 1849 | |||
| 1850 | #if defined(RGB_BACKLIGHT_M6_B) | ||
| 1851 | IS31FL3218_init(); | ||
| 1852 | #elif defined(RGB_BACKLIGHT_HS60) | ||
| 1853 | IS31FL3733_init( ISSI_ADDR_1, 0 ); | ||
| 1854 | |||
| 1855 | for ( int index = 0; index < DRIVER_LED_TOTAL; index++ ) | ||
| 1856 | { | ||
| 1857 | #if defined(HS60_ANSI) | ||
| 1858 | bool enabled = !( ( index == 48-1 ) || //LA48 | ||
| 1859 | ( index == 51-1 ) || //LA51 | ||
| 1860 | ( index == 61-1 ) ); //LA61 | ||
| 1861 | #elif defined(HS60_HHKB) | ||
| 1862 | bool enabled = !( ( index == 61-1 ) || //LA61 | ||
| 1863 | ( index == 62-1 ) ); //LA62 | ||
| 1864 | #else //HS60_ISO | ||
| 1865 | bool enabled = !( ( index == 51-1 ) || //LA51 | ||
| 1866 | ( index == 61-1 ) ); //LA61 | ||
| 1867 | #endif | ||
| 1868 | // This only caches it for later | ||
| 1869 | IS31FL3733_set_led_control_register( index, enabled, enabled, enabled ); | ||
| 1870 | } | ||
| 1871 | // This actually updates the LED drivers | ||
| 1872 | IS31FL3733_update_led_control_registers( ISSI_ADDR_1, 0 ); | ||
| 1873 | #elif defined(RGB_BACKLIGHT_NK65) | ||
| 1874 | IS31FL3733_init( ISSI_ADDR_1, 0 ); | ||
| 1875 | IS31FL3733_init( ISSI_ADDR_2, 0 ); | ||
| 1876 | |||
| 1877 | for ( int index = 0; index < DRIVER_LED_TOTAL; index++ ) | ||
| 1878 | { | ||
| 1879 | bool enabled = !( ( index == 61-1 ) || //LA61 | ||
| 1880 | ( index > 6+64-1 ) ); //LB7-LB64 | ||
| 1881 | // This only caches it for later | ||
| 1882 | IS31FL3733_set_led_control_register( index, enabled, enabled, enabled ); | ||
| 1883 | } | ||
| 1884 | IS31FL3733_set_led_control_register( 7+64-1, 0, 1, 0 ); //Enable LB7 green enable for indicators | ||
| 1885 | // This actually updates the LED drivers | ||
| 1886 | IS31FL3733_update_led_control_registers( ISSI_ADDR_1, 0 ); | ||
| 1887 | IS31FL3733_update_led_control_registers( ISSI_ADDR_2, 1 ); | ||
| 1888 | #else | ||
| 1889 | IS31FL3731_init( ISSI_ADDR_1 ); | ||
| 1890 | IS31FL3731_init( ISSI_ADDR_2 ); | ||
| 1891 | |||
| 1892 | for ( int index = 0; index < DRIVER_LED_TOTAL; index++ ) | ||
| 1893 | { | ||
| 1894 | // OR the possible "disabled" cases together, then NOT the result to get the enabled state | ||
| 1895 | // LC6 LD13 not present on Zeal65 | ||
| 1896 | #if defined(RGB_BACKLIGHT_ZEAL65) | ||
| 1897 | bool enabled = !( ( index == 18+5 && !g_config.use_split_backspace ) || // LB5 | ||
| 1898 | ( index == 36+6 ) || // LC6 | ||
| 1899 | ( index == 54+13 ) ); // LD13 | ||
| 1900 | #elif defined(RGB_BACKLIGHT_KOYU) | ||
| 1901 | bool enabled = !( ( index == 36+15 ) || // LC15 | ||
| 1902 | ( index == 54+13 ) || // LD13 | ||
| 1903 | ( index == 54+17 ) ); // LD17 | ||
| 1904 | #elif defined(RGB_BACKLIGHT_M60_A) | ||
| 1905 | bool enabled = !( | ||
| 1906 | // LB6 LB7 LB8 LB15 LB16 LB17 not present on M60-A | ||
| 1907 | ( index == 18+6 ) || // LB6 | ||
| 1908 | ( index == 18+7 ) || // LB7 | ||
| 1909 | ( index == 18+8 ) || // LB8 | ||
| 1910 | ( index == 18+15 ) || // LB15 | ||
| 1911 | ( index == 18+16 ) || // LB16 | ||
| 1912 | ( index == 18+17 ) || // LB17 | ||
| 1913 | // HHKB blockers (LC17, LD17) and ISO extra keys (LC15,LD13) not present on M60-A | ||
| 1914 | ( index == 36+17 ) || // LC17 | ||
| 1915 | ( index == 54+17 ) || // LD17 | ||
| 1916 | ( index == 36+15 ) || // LC15 | ||
| 1917 | ( index == 54+13 ) ); // LD13 | ||
| 1918 | #elif defined(RGB_BACKLIGHT_ZEAL60) | ||
| 1919 | // LB6 LB7 LB8 LB15 LB16 LB17 not present on Zeal60 | ||
| 1920 | bool enabled = !( ( index == 18+5 && !g_config.use_split_backspace ) || // LB5 | ||
| 1921 | ( index == 36+15 && !g_config.use_split_left_shift ) || // LC15 | ||
| 1922 | ( index == 54+8 && !g_config.use_split_right_shift ) || // LD8 | ||
| 1923 | ( index == 54+13 && g_config.use_7u_spacebar ) || // LD13 | ||
| 1924 | ( index == 36+17 && g_config.disable_hhkb_blocker_leds ) || // LC17 | ||
| 1925 | ( index == 54+17 && g_config.disable_hhkb_blocker_leds ) || // LD17 | ||
| 1926 | ( index == 18+6 ) || // LB6 | ||
| 1927 | ( index == 18+7 ) || // LB7 | ||
| 1928 | ( index == 18+8 ) || // LB8 | ||
| 1929 | ( index == 18+15 ) || // LB15 | ||
| 1930 | ( index == 18+16 ) || // LB16 | ||
| 1931 | ( index == 18+17 ) ); // LB17 | ||
| 1932 | #endif | ||
| 1933 | // This only caches it for later | ||
| 1934 | IS31FL3731_set_led_control_register( index, enabled, enabled, enabled ); | ||
| 1935 | } | ||
| 1936 | // This actually updates the LED drivers | ||
| 1937 | IS31FL3731_update_led_control_registers( ISSI_ADDR_1, ISSI_ADDR_2 ); | ||
| 1938 | #endif // !defined(RGB_BACKLIGHT_M6_B) | ||
| 1939 | |||
| 1940 | // TODO: put the 1 second startup delay here? | ||
| 1941 | |||
| 1942 | // clear the key hits | ||
| 1943 | for ( int led=0; led<BACKLIGHT_LED_COUNT; led++ ) | ||
| 1944 | { | ||
| 1945 | g_key_hit[led] = 255; | ||
| 1946 | } | ||
| 1947 | } | ||
| 1948 | |||
| 1949 | bool process_record_backlight(uint16_t keycode, keyrecord_t *record) | ||
| 1950 | { | ||
| 1951 | // Record keypresses for backlight effects | ||
| 1952 | if ( record->event.pressed ) | ||
| 1953 | { | ||
| 1954 | backlight_set_key_hit( record->event.key.row, record->event.key.col ); | ||
| 1955 | } | ||
| 1956 | |||
| 1957 | switch(keycode) | ||
| 1958 | { | ||
| 1959 | case BR_INC: | ||
| 1960 | if (record->event.pressed) | ||
| 1961 | { | ||
| 1962 | backlight_brightness_increase(); | ||
| 1963 | } | ||
| 1964 | return false; | ||
| 1965 | break; | ||
| 1966 | case BR_DEC: | ||
| 1967 | if (record->event.pressed) | ||
| 1968 | { | ||
| 1969 | backlight_brightness_decrease(); | ||
| 1970 | } | ||
| 1971 | return false; | ||
| 1972 | break; | ||
| 1973 | case EF_INC: | ||
| 1974 | if (record->event.pressed) | ||
| 1975 | { | ||
| 1976 | backlight_effect_increase(); | ||
| 1977 | } | ||
| 1978 | return false; | ||
| 1979 | break; | ||
| 1980 | case EF_DEC: | ||
| 1981 | if (record->event.pressed) | ||
| 1982 | { | ||
| 1983 | backlight_effect_decrease(); | ||
| 1984 | } | ||
| 1985 | return false; | ||
| 1986 | break; | ||
| 1987 | case ES_INC: | ||
| 1988 | if (record->event.pressed) | ||
| 1989 | { | ||
| 1990 | backlight_effect_speed_increase(); | ||
| 1991 | } | ||
| 1992 | return false; | ||
| 1993 | break; | ||
| 1994 | case ES_DEC: | ||
| 1995 | if (record->event.pressed) | ||
| 1996 | { | ||
| 1997 | backlight_effect_speed_decrease(); | ||
| 1998 | } | ||
| 1999 | return false; | ||
| 2000 | break; | ||
| 2001 | case H1_INC: | ||
| 2002 | if (record->event.pressed) | ||
| 2003 | { | ||
| 2004 | backlight_color_1_hue_increase(); | ||
| 2005 | } | ||
| 2006 | return false; | ||
| 2007 | break; | ||
| 2008 | case H1_DEC: | ||
| 2009 | if (record->event.pressed) | ||
| 2010 | { | ||
| 2011 | backlight_color_1_hue_decrease(); | ||
| 2012 | } | ||
| 2013 | return false; | ||
| 2014 | break; | ||
| 2015 | case S1_INC: | ||
| 2016 | if (record->event.pressed) | ||
| 2017 | { | ||
| 2018 | backlight_color_1_sat_increase(); | ||
| 2019 | } | ||
| 2020 | return false; | ||
| 2021 | break; | ||
| 2022 | case S1_DEC: | ||
| 2023 | if (record->event.pressed) | ||
| 2024 | { | ||
| 2025 | backlight_color_1_sat_decrease(); | ||
| 2026 | break; | ||
| 2027 | } | ||
| 2028 | return false; | ||
| 2029 | break; | ||
| 2030 | case H2_INC: | ||
| 2031 | if (record->event.pressed) | ||
| 2032 | { | ||
| 2033 | backlight_color_2_hue_increase(); | ||
| 2034 | } | ||
| 2035 | return false; | ||
| 2036 | break; | ||
| 2037 | case H2_DEC: | ||
| 2038 | if (record->event.pressed) | ||
| 2039 | { | ||
| 2040 | backlight_color_2_hue_decrease(); | ||
| 2041 | } | ||
| 2042 | return false; | ||
| 2043 | break; | ||
| 2044 | case S2_INC: | ||
| 2045 | if (record->event.pressed) | ||
| 2046 | { | ||
| 2047 | backlight_color_2_sat_increase(); | ||
| 2048 | } | ||
| 2049 | return false; | ||
| 2050 | break; | ||
| 2051 | case S2_DEC: | ||
| 2052 | if (record->event.pressed) | ||
| 2053 | { | ||
| 2054 | backlight_color_2_sat_decrease(); | ||
| 2055 | break; | ||
| 2056 | } | ||
| 2057 | return false; | ||
| 2058 | break; | ||
| 2059 | } | ||
| 2060 | |||
| 2061 | return true; | ||
| 2062 | } | ||
| 2063 | |||
| 2064 | // Deals with the messy details of incrementing an integer | ||
| 2065 | uint8_t increment( uint8_t value, uint8_t step, uint8_t min, uint8_t max ) | ||
| 2066 | { | ||
| 2067 | int16_t new_value = value; | ||
| 2068 | new_value += step; | ||
| 2069 | return MIN( MAX( new_value, min ), max ); | ||
| 2070 | } | ||
| 2071 | |||
| 2072 | uint8_t decrement( uint8_t value, uint8_t step, uint8_t min, uint8_t max ) | ||
| 2073 | { | ||
| 2074 | int16_t new_value = value; | ||
| 2075 | new_value -= step; | ||
| 2076 | return MIN( MAX( new_value, min ), max ); | ||
| 2077 | } | ||
| 2078 | |||
| 2079 | void backlight_effect_increase(void) | ||
| 2080 | { | ||
| 2081 | g_config.effect = increment( g_config.effect, 1, 0, BACKLIGHT_EFFECT_MAX ); | ||
| 2082 | backlight_config_save(); | ||
| 2083 | } | ||
| 2084 | |||
| 2085 | void backlight_effect_decrease(void) | ||
| 2086 | { | ||
| 2087 | g_config.effect = decrement( g_config.effect, 1, 0, BACKLIGHT_EFFECT_MAX ); | ||
| 2088 | backlight_config_save(); | ||
| 2089 | } | ||
| 2090 | |||
| 2091 | void backlight_effect_speed_increase(void) | ||
| 2092 | { | ||
| 2093 | g_config.effect_speed = increment( g_config.effect_speed, 1, 0, 3 ); | ||
| 2094 | backlight_config_save(); | ||
| 2095 | } | ||
| 2096 | |||
| 2097 | void backlight_effect_speed_decrease(void) | ||
| 2098 | { | ||
| 2099 | g_config.effect_speed = decrement( g_config.effect_speed, 1, 0, 3 ); | ||
| 2100 | backlight_config_save(); | ||
| 2101 | } | ||
| 2102 | |||
| 2103 | void backlight_brightness_increase(void) | ||
| 2104 | { | ||
| 2105 | g_config.brightness = increment( g_config.brightness, 8, 0, 255 ); | ||
| 2106 | backlight_config_save(); | ||
| 2107 | } | ||
| 2108 | |||
| 2109 | void backlight_brightness_decrease(void) | ||
| 2110 | { | ||
| 2111 | g_config.brightness = decrement( g_config.brightness, 8, 0, 255 ); | ||
| 2112 | backlight_config_save(); | ||
| 2113 | } | ||
| 2114 | |||
| 2115 | void backlight_color_1_hue_increase(void) | ||
| 2116 | { | ||
| 2117 | g_config.color_1.h = increment( g_config.color_1.h, 8, 0, 255 ); | ||
| 2118 | backlight_config_save(); | ||
| 2119 | } | ||
| 2120 | |||
| 2121 | void backlight_color_1_hue_decrease(void) | ||
| 2122 | { | ||
| 2123 | g_config.color_1.h = decrement( g_config.color_1.h, 8, 0, 255 ); | ||
| 2124 | backlight_config_save(); | ||
| 2125 | } | ||
| 2126 | |||
| 2127 | void backlight_color_1_sat_increase(void) | ||
| 2128 | { | ||
| 2129 | g_config.color_1.s = increment( g_config.color_1.s, 8, 0, 255 ); | ||
| 2130 | backlight_config_save(); | ||
| 2131 | } | ||
| 2132 | |||
| 2133 | void backlight_color_1_sat_decrease(void) | ||
| 2134 | { | ||
| 2135 | g_config.color_1.s = decrement( g_config.color_1.s, 8, 0, 255 ); | ||
| 2136 | backlight_config_save(); | ||
| 2137 | } | ||
| 2138 | |||
| 2139 | void backlight_color_2_hue_increase(void) | ||
| 2140 | { | ||
| 2141 | g_config.color_2.h = increment( g_config.color_2.h, 8, 0, 255 ); | ||
| 2142 | backlight_config_save(); | ||
| 2143 | } | ||
| 2144 | |||
| 2145 | void backlight_color_2_hue_decrease(void) | ||
| 2146 | { | ||
| 2147 | g_config.color_2.h = decrement( g_config.color_2.h, 8, 0, 255 ); | ||
| 2148 | backlight_config_save(); | ||
| 2149 | } | ||
| 2150 | |||
| 2151 | void backlight_color_2_sat_increase(void) | ||
| 2152 | { | ||
| 2153 | g_config.color_2.s = increment( g_config.color_2.s, 8, 0, 255 ); | ||
| 2154 | backlight_config_save(); | ||
| 2155 | } | ||
| 2156 | |||
| 2157 | void backlight_color_2_sat_decrease(void) | ||
| 2158 | { | ||
| 2159 | g_config.color_2.s = decrement( g_config.color_2.s, 8, 0, 255 ); | ||
| 2160 | backlight_config_save(); | ||
| 2161 | } | ||
| 2162 | |||
| 2163 | #if defined(RGB_DEBUGGING_ONLY) | ||
| 2164 | void backlight_test_led( uint8_t index, bool red, bool green, bool blue ) | ||
| 2165 | { | ||
| 2166 | for ( int i=0; i<BACKLIGHT_LED_COUNT; i++ ) | ||
| 2167 | { | ||
| 2168 | if ( i == index ) | ||
| 2169 | { | ||
| 2170 | IS31FL3731_set_led_control_register( i, red, green, blue ); | ||
| 2171 | } | ||
| 2172 | else | ||
| 2173 | { | ||
| 2174 | IS31FL3731_set_led_control_register( i, false, false, false ); | ||
| 2175 | } | ||
| 2176 | } | ||
| 2177 | } | ||
| 2178 | |||
| 2179 | void backlight_debug_led( bool state ) | ||
| 2180 | { | ||
| 2181 | if (state) | ||
| 2182 | { | ||
| 2183 | // Output high. | ||
| 2184 | DDRE |= (1<<6); | ||
| 2185 | PORTE |= (1<<6); | ||
| 2186 | } | ||
| 2187 | else | ||
| 2188 | { | ||
| 2189 | // Output low. | ||
| 2190 | DDRE &= ~(1<<6); | ||
| 2191 | PORTE &= ~(1<<6); | ||
| 2192 | } | ||
| 2193 | } | ||
| 2194 | #endif // defined(RGB_DEBUGGING_ONLY) | ||
| 2195 | |||
| 2196 | #endif // BACKLIGHT_ENABLED | ||
diff --git a/keyboards/zeal60/rgb_backlight.h b/keyboards/zeal60/rgb_backlight.h deleted file mode 100644 index aa24e3491..000000000 --- a/keyboards/zeal60/rgb_backlight.h +++ /dev/null | |||
| @@ -1,110 +0,0 @@ | |||
| 1 | /* Copyright 2017 Jason Williams (Wilba) | ||
| 2 | * | ||
| 3 | * This program is free software: you can redistribute it and/or modify | ||
| 4 | * it under the terms of the GNU General Public License as published by | ||
| 5 | * the Free Software Foundation, either version 2 of the License, or | ||
| 6 | * (at your option) any later version. | ||
| 7 | * | ||
| 8 | * This program is distributed in the hope that it will be useful, | ||
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 11 | * GNU General Public License for more details. | ||
| 12 | * | ||
| 13 | * You should have received a copy of the GNU General Public License | ||
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 15 | */ | ||
| 16 | #pragma once | ||
| 17 | |||
| 18 | #if RGB_BACKLIGHT_ENABLED | ||
| 19 | #else | ||
| 20 | #error rgb_backlight.h included when RGB_BACKLIGHT_ENABLED == 0 | ||
| 21 | #endif // RGB_BACKLIGHT_ENABLED | ||
| 22 | |||
| 23 | #include <stdint.h> | ||
| 24 | #include <stdbool.h> | ||
| 25 | |||
| 26 | #include "quantum/color.h" | ||
| 27 | |||
| 28 | typedef struct PACKED | ||
| 29 | { | ||
| 30 | uint8_t h; | ||
| 31 | uint8_t s; | ||
| 32 | } HS; | ||
| 33 | |||
| 34 | typedef struct | ||
| 35 | { | ||
| 36 | HS color; | ||
| 37 | uint8_t index; | ||
| 38 | } backlight_config_indicator; | ||
| 39 | |||
| 40 | typedef struct | ||
| 41 | { | ||
| 42 | bool use_split_backspace:1; // | | ||
| 43 | bool use_split_left_shift:1; // | | ||
| 44 | bool use_split_right_shift:1; // | | ||
| 45 | bool use_7u_spacebar:1; // | | ||
| 46 | bool use_iso_enter:1; // | | ||
| 47 | bool disable_when_usb_suspended:1; // | | ||
| 48 | bool disable_hhkb_blocker_leds:1; // | | ||
| 49 | bool __pad7:1; // 1 byte | ||
| 50 | uint8_t disable_after_timeout; // 1 byte | ||
| 51 | uint8_t brightness; // 1 byte | ||
| 52 | uint8_t effect; // 1 byte | ||
| 53 | uint8_t effect_speed; // 1 byte | ||
| 54 | HS color_1; // 2 bytes | ||
| 55 | HS color_2; // 2 bytes | ||
| 56 | backlight_config_indicator caps_lock_indicator; // 3 bytes | ||
| 57 | backlight_config_indicator layer_1_indicator; // 3 bytes | ||
| 58 | backlight_config_indicator layer_2_indicator; // 3 bytes | ||
| 59 | backlight_config_indicator layer_3_indicator; // 3 bytes | ||
| 60 | uint16_t alphas_mods[5]; // 10 bytes | ||
| 61 | #if defined(RGB_BACKLIGHT_M6_B) | ||
| 62 | HS custom_color[6]; // 12 bytes | ||
| 63 | #endif | ||
| 64 | } backlight_config; // = 31 bytes (M6-B = 43 bytes) | ||
| 65 | |||
| 66 | void backlight_config_load(void); | ||
| 67 | void backlight_config_save(void); | ||
| 68 | void backlight_config_set_value( uint8_t *data ); | ||
| 69 | void backlight_config_get_value( uint8_t *data ); | ||
| 70 | |||
| 71 | void backlight_init_drivers(void); | ||
| 72 | |||
| 73 | void backlight_timer_init(void); | ||
| 74 | void backlight_timer_enable(void); | ||
| 75 | void backlight_timer_disable(void); | ||
| 76 | |||
| 77 | void backlight_set_suspend_state(bool state); | ||
| 78 | void backlight_set_indicator_state(uint8_t state); | ||
| 79 | |||
| 80 | // This should not be called from an interrupt | ||
| 81 | // (eg. from a timer interrupt). | ||
| 82 | // Call this while idle (in between matrix scans). | ||
| 83 | // If the buffer is dirty, it will update the driver with the buffer. | ||
| 84 | void backlight_update_pwm_buffers(void); | ||
| 85 | |||
| 86 | // Handle backlight specific keycodes | ||
| 87 | bool process_record_backlight(uint16_t keycode, keyrecord_t *record); | ||
| 88 | |||
| 89 | void backlight_set_key_hit(uint8_t row, uint8_t col); | ||
| 90 | |||
| 91 | void backlight_effect_increase(void); | ||
| 92 | void backlight_effect_decrease(void); | ||
| 93 | void backlight_effect_speed_increase(void); | ||
| 94 | void backlight_effect_speed_decrease(void); | ||
| 95 | |||
| 96 | void backlight_brightness_increase(void); | ||
| 97 | void backlight_brightness_decrease(void); | ||
| 98 | |||
| 99 | void backlight_color_1_hue_increase(void); | ||
| 100 | void backlight_color_1_hue_decrease(void); | ||
| 101 | void backlight_color_1_sat_increase(void); | ||
| 102 | void backlight_color_1_sat_decrease(void); | ||
| 103 | void backlight_color_2_hue_increase(void); | ||
| 104 | void backlight_color_2_hue_decrease(void); | ||
| 105 | void backlight_color_2_sat_increase(void); | ||
| 106 | void backlight_color_2_sat_decrease(void); | ||
| 107 | |||
| 108 | void backlight_test_led( uint8_t index, bool red, bool green, bool blue ); | ||
| 109 | void backlight_debug_led(bool state); | ||
| 110 | |||
diff --git a/keyboards/zeal60/rgb_backlight_api.h b/keyboards/zeal60/rgb_backlight_api.h deleted file mode 100644 index 680ba4d99..000000000 --- a/keyboards/zeal60/rgb_backlight_api.h +++ /dev/null | |||
| @@ -1,43 +0,0 @@ | |||
| 1 | /* Copyright 2017 Jason Williams (Wilba) | ||
| 2 | * | ||
| 3 | * This program is free software: you can redistribute it and/or modify | ||
| 4 | * it under the terms of the GNU General Public License as published by | ||
| 5 | * the Free Software Foundation, either version 2 of the License, or | ||
| 6 | * (at your option) any later version. | ||
| 7 | * | ||
| 8 | * This program is distributed in the hope that it will be useful, | ||
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 11 | * GNU General Public License for more details. | ||
| 12 | * | ||
| 13 | * You should have received a copy of the GNU General Public License | ||
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 15 | */ | ||
| 16 | #pragma once | ||
| 17 | |||
| 18 | enum backlight_config_value | ||
| 19 | { | ||
| 20 | id_use_split_backspace = 0x01, | ||
| 21 | id_use_split_left_shift = 0x02, | ||
| 22 | id_use_split_right_shift = 0x03, | ||
| 23 | id_use_7u_spacebar = 0x04, | ||
| 24 | id_use_iso_enter = 0x05, | ||
| 25 | id_disable_hhkb_blocker_leds = 0x06, | ||
| 26 | id_disable_when_usb_suspended = 0x07, | ||
| 27 | id_disable_after_timeout = 0x08, | ||
| 28 | id_brightness = 0x09, | ||
| 29 | id_effect = 0x0A, | ||
| 30 | id_effect_speed = 0x0B, | ||
| 31 | id_color_1 = 0x0C, | ||
| 32 | id_color_2 = 0x0D, | ||
| 33 | id_caps_lock_indicator_color = 0x0E, | ||
| 34 | id_caps_lock_indicator_row_col = 0x0F, | ||
| 35 | id_layer_1_indicator_color = 0x10, | ||
| 36 | id_layer_1_indicator_row_col = 0x11, | ||
| 37 | id_layer_2_indicator_color = 0x12, | ||
| 38 | id_layer_2_indicator_row_col = 0x13, | ||
| 39 | id_layer_3_indicator_color = 0x14, | ||
| 40 | id_layer_3_indicator_row_col = 0x15, | ||
| 41 | id_alphas_mods = 0x16, | ||
| 42 | id_custom_color = 0x17 | ||
| 43 | }; | ||
diff --git a/keyboards/zeal60/rgb_backlight_keycodes.h b/keyboards/zeal60/rgb_backlight_keycodes.h deleted file mode 100644 index ba7f03f89..000000000 --- a/keyboards/zeal60/rgb_backlight_keycodes.h +++ /dev/null | |||
| @@ -1,34 +0,0 @@ | |||
| 1 | /* Copyright 2017 Jason Williams (Wilba) | ||
| 2 | * | ||
| 3 | * This program is free software: you can redistribute it and/or modify | ||
| 4 | * it under the terms of the GNU General Public License as published by | ||
| 5 | * the Free Software Foundation, either version 2 of the License, or | ||
| 6 | * (at your option) any later version. | ||
| 7 | * | ||
| 8 | * This program is distributed in the hope that it will be useful, | ||
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 11 | * GNU General Public License for more details. | ||
| 12 | * | ||
| 13 | * You should have received a copy of the GNU General Public License | ||
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 15 | */ | ||
| 16 | #pragma once | ||
| 17 | |||
| 18 | // This is hardcoded at 0x5F00 so it's well after keycode value SAFE_RANGE | ||
| 19 | enum backlight_keycodes { | ||
| 20 | BR_INC = 0x5F00, // backlight brightness increase | ||
| 21 | BR_DEC, // backlight brightness decrease | ||
| 22 | EF_INC, // backlight effect increase | ||
| 23 | EF_DEC, // backlight effect decrease | ||
| 24 | ES_INC, | ||
| 25 | ES_DEC, | ||
| 26 | H1_INC, | ||
| 27 | H1_DEC, | ||
| 28 | S1_INC, | ||
| 29 | S1_DEC, | ||
| 30 | H2_INC, | ||
| 31 | H2_DEC, | ||
| 32 | S2_INC, | ||
| 33 | S2_DEC | ||
| 34 | }; | ||
diff --git a/keyboards/zeal60/rules.mk b/keyboards/zeal60/rules.mk deleted file mode 100644 index 1327d8821..000000000 --- a/keyboards/zeal60/rules.mk +++ /dev/null | |||
| @@ -1,79 +0,0 @@ | |||
| 1 | |||
| 2 | |||
| 3 | # project specific files | ||
| 4 | SRC = rgb_backlight.c \ | ||
| 5 | quantum/color.c \ | ||
| 6 | drivers/issi/is31fl3731.c \ | ||
| 7 | drivers/avr/i2c_master.c | ||
| 8 | |||
| 9 | # MCU name | ||
| 10 | MCU = atmega32u4 | ||
| 11 | |||
| 12 | # Processor frequency. | ||
| 13 | # This will define a symbol, F_CPU, in all source code files equal to the | ||
| 14 | # processor frequency in Hz. You can then use this symbol in your source code to | ||
| 15 | # calculate timings. Do NOT tack on a 'UL' at the end, this will be done | ||
| 16 | # automatically to create a 32-bit value in your source code. | ||
| 17 | # | ||
| 18 | # This will be an integer division of F_USB below, as it is sourced by | ||
| 19 | # F_USB after it has run through any CPU prescalers. Note that this value | ||
| 20 | # does not *change* the processor frequency - it should merely be updated to | ||
| 21 | # reflect the processor speed set externally so that the code can use accurate | ||
| 22 | # software delays. | ||
| 23 | F_CPU = 16000000 | ||
| 24 | |||
| 25 | # | ||
| 26 | # LUFA specific | ||
| 27 | # | ||
| 28 | # Target architecture (see library "Board Types" documentation). | ||
| 29 | ARCH = AVR8 | ||
| 30 | |||
| 31 | # Input clock frequency. | ||
| 32 | # This will define a symbol, F_USB, in all source code files equal to the | ||
| 33 | # input clock frequency (before any prescaling is performed) in Hz. This value may | ||
| 34 | # differ from F_CPU if prescaling is used on the latter, and is required as the | ||
| 35 | # raw input clock is fed directly to the PLL sections of the AVR for high speed | ||
| 36 | # clock generation for the USB and other AVR subsections. Do NOT tack on a 'UL' | ||
| 37 | # at the end, this will be done automatically to create a 32-bit value in your | ||
| 38 | # source code. | ||
| 39 | # | ||
| 40 | # If no clock division is performed on the input clock inside the AVR (via the | ||
| 41 | # CPU clock adjust registers or the clock division fuses), this will be equal to F_CPU. | ||
| 42 | F_USB = $(F_CPU) | ||
| 43 | |||
| 44 | # Interrupt driven control endpoint task(+60) | ||
| 45 | OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT | ||
| 46 | |||
| 47 | # Boot Section | ||
| 48 | BOOTLOADER = atmel-dfu | ||
| 49 | |||
| 50 | # Do not put the microcontroller into power saving mode | ||
| 51 | # when we get USB suspend event. We want it to keep updating | ||
| 52 | # backlight effects. | ||
| 53 | OPT_DEFS += -DNO_SUSPEND_POWER_DOWN | ||
| 54 | |||
| 55 | # Build Options | ||
| 56 | # change to "no" to disable the options, or define them in the Makefile in | ||
| 57 | # the appropriate keymap folder that will get included automatically | ||
| 58 | # | ||
| 59 | BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000) | ||
| 60 | MOUSEKEY_ENABLE = no # Mouse keys(+4700) | ||
| 61 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) | ||
| 62 | CONSOLE_ENABLE = no # Console for debug(+400) | ||
| 63 | COMMAND_ENABLE = no # Commands for debug and configuration | ||
| 64 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | ||
| 65 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | ||
| 66 | MIDI_ENABLE = no # MIDI controls | ||
| 67 | AUDIO_ENABLE = no # Audio output on port C6 | ||
| 68 | UNICODE_ENABLE = no # Unicode | ||
| 69 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | ||
| 70 | RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight. | ||
| 71 | |||
| 72 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE | ||
| 73 | SLEEP_LED_ENABLE ?= no # Breathing sleep LED during USB suspend | ||
| 74 | |||
| 75 | RAW_ENABLE = yes | ||
| 76 | DYNAMIC_KEYMAP_ENABLE = yes | ||
| 77 | CIE1931_CURVE = yes | ||
| 78 | |||
| 79 | LAYOUTS = 60_ansi 60_iso 60_hhkb 60_ansi_split_bs_rshift | ||
diff --git a/keyboards/zeal60/zeal60.c b/keyboards/zeal60/zeal60.c deleted file mode 100644 index 93f442f55..000000000 --- a/keyboards/zeal60/zeal60.c +++ /dev/null | |||
| @@ -1,376 +0,0 @@ | |||
| 1 | /* Copyright 2017 Jason Williams (Wilba) | ||
| 2 | * | ||
| 3 | * This program is free software: you can redistribute it and/or modify | ||
| 4 | * it under the terms of the GNU General Public License as published by | ||
| 5 | * the Free Software Foundation, either version 2 of the License, or | ||
| 6 | * (at your option) any later version. | ||
| 7 | * | ||
| 8 | * This program is distributed in the hope that it will be useful, | ||
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 11 | * GNU General Public License for more details. | ||
| 12 | * | ||
| 13 | * You should have received a copy of the GNU General Public License | ||
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 15 | */ | ||
| 16 | #include "zeal60.h" | ||
| 17 | #include "zeal60_api.h" | ||
| 18 | |||
| 19 | // Check that no backlight functions are called | ||
| 20 | #if RGB_BACKLIGHT_ENABLED | ||
| 21 | #include "rgb_backlight.h" | ||
| 22 | #endif // BACKLIGHT_ENABLED | ||
| 23 | |||
| 24 | #include "raw_hid.h" | ||
| 25 | #include "dynamic_keymap.h" | ||
| 26 | #include "timer.h" | ||
| 27 | #include "tmk_core/common/eeprom.h" | ||
| 28 | |||
| 29 | bool eeprom_is_valid(void) | ||
| 30 | { | ||
| 31 | return (eeprom_read_word(((void*)EEPROM_MAGIC_ADDR)) == EEPROM_MAGIC && | ||
| 32 | eeprom_read_byte(((void*)EEPROM_VERSION_ADDR)) == EEPROM_VERSION); | ||
| 33 | } | ||
| 34 | |||
| 35 | void eeprom_set_valid(bool valid) | ||
| 36 | { | ||
| 37 | eeprom_update_word(((void*)EEPROM_MAGIC_ADDR), valid ? EEPROM_MAGIC : 0xFFFF); | ||
| 38 | eeprom_update_byte(((void*)EEPROM_VERSION_ADDR), valid ? EEPROM_VERSION : 0xFF); | ||
| 39 | } | ||
| 40 | |||
| 41 | void eeprom_reset(void) | ||
| 42 | { | ||
| 43 | // Set the Zeal60 specific EEPROM state as invalid. | ||
| 44 | eeprom_set_valid(false); | ||
| 45 | // Set the TMK/QMK EEPROM state as invalid. | ||
| 46 | eeconfig_disable(); | ||
| 47 | } | ||
| 48 | |||
| 49 | #ifdef RAW_ENABLE | ||
| 50 | |||
| 51 | void raw_hid_receive( uint8_t *data, uint8_t length ) | ||
| 52 | { | ||
| 53 | uint8_t *command_id = &(data[0]); | ||
| 54 | uint8_t *command_data = &(data[1]); | ||
| 55 | switch ( *command_id ) | ||
| 56 | { | ||
| 57 | case id_get_protocol_version: | ||
| 58 | { | ||
| 59 | command_data[0] = PROTOCOL_VERSION >> 8; | ||
| 60 | command_data[1] = PROTOCOL_VERSION & 0xFF; | ||
| 61 | break; | ||
| 62 | } | ||
| 63 | case id_get_keyboard_value: | ||
| 64 | { | ||
| 65 | if ( command_data[0] == id_uptime ) | ||
| 66 | { | ||
| 67 | uint32_t value = timer_read32(); | ||
| 68 | command_data[1] = (value >> 24 ) & 0xFF; | ||
| 69 | command_data[2] = (value >> 16 ) & 0xFF; | ||
| 70 | command_data[3] = (value >> 8 ) & 0xFF; | ||
| 71 | command_data[4] = value & 0xFF; | ||
| 72 | } | ||
| 73 | else | ||
| 74 | { | ||
| 75 | *command_id = id_unhandled; | ||
| 76 | } | ||
| 77 | break; | ||
| 78 | } | ||
| 79 | #ifdef DYNAMIC_KEYMAP_ENABLE | ||
| 80 | case id_dynamic_keymap_get_keycode: | ||
| 81 | { | ||
| 82 | uint16_t keycode = dynamic_keymap_get_keycode( command_data[0], command_data[1], command_data[2] ); | ||
| 83 | command_data[3] = keycode >> 8; | ||
| 84 | command_data[4] = keycode & 0xFF; | ||
| 85 | break; | ||
| 86 | } | ||
| 87 | case id_dynamic_keymap_set_keycode: | ||
| 88 | { | ||
| 89 | dynamic_keymap_set_keycode( command_data[0], command_data[1], command_data[2], ( command_data[3] << 8 ) | command_data[4] ); | ||
| 90 | break; | ||
| 91 | } | ||
| 92 | case id_dynamic_keymap_reset: | ||
| 93 | { | ||
| 94 | dynamic_keymap_reset(); | ||
| 95 | break; | ||
| 96 | } | ||
| 97 | case id_dynamic_keymap_macro_get_count: | ||
| 98 | { | ||
| 99 | command_data[0] = dynamic_keymap_macro_get_count(); | ||
| 100 | break; | ||
| 101 | } | ||
| 102 | case id_dynamic_keymap_macro_get_buffer_size: | ||
| 103 | { | ||
| 104 | uint16_t size = dynamic_keymap_macro_get_buffer_size(); | ||
| 105 | command_data[0] = size >> 8; | ||
| 106 | command_data[1] = size & 0xFF; | ||
| 107 | break; | ||
| 108 | } | ||
| 109 | case id_dynamic_keymap_macro_get_buffer: | ||
| 110 | { | ||
| 111 | uint16_t offset = ( command_data[0] << 8 ) | command_data[1]; | ||
| 112 | uint16_t size = command_data[2]; // size <= 28 | ||
| 113 | dynamic_keymap_macro_get_buffer( offset, size, &command_data[3] ); | ||
| 114 | break; | ||
| 115 | } | ||
| 116 | case id_dynamic_keymap_macro_set_buffer: | ||
| 117 | { | ||
| 118 | uint16_t offset = ( command_data[0] << 8 ) | command_data[1]; | ||
| 119 | uint16_t size = command_data[2]; // size <= 28 | ||
| 120 | dynamic_keymap_macro_set_buffer( offset, size, &command_data[3] ); | ||
| 121 | break; | ||
| 122 | } | ||
| 123 | case id_dynamic_keymap_macro_reset: | ||
| 124 | { | ||
| 125 | dynamic_keymap_macro_reset(); | ||
| 126 | break; | ||
| 127 | } | ||
| 128 | case id_dynamic_keymap_get_layer_count: | ||
| 129 | { | ||
| 130 | command_data[0] = dynamic_keymap_get_layer_count(); | ||
| 131 | break; | ||
| 132 | } | ||
| 133 | case id_dynamic_keymap_get_buffer: | ||
| 134 | { | ||
| 135 | uint16_t offset = ( command_data[0] << 8 ) | command_data[1]; | ||
| 136 | uint16_t size = command_data[2]; // size <= 28 | ||
| 137 | dynamic_keymap_get_buffer( offset, size, &command_data[3] ); | ||
| 138 | break; | ||
| 139 | } | ||
| 140 | case id_dynamic_keymap_set_buffer: | ||
| 141 | { | ||
| 142 | uint16_t offset = ( command_data[0] << 8 ) | command_data[1]; | ||
| 143 | uint16_t size = command_data[2]; // size <= 28 | ||
| 144 | dynamic_keymap_set_buffer( offset, size, &command_data[3] ); | ||
| 145 | break; | ||
| 146 | } | ||
| 147 | #endif // DYNAMIC_KEYMAP_ENABLE | ||
| 148 | #if RGB_BACKLIGHT_ENABLED | ||
| 149 | case id_backlight_config_set_value: | ||
| 150 | { | ||
| 151 | backlight_config_set_value(command_data); | ||
| 152 | break; | ||
| 153 | } | ||
| 154 | case id_backlight_config_get_value: | ||
| 155 | { | ||
| 156 | backlight_config_get_value(command_data); | ||
| 157 | break; | ||
| 158 | } | ||
| 159 | case id_backlight_config_save: | ||
| 160 | { | ||
| 161 | backlight_config_save(); | ||
| 162 | break; | ||
| 163 | } | ||
| 164 | #endif // RGB_BACKLIGHT_ENABLED | ||
| 165 | case id_eeprom_reset: | ||
| 166 | { | ||
| 167 | eeprom_reset(); | ||
| 168 | break; | ||
| 169 | } | ||
| 170 | case id_bootloader_jump: | ||
| 171 | { | ||
| 172 | // Need to send data back before the jump | ||
| 173 | // Informs host that the command is handled | ||
| 174 | raw_hid_send( data, length ); | ||
| 175 | // Give host time to read it | ||
| 176 | wait_ms(100); | ||
| 177 | bootloader_jump(); | ||
| 178 | break; | ||
| 179 | } | ||
| 180 | default: | ||
| 181 | { | ||
| 182 | // Unhandled message. | ||
| 183 | *command_id = id_unhandled; | ||
| 184 | break; | ||
| 185 | } | ||
| 186 | } | ||
| 187 | |||
| 188 | // Return same buffer with values changed | ||
| 189 | raw_hid_send( data, length ); | ||
| 190 | |||
| 191 | } | ||
| 192 | |||
| 193 | #endif | ||
| 194 | |||
| 195 | void main_init(void) | ||
| 196 | { | ||
| 197 | // If the EEPROM has the magic, the data is good. | ||
| 198 | // OK to load from EEPROM. | ||
| 199 | if (eeprom_is_valid()) { | ||
| 200 | #if RGB_BACKLIGHT_ENABLED | ||
| 201 | backlight_config_load(); | ||
| 202 | #endif // RGB_BACKLIGHT_ENABLED | ||
| 203 | } else { | ||
| 204 | #if RGB_BACKLIGHT_ENABLED | ||
| 205 | // If the EEPROM has not been saved before, or is out of date, | ||
| 206 | // save the default values to the EEPROM. Default values | ||
| 207 | // come from construction of the zeal_backlight_config instance. | ||
| 208 | backlight_config_save(); | ||
| 209 | #endif // RGB_BACKLIGHT_ENABLED | ||
| 210 | #ifdef DYNAMIC_KEYMAP_ENABLE | ||
| 211 | // This resets the keymaps in EEPROM to what is in flash. | ||
| 212 | dynamic_keymap_reset(); | ||
| 213 | // This resets the macros in EEPROM to nothing. | ||
| 214 | dynamic_keymap_macro_reset(); | ||
| 215 | #endif | ||
| 216 | // Save the magic number last, in case saving was interrupted | ||
| 217 | eeprom_set_valid(true); | ||
| 218 | } | ||
| 219 | |||
| 220 | #if RGB_BACKLIGHT_ENABLED | ||
| 221 | // Initialize LED drivers for backlight. | ||
| 222 | backlight_init_drivers(); | ||
| 223 | |||
| 224 | backlight_timer_init(); | ||
| 225 | backlight_timer_enable(); | ||
| 226 | #endif // RGB_BACKLIGHT_ENABLED | ||
| 227 | } | ||
| 228 | |||
| 229 | void bootmagic_lite(void) | ||
| 230 | { | ||
| 231 | // The lite version of TMK's bootmagic. | ||
| 232 | // 100% less potential for accidentally making the | ||
| 233 | // keyboard do stupid things. | ||
| 234 | |||
| 235 | // We need multiple scans because debouncing can't be turned off. | ||
| 236 | matrix_scan(); | ||
| 237 | wait_ms(DEBOUNCE); | ||
| 238 | wait_ms(DEBOUNCE); | ||
| 239 | matrix_scan(); | ||
| 240 | |||
| 241 | // If the Esc (matrix 0,0) is held down on power up, | ||
| 242 | // reset the EEPROM valid state and jump to bootloader. | ||
| 243 | if ( matrix_get_row(0) & (1<<0) ) { | ||
| 244 | eeprom_reset(); | ||
| 245 | bootloader_jump(); | ||
| 246 | } | ||
| 247 | } | ||
| 248 | |||
| 249 | void matrix_init_kb(void) | ||
| 250 | { | ||
| 251 | bootmagic_lite(); | ||
| 252 | main_init(); | ||
| 253 | matrix_init_user(); | ||
| 254 | } | ||
| 255 | |||
| 256 | void matrix_scan_kb(void) | ||
| 257 | { | ||
| 258 | #if RGB_BACKLIGHT_ENABLED | ||
| 259 | // This only updates the LED driver buffers if something has changed. | ||
| 260 | backlight_update_pwm_buffers(); | ||
| 261 | #endif // BACKLIGHT_ENABLED | ||
| 262 | matrix_scan_user(); | ||
| 263 | } | ||
| 264 | |||
| 265 | bool process_record_kb(uint16_t keycode, keyrecord_t *record) | ||
| 266 | { | ||
| 267 | #if RGB_BACKLIGHT_ENABLED | ||
| 268 | process_record_backlight(keycode, record); | ||
| 269 | #endif // BACKLIGHT_ENABLED | ||
| 270 | |||
| 271 | switch(keycode) { | ||
| 272 | case FN_MO13: | ||
| 273 | if (record->event.pressed) { | ||
| 274 | layer_on(1); | ||
| 275 | update_tri_layer(1, 2, 3); | ||
| 276 | } else { | ||
| 277 | layer_off(1); | ||
| 278 | update_tri_layer(1, 2, 3); | ||
| 279 | } | ||
| 280 | return false; | ||
| 281 | break; | ||
| 282 | case FN_MO23: | ||
| 283 | if (record->event.pressed) { | ||
| 284 | layer_on(2); | ||
| 285 | update_tri_layer(1, 2, 3); | ||
| 286 | } else { | ||
| 287 | layer_off(2); | ||
| 288 | update_tri_layer(1, 2, 3); | ||
| 289 | } | ||
| 290 | return false; | ||
| 291 | break; | ||
| 292 | } | ||
| 293 | |||
| 294 | #ifdef DYNAMIC_KEYMAP_ENABLE | ||
| 295 | // Handle macros | ||
| 296 | if (record->event.pressed) { | ||
| 297 | if ( keycode >= MACRO00 && keycode <= MACRO15 ) | ||
| 298 | { | ||
| 299 | uint8_t id = keycode - MACRO00; | ||
| 300 | dynamic_keymap_macro_send(id); | ||
| 301 | return false; | ||
| 302 | } | ||
| 303 | } | ||
| 304 | #endif //DYNAMIC_KEYMAP_ENABLE | ||
| 305 | |||
| 306 | return process_record_user(keycode, record); | ||
| 307 | } | ||
| 308 | |||
| 309 | // This overrides the one in quantum/keymap_common.c | ||
| 310 | uint16_t keymap_function_id_to_action( uint16_t function_id ) | ||
| 311 | { | ||
| 312 | // Zeal60 specific "action functions" are 0xF00 to 0xFFF | ||
| 313 | // i.e. F(0xF00) to F(0xFFF) are mapped to | ||
| 314 | // enum zeal60_action_functions by masking last 8 bits. | ||
| 315 | if ( function_id >= 0x0F00 && function_id <= 0x0FFF ) | ||
| 316 | { | ||
| 317 | uint8_t id = function_id & 0xFF; | ||
| 318 | switch ( id ) { | ||
| 319 | case TRIPLE_TAP_1_3: | ||
| 320 | case TRIPLE_TAP_2_3: | ||
| 321 | { | ||
| 322 | return ACTION_FUNCTION_TAP(id); | ||
| 323 | break; | ||
| 324 | } | ||
| 325 | default: | ||
| 326 | break; | ||
| 327 | } | ||
| 328 | } | ||
| 329 | |||
| 330 | return pgm_read_word(&fn_actions[function_id]); | ||
| 331 | } | ||
| 332 | |||
| 333 | |||
| 334 | // Zeal60 specific "action functions" | ||
| 335 | void action_function(keyrecord_t *record, uint8_t id, uint8_t opt) | ||
| 336 | { | ||
| 337 | switch (id) | ||
| 338 | { | ||
| 339 | case TRIPLE_TAP_1_3: | ||
| 340 | case TRIPLE_TAP_2_3: | ||
| 341 | if (record->event.pressed) { | ||
| 342 | layer_on( id == TRIPLE_TAP_1_3 ? 1 : 2 ); | ||
| 343 | if (record->tap.count && !record->tap.interrupted) { | ||
| 344 | if (record->tap.count >= 3) { | ||
| 345 | layer_invert(3); | ||
| 346 | } | ||
| 347 | } else { | ||
| 348 | record->tap.count = 0; | ||
| 349 | } | ||
| 350 | } else { | ||
| 351 | layer_off( id == TRIPLE_TAP_1_3 ? 1 : 2 ); | ||
| 352 | } | ||
| 353 | break; | ||
| 354 | } | ||
| 355 | } | ||
| 356 | |||
| 357 | void led_set_kb(uint8_t usb_led) | ||
| 358 | { | ||
| 359 | #if RGB_BACKLIGHT_ENABLED | ||
| 360 | backlight_set_indicator_state(usb_led); | ||
| 361 | #endif // RGB_BACKLIGHT_ENABLED | ||
| 362 | } | ||
| 363 | |||
| 364 | void suspend_power_down_kb(void) | ||
| 365 | { | ||
| 366 | #if RGB_BACKLIGHT_ENABLED | ||
| 367 | backlight_set_suspend_state(true); | ||
| 368 | #endif // RGB_BACKLIGHT_ENABLED | ||
| 369 | } | ||
| 370 | |||
| 371 | void suspend_wakeup_init_kb(void) | ||
| 372 | { | ||
| 373 | #if RGB_BACKLIGHT_ENABLED | ||
| 374 | backlight_set_suspend_state(false); | ||
| 375 | #endif // RGB_BACKLIGHT_ENABLED | ||
| 376 | } | ||
diff --git a/keyboards/zeal60/zeal60.h b/keyboards/zeal60/zeal60.h deleted file mode 100644 index ef9de7989..000000000 --- a/keyboards/zeal60/zeal60.h +++ /dev/null | |||
| @@ -1,93 +0,0 @@ | |||
| 1 | /* Copyright 2017 Jason Williams (Wilba) | ||
| 2 | * | ||
| 3 | * This program is free software: you can redistribute it and/or modify | ||
| 4 | * it under the terms of the GNU General Public License as published by | ||
| 5 | * the Free Software Foundation, either version 2 of the License, or | ||
| 6 | * (at your option) any later version. | ||
| 7 | * | ||
| 8 | * This program is distributed in the hope that it will be useful, | ||
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 11 | * GNU General Public License for more details. | ||
| 12 | * | ||
| 13 | * You should have received a copy of the GNU General Public License | ||
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 15 | */ | ||
| 16 | #pragma once | ||
| 17 | |||
| 18 | #include "quantum.h" | ||
| 19 | #include "rgb_backlight_keycodes.h" | ||
| 20 | #include "zeal60_keycodes.h" | ||
| 21 | |||
| 22 | #define XXX KC_NO | ||
| 23 | |||
| 24 | #define LAYOUT_60_all( \ | ||
| 25 | K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K2D, \ | ||
| 26 | K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, \ | ||
| 27 | K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2C, \ | ||
| 28 | K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D, \ | ||
| 29 | K40, K41, K42, K47, K4A, K4B, K4C, K4D \ | ||
| 30 | ) { \ | ||
| 31 | { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D }, \ | ||
| 32 | { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D }, \ | ||
| 33 | { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2C, K2D }, \ | ||
| 34 | { K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D }, \ | ||
| 35 | { K40, K41, K42, XXX, XXX, XXX, XXX, K47, XXX, XXX, K4A, K4B, K4C, K4D } \ | ||
| 36 | } | ||
| 37 | |||
| 38 | #define LAYOUT_60_ansi( \ | ||
| 39 | K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, \ | ||
| 40 | K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, \ | ||
| 41 | K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2C, \ | ||
| 42 | K30, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, \ | ||
| 43 | K40, K41, K42, K47, K4A, K4B, K4C, K4D \ | ||
| 44 | ) { \ | ||
| 45 | { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D }, \ | ||
| 46 | { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D }, \ | ||
| 47 | { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2C, XXX }, \ | ||
| 48 | { K30, XXX, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, XXX }, \ | ||
| 49 | { K40, K41, K42, XXX, XXX, XXX, XXX, K47, XXX, XXX, K4A, K4B, K4C, K4D } \ | ||
| 50 | } | ||
| 51 | |||
| 52 | #define LAYOUT_60_iso( \ | ||
| 53 | K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, \ | ||
| 54 | K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, \ | ||
| 55 | K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2C, \ | ||
| 56 | K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, \ | ||
| 57 | K40, K41, K42, K47, K4A, K4B, K4C, K4D \ | ||
| 58 | ) { \ | ||
| 59 | { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D }, \ | ||
| 60 | { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D }, \ | ||
| 61 | { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2C, XXX }, \ | ||
| 62 | { K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, XXX }, \ | ||
| 63 | { K40, K41, K42, XXX, XXX, XXX, XXX, K47, XXX, XXX, K4A, K4B, K4C, K4D } \ | ||
| 64 | } | ||
| 65 | |||
| 66 | #define LAYOUT_60_ansi_split_bs_rshift( \ | ||
| 67 | K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K2D, \ | ||
| 68 | K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, \ | ||
| 69 | K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2C, \ | ||
| 70 | K30, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D, \ | ||
| 71 | K40, K41, K42, K47, K4A, K4B, K4C, K4D \ | ||
| 72 | ) { \ | ||
| 73 | { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D }, \ | ||
| 74 | { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D }, \ | ||
| 75 | { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2C, K2D }, \ | ||
| 76 | { K30, XXX, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D }, \ | ||
| 77 | { K40, K41, K42, XXX, XXX, XXX, XXX, K47, XXX, XXX, K4A, K4B, K4C, K4D } \ | ||
| 78 | } | ||
| 79 | |||
| 80 | #define LAYOUT_60_hhkb( \ | ||
| 81 | K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K2D, \ | ||
| 82 | K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, \ | ||
| 83 | K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2C, \ | ||
| 84 | K30, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D, \ | ||
| 85 | K41, K42, K47, K4B, K4C \ | ||
| 86 | ) { \ | ||
| 87 | { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D }, \ | ||
| 88 | { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D }, \ | ||
| 89 | { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2C, K2D }, \ | ||
| 90 | { K30, XXX, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D }, \ | ||
| 91 | { XXX, K41, K42, XXX, XXX, XXX, XXX, K47, XXX, XXX, XXX, K4B, K4C, XXX } \ | ||
| 92 | } | ||
| 93 | |||
diff --git a/keyboards/zeal60/zeal60_api.h b/keyboards/zeal60/zeal60_api.h deleted file mode 100644 index 048344d71..000000000 --- a/keyboards/zeal60/zeal60_api.h +++ /dev/null | |||
| @@ -1,49 +0,0 @@ | |||
| 1 | /* Copyright 2017 Jason Williams (Wilba) | ||
| 2 | * | ||
| 3 | * This program is free software: you can redistribute it and/or modify | ||
| 4 | * it under the terms of the GNU General Public License as published by | ||
| 5 | * the Free Software Foundation, either version 2 of the License, or | ||
| 6 | * (at your option) any later version. | ||
| 7 | * | ||
| 8 | * This program is distributed in the hope that it will be useful, | ||
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 11 | * GNU General Public License for more details. | ||
| 12 | * | ||
| 13 | * You should have received a copy of the GNU General Public License | ||
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 15 | */ | ||
| 16 | #pragma once | ||
| 17 | |||
| 18 | #define PROTOCOL_VERSION 0x0008 | ||
| 19 | |||
| 20 | enum zeal60_command_id | ||
| 21 | { | ||
| 22 | id_get_protocol_version = 0x01, // always 0x01 | ||
| 23 | id_get_keyboard_value, | ||
| 24 | id_set_keyboard_value, | ||
| 25 | id_dynamic_keymap_get_keycode, | ||
| 26 | id_dynamic_keymap_set_keycode, | ||
| 27 | id_dynamic_keymap_reset, | ||
| 28 | id_backlight_config_set_value, | ||
| 29 | id_backlight_config_get_value, | ||
| 30 | id_backlight_config_save, | ||
| 31 | id_eeprom_reset, | ||
| 32 | id_bootloader_jump, | ||
| 33 | id_dynamic_keymap_macro_get_count, | ||
| 34 | id_dynamic_keymap_macro_get_buffer_size, | ||
| 35 | id_dynamic_keymap_macro_get_buffer, | ||
| 36 | id_dynamic_keymap_macro_set_buffer, | ||
| 37 | id_dynamic_keymap_macro_reset, | ||
| 38 | id_dynamic_keymap_get_layer_count, | ||
| 39 | id_dynamic_keymap_get_buffer, | ||
| 40 | id_dynamic_keymap_set_buffer, | ||
| 41 | id_unhandled = 0xFF, | ||
| 42 | }; | ||
| 43 | |||
| 44 | enum zeal60_keyboard_value_id | ||
| 45 | { | ||
| 46 | id_uptime = 0x01, | ||
| 47 | id_firmware_version | ||
| 48 | }; | ||
| 49 | |||
diff --git a/keyboards/zeal60/zeal60_keycodes.h b/keyboards/zeal60/zeal60_keycodes.h deleted file mode 100644 index 7114a5efc..000000000 --- a/keyboards/zeal60/zeal60_keycodes.h +++ /dev/null | |||
| @@ -1,77 +0,0 @@ | |||
| 1 | /* Copyright 2017 Jason Williams (Wilba) | ||
| 2 | * | ||
| 3 | * This program is free software: you can redistribute it and/or modify | ||
| 4 | * it under the terms of the GNU General Public License as published by | ||
| 5 | * the Free Software Foundation, either version 2 of the License, or | ||
| 6 | * (at your option) any later version. | ||
| 7 | * | ||
| 8 | * This program is distributed in the hope that it will be useful, | ||
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 11 | * GNU General Public License for more details. | ||
| 12 | * | ||
| 13 | * You should have received a copy of the GNU General Public License | ||
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 15 | */ | ||
| 16 | #pragma once | ||
| 17 | |||
| 18 | // Can't use SAFE_RANGE here, it might change if someone adds | ||
| 19 | // new values to enum quantum_keycodes. | ||
| 20 | // Need to keep checking 0x5F10 is still in the safe range. | ||
| 21 | // TODO: merge this into quantum_keycodes | ||
| 22 | // Backlight keycodes are in range 0x5F00-0x5F0F | ||
| 23 | enum zeal60_keycodes { | ||
| 24 | FN_MO13 = 0x5F10, | ||
| 25 | FN_MO23, | ||
| 26 | MACRO00, | ||
| 27 | MACRO01, | ||
| 28 | MACRO02, | ||
| 29 | MACRO03, | ||
| 30 | MACRO04, | ||
| 31 | MACRO05, | ||
| 32 | MACRO06, | ||
| 33 | MACRO07, | ||
| 34 | MACRO08, | ||
| 35 | MACRO09, | ||
| 36 | MACRO10, | ||
| 37 | MACRO11, | ||
| 38 | MACRO12, | ||
| 39 | MACRO13, | ||
| 40 | MACRO14, | ||
| 41 | MACRO15, | ||
| 42 | }; | ||
| 43 | |||
| 44 | enum user_keycodes { | ||
| 45 | USER00 = 0x5F80, | ||
| 46 | USER01, | ||
| 47 | USER02, | ||
| 48 | USER03, | ||
| 49 | USER04, | ||
| 50 | USER05, | ||
| 51 | USER06, | ||
| 52 | USER07, | ||
| 53 | USER08, | ||
| 54 | USER09, | ||
| 55 | USER10, | ||
| 56 | USER11, | ||
| 57 | USER12, | ||
| 58 | USER13, | ||
| 59 | USER14, | ||
| 60 | USER15, | ||
| 61 | }; | ||
| 62 | |||
| 63 | // Zeal60 specific "action functions" | ||
| 64 | // These are only valid IDs in action_function() | ||
| 65 | // Use FN_TT13, FN_TT23, etc. in keymaps | ||
| 66 | enum zeal60_action_functions { | ||
| 67 | TRIPLE_TAP_1_3 = 0x31, | ||
| 68 | TRIPLE_TAP_2_3 = 0x32 | ||
| 69 | }; | ||
| 70 | |||
| 71 | // Bitwise OR the above with 0x0F00 to use in F(x) macro | ||
| 72 | // This reserves the top 256 of the 4096 range of F(x) keycodes, | ||
| 73 | // leaving the rest for use in fn_actions[] or actions in EEPROM. | ||
| 74 | #define FN_TT13 F((0x0F00|TRIPLE_TAP_1_3)) | ||
| 75 | #define FN_TT23 F((0x0F00|TRIPLE_TAP_2_3)) | ||
| 76 | |||
| 77 | #define TG_NKRO MAGIC_TOGGLE_NKRO | ||
