From bcba3127234fd44eb8764c874342e90312cc9d43 Mon Sep 17 00:00:00 2001 From: Wolf Date: Tue, 23 May 2023 15:28:38 +0200 Subject: [PATCH] Add base firmware for the Freja 65 --- keyboards/wolf/freja65/config.h | 92 ++++++++ keyboards/wolf/freja65/info.json | 210 +++++++++++++++++ .../wolf/freja65/keymaps/default/keymap.c | 37 +++ keyboards/wolf/freja65/keymaps/via/keymap.c | 221 ++++++++++++++++++ keyboards/wolf/freja65/keymaps/via/rules.mk | 2 + keyboards/wolf/freja65/readme.md | 22 ++ keyboards/wolf/freja65/rules.mk | 3 + 7 files changed, 587 insertions(+) create mode 100644 keyboards/wolf/freja65/config.h create mode 100644 keyboards/wolf/freja65/info.json create mode 100644 keyboards/wolf/freja65/keymaps/default/keymap.c create mode 100644 keyboards/wolf/freja65/keymaps/via/keymap.c create mode 100644 keyboards/wolf/freja65/keymaps/via/rules.mk create mode 100644 keyboards/wolf/freja65/readme.md create mode 100644 keyboards/wolf/freja65/rules.mk diff --git a/keyboards/wolf/freja65/config.h b/keyboards/wolf/freja65/config.h new file mode 100644 index 00000000000..67de17c8892 --- /dev/null +++ b/keyboards/wolf/freja65/config.h @@ -0,0 +1,92 @@ +/* +Copyright 2020 + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 2 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program. If not, see . +*/ +#pragma once + +#define WS2812_PIO_USE_PIO1 + +/* Define RGB */ +#ifdef RGB_MATRIX_ENABLE + +#define WS2812_PIO_USE_PIO1 + +#define RGB_MATRIX_LED_COUNT 102 +#define RGB_DI_PIN GP29 + +#define RGB_DISABLE_WHEN_USB_SUSPENDED +#define RGB_MATRIX_KEYPRESSES +#define RGB_MATRIX_FRAMEBUFFER_EFFECTS +#define RGB_MATRIX_MAXIMUM_BRIGHTNESS 120 + +#define RGB_MATRIX_STARTUP_MODE RGB_MATRIX_CYCLE_ALL + +#define ENABLE_RGB_MATRIX_ALPHAS_MODS +#define ENABLE_RGB_MATRIX_GRADIENT_UP_DOWN +#define ENABLE_RGB_MATRIX_GRADIENT_LEFT_RIGHT +#define ENABLE_RGB_MATRIX_BREATHING +#define ENABLE_RGB_MATRIX_BAND_SAT +#define ENABLE_RGB_MATRIX_BAND_VAL +#define ENABLE_RGB_MATRIX_BAND_PINWHEEL_SAT +#define ENABLE_RGB_MATRIX_BAND_PINWHEEL_VAL +#define ENABLE_RGB_MATRIX_BAND_SPIRAL_SAT +#define ENABLE_RGB_MATRIX_BAND_SPIRAL_VAL +#define ENABLE_RGB_MATRIX_CYCLE_ALL +#define ENABLE_RGB_MATRIX_CYCLE_LEFT_RIGHT +#define ENABLE_RGB_MATRIX_CYCLE_UP_DOWN +#define ENABLE_RGB_MATRIX_RAINBOW_MOVING_CHEVRON +#define ENABLE_RGB_MATRIX_CYCLE_OUT_IN +#define ENABLE_RGB_MATRIX_CYCLE_OUT_IN_DUAL +#define ENABLE_RGB_MATRIX_CYCLE_PINWHEEL +#define ENABLE_RGB_MATRIX_CYCLE_SPIRAL +#define ENABLE_RGB_MATRIX_DUAL_BEACON +#define ENABLE_RGB_MATRIX_RAINBOW_BEACON +#define ENABLE_RGB_MATRIX_RAINBOW_PINWHEELS +#define ENABLE_RGB_MATRIX_RAINDROPS +#define ENABLE_RGB_MATRIX_JELLYBEAN_RAINDROPS +#define ENABLE_RGB_MATRIX_HUE_BREATHING +#define ENABLE_RGB_MATRIX_HUE_PENDULUM +#define ENABLE_RGB_MATRIX_HUE_WAVE +#define ENABLE_RGB_MATRIX_PIXEL_RAIN +// The PIXEL_FRACTAL effect does not work properly when the matrix layout is +// different from the physical layout; it also has problems when underglow +// LEDs are present, or when multiple LEDs are associated with the same key. +#undef ENABLE_RGB_MATRIX_PIXEL_FRACTAL + +// Framebuffer effects; can be enabled only if RGB_MATRIX_FRAMEBUFFER_EFFECTS +// is defined. Both of these effects currently don't work properly when the +// key matrix does not match the physical layout, so they are disabled. +#undef ENABLE_RGB_MATRIX_TYPING_HEATMAP +#undef ENABLE_RGB_MATRIX_DIGITAL_RAIN + +// Reactive effects; can be enabled only if at least one of +// RGB_MATRIX_KEYPRESSES or RGB_MATRIX_KEYRELEASES is defined. +#define ENABLE_RGB_MATRIX_SOLID_REACTIVE_SIMPLE +#define ENABLE_RGB_MATRIX_SOLID_REACTIVE +#define ENABLE_RGB_MATRIX_SOLID_REACTIVE_WIDE +#define ENABLE_RGB_MATRIX_SOLID_REACTIVE_MULTIWIDE +#define ENABLE_RGB_MATRIX_SOLID_REACTIVE_CROSS +#define ENABLE_RGB_MATRIX_SOLID_REACTIVE_MULTICROSS +#define ENABLE_RGB_MATRIX_SOLID_REACTIVE_NEXUS +#define ENABLE_RGB_MATRIX_SOLID_REACTIVE_MULTINEXUS +#define ENABLE_RGB_MATRIX_SPLASH +#define ENABLE_RGB_MATRIX_MULTISPLASH +#define ENABLE_RGB_MATRIX_SOLID_SPLASH +#define ENABLE_RGB_MATRIX_SOLID_MULTISPLASH + +#define EECONFIG_KB_DATA_SIZE 5 + +#define CAPS_INDICATOR_INDEX 0 +#endif diff --git a/keyboards/wolf/freja65/info.json b/keyboards/wolf/freja65/info.json new file mode 100644 index 00000000000..a3635d8548d --- /dev/null +++ b/keyboards/wolf/freja65/info.json @@ -0,0 +1,210 @@ +{ + "manufacturer": "HelHeim", + "keyboard_name": "Freja 65", + "maintainer": "ToastyStoemp", + "bootloader": "custom", + "diode_direction": "COL2ROW", + "features": { + "bootmagic": true, + "command": false, + "console": false, + "extrakey": true, + "mousekey": true, + "nkro": true, + "rgb_matrix": true, + "rgblight": false + }, + "matrix_pins": { + "cols": ["GP28", "GP15", "GP14", "GP13", "GP12", "GP27", "GP26", "GP25", "GP24", "GP23", "GP22", "GP21", "GP20", "GP19", "GP18"], + "rows": ["GP4", "GP3", "GP2", "GP1", "GP0"] + }, + "processor": "RP2040", + "rgb_matrix": { + "driver": "WS2812", + "layout": [ + { "flags": 13, "x": 4, "y": 36 }, + { "flags": 5, "x": 4, "y": 22 }, + { "flags": 4, "matrix": [1, 1], "x": 24, "y": 21 }, + { "flags": 4, "matrix": [1, 2], "x": 41, "y": 22 }, + { "flags": 4, "matrix": [1, 3], "x": 57, "y": 22 }, + { "flags": 4, "matrix": [1, 4], "x": 73, "y": 22 }, + { "flags": 4, "matrix": [1, 5], "x": 89, "y": 22 }, + { "flags": 4, "matrix": [1, 6], "x": 106, "y": 22 }, + { "flags": 4, "matrix": [1, 7], "x": 122, "y": 22 }, + { "flags": 4, "matrix": [1, 8], "x": 138, "y": 22 }, + { "flags": 4, "matrix": [1, 9], "x": 155, "y": 22 }, + { "flags": 4, "matrix": [1, 10], "x": 171, "y": 22 }, + { "flags": 4, "matrix": [1, 11], "x": 187, "y": 22 }, + { "flags": 4, "matrix": [1, 12], "x": 203, "y": 22 }, + { "flags": 5, "x": 224, "y": 22 }, + { "flags": 5, "x": 244, "y": 22 }, + { "flags": 5, "x": 244, "y": 36 }, + { "flags": 5, "x": 218, "y": 36 }, + { "flags": 4, "matrix": [2, 11], "x": 191, "y": 36 }, + { "flags": 4, "matrix": [2, 10], "x": 175, "y": 36 }, + { "flags": 4, "matrix": [2, 9], "x": 159, "y": 36 }, + { "flags": 4, "matrix": [2, 8], "x": 142, "y": 36 }, + { "flags": 4, "matrix": [2, 7], "x": 126, "y": 36 }, + { "flags": 4, "matrix": [2, 6], "x": 110, "y": 36 }, + { "flags": 4, "matrix": [2, 5], "x": 94, "y": 36 }, + { "flags": 4, "matrix": [2, 4], "x": 77, "y": 36 }, + { "flags": 4, "matrix": [2, 3], "x": 61, "y": 36 }, + { "flags": 4, "matrix": [2, 2], "x": 45, "y": 36 }, + { "flags": 4, "matrix": [2, 1], "x": 28, "y": 36 }, + { "flags": 4, "matrix": [3, 1], "x": 37, "y": 50 }, + { "flags": 4, "matrix": [3, 2], "x": 53, "y": 50 }, + { "flags": 4, "matrix": [3, 3], "x": 69, "y": 50 }, + { "flags": 4, "matrix": [3, 4], "x": 85, "y": 50 }, + { "flags": 4, "matrix": [3, 5], "x": 102, "y": 50 }, + { "flags": 4, "matrix": [3, 6], "x": 118, "y": 50 }, + { "flags": 4, "matrix": [3, 7], "x": 134, "y": 50 }, + { "flags": 4, "matrix": [3, 8], "x": 150, "y": 50 }, + { "flags": 4, "matrix": [3, 9], "x": 167, "y": 50 }, + { "flags": 4, "matrix": [3, 10], "x": 183, "y": 50 }, + { "flags": 5, "x": 205, "y": 50 }, + { "flags": 5, "x": 228, "y": 50 }, + { "flags": 5, "x": 244, "y": 50 }, + { "flags": 5, "x": 244, "y": 64 }, + { "flags": 5, "x": 228, "y": 64 }, + { "flags": 5, "x": 211, "y": 64 }, + { "flags": 5, "x": 195, "y": 64 }, + { "flags": 5, "x": 179, "y": 64 }, + { "flags": 5, "x": 165, "y": 64 }, + { "flags": 5, "x": 114, "y": 64 }, + { "flags": 5, "x": 104, "y": 64 }, + { "flags": 5, "x": 44, "y": 64 }, + { "flags": 5, "x": 23, "y": 64 }, + { "flags": 5, "x": 3, "y": 64 }, + { "flags": 5, "x": 10, "y": 50 }, + { "flags": 5, "x": 0, "y": 0 }, + { "flags": 4, "matrix": [0, 1], "x": 16, "y": 0 }, + { "flags": 4, "matrix": [0, 2], "x": 33, "y": 8 }, + { "flags": 4, "matrix": [0, 3], "x": 49, "y": 8 }, + { "flags": 4, "matrix": [0, 4], "x": 65, "y": 8 }, + { "flags": 4, "matrix": [0, 5], "x": 81, "y": 8 }, + { "flags": 4, "matrix": [0, 6], "x": 98, "y": 8 }, + { "flags": 4, "matrix": [0, 7], "x": 114, "y": 8 }, + { "flags": 4, "matrix": [0, 8], "x": 130, "y": 8 }, + { "flags": 4, "matrix": [0, 9], "x": 146, "y": 8 }, + { "flags": 4, "matrix": [0, 10], "x": 163, "y": 8 }, + { "flags": 4, "matrix": [0, 11], "x": 179, "y": 8 }, + { "flags": 4, "matrix": [0, 12], "x": 195, "y": 8 }, + { "flags": 5, "x": 220, "y": 8 }, + { "flags": 5, "x": 244, "y": 8 }, + { "flags": 3, "x": 223, "y": 11 }, + { "flags": 3, "x": 234, "y": 14 }, + { "flags": 3, "x": 234, "y": 26 }, + { "flags": 3, "x": 234, "y": 39 }, + { "flags": 3, "x": 228, "y": 53 }, + { "flags": 3, "x": 208, "y": 53 }, + { "flags": 3, "x": 192, "y": 53 }, + { "flags": 3, "x": 175, "y": 53 }, + { "flags": 3, "x": 158, "y": 53 }, + { "flags": 2, "x": 140, "y": 53 }, + { "flags": 2, "x": 123, "y": 53 }, + { "flags": 3, "x": 106, "y": 53 }, + { "flags": 2, "x": 88, "y": 53 }, + { "flags": 2, "x": 76, "y": 53 }, + { "flags": 2, "x": 54, "y": 53 }, + { "flags": 2, "x": 37, "y": 53 }, + { "flags": 3, "x": 17, "y": 53 }, + { "flags": 3, "x": 4, "y": 53 }, + { "flags": 3, "x": 4, "y": 39 }, + { "flags": 3, "x": 4, "y": 25 }, + { "flags": 3, "x": 4, "y": 11 }, + { "flags": 2, "x": 21, "y": 11 }, + { "flags": 2, "x": 38, "y": 11 }, + { "flags": 2, "x": 56, "y": 11 }, + { "flags": 2, "x": 73, "y": 11 }, + { "flags": 2, "x": 90, "y": 11 }, + { "flags": 2, "x": 107, "y": 11 }, + { "flags": 2, "x": 124, "y": 11 }, + { "flags": 2, "x": 141, "y": 11 }, + { "flags": 2, "x": 158, "y": 11 }, + { "flags": 2, "x": 176, "y": 11 }, + { "flags": 2, "x": 190, "y": 11 }, + { "flags": 2, "x": 206, "y": 11 } + ] + }, + "url": "", + "usb": { + "device_version": "1.0.0", + "pid": "0x0067", + "vid": "0x5453" + }, + "layouts": { + "LAYOUT_65_ansi_split_bs": { + "layout": [ + { "matrix": [0, 0], "x": 0, "y": 0 }, + { "matrix": [0, 1], "x": 1, "y": 0 }, + { "matrix": [0, 2], "x": 2, "y": 0 }, + { "matrix": [0, 3], "x": 3, "y": 0 }, + { "matrix": [0, 4], "x": 4, "y": 0 }, + { "matrix": [0, 5], "x": 5, "y": 0 }, + { "matrix": [0, 6], "x": 6, "y": 0 }, + { "matrix": [0, 7], "x": 7, "y": 0 }, + { "matrix": [0, 8], "x": 8, "y": 0 }, + { "matrix": [0, 9], "x": 9, "y": 0 }, + { "matrix": [0, 10], "x": 10, "y": 0 }, + { "matrix": [0, 11], "x": 11, "y": 0 }, + { "matrix": [0, 12], "x": 12, "y": 0 }, + { "matrix": [2, 12], "x": 13, "y": 0 }, + { "matrix": [0, 13], "x": 14, "y": 0 }, + { "matrix": [0, 14], "x": 15, "y": 0 }, + { "matrix": [1, 0], "w": 1.5, "x": 0, "y": 1 }, + { "matrix": [1, 1], "x": 1.5, "y": 1 }, + { "matrix": [1, 2], "x": 2.5, "y": 1 }, + { "matrix": [1, 3], "x": 3.5, "y": 1 }, + { "matrix": [1, 4], "x": 4.5, "y": 1 }, + { "matrix": [1, 5], "x": 5.5, "y": 1 }, + { "matrix": [1, 6], "x": 6.5, "y": 1 }, + { "matrix": [1, 7], "x": 7.5, "y": 1 }, + { "matrix": [1, 8], "x": 8.5, "y": 1 }, + { "matrix": [1, 9], "x": 9.5, "y": 1 }, + { "matrix": [1, 10], "x": 10.5, "y": 1 }, + { "matrix": [1, 11], "x": 11.5, "y": 1 }, + { "matrix": [1, 12], "x": 12.5, "y": 1 }, + { "matrix": [1, 13], "w": 1.5, "x": 13.5, "y": 1 }, + { "matrix": [1, 14], "x": 15, "y": 1 }, + { "matrix": [2, 0], "w": 1.75, "x": 0, "y": 2 }, + { "matrix": [2, 1], "x": 1.75, "y": 2 }, + { "matrix": [2, 2], "x": 2.75, "y": 2 }, + { "matrix": [2, 3], "x": 3.75, "y": 2 }, + { "matrix": [2, 4], "x": 4.75, "y": 2 }, + { "matrix": [2, 5], "x": 5.75, "y": 2 }, + { "matrix": [2, 6], "x": 6.75, "y": 2 }, + { "matrix": [2, 7], "x": 7.75, "y": 2 }, + { "matrix": [2, 8], "x": 8.75, "y": 2 }, + { "matrix": [2, 9], "x": 9.75, "y": 2 }, + { "matrix": [2, 10], "x": 10.75, "y": 2 }, + { "matrix": [2, 11], "x": 11.75, "y": 2 }, + { "matrix": [2, 13], "w": 2.25, "x": 12.75, "y": 2 }, + { "matrix": [2, 14], "x": 15, "y": 2 }, + { "matrix": [3, 0], "w": 2.25, "x": 0, "y": 3 }, + { "matrix": [3, 1], "x": 2.25, "y": 3 }, + { "matrix": [3, 2], "x": 3.25, "y": 3 }, + { "matrix": [3, 3], "x": 4.25, "y": 3 }, + { "matrix": [3, 4], "x": 5.25, "y": 3 }, + { "matrix": [3, 5], "x": 6.25, "y": 3 }, + { "matrix": [3, 6], "x": 7.25, "y": 3 }, + { "matrix": [3, 7], "x": 8.25, "y": 3 }, + { "matrix": [3, 8], "x": 9.25, "y": 3 }, + { "matrix": [3, 9], "x": 10.25, "y": 3 }, + { "matrix": [3, 10], "x": 11.25, "y": 3 }, + { "matrix": [3, 12], "w": 1.75, "x": 12.25, "y": 3 }, + { "matrix": [3, 13], "x": 14, "y": 3 }, + { "matrix": [3, 14], "x": 15, "y": 3 }, + { "matrix": [4, 0], "w": 1.25, "x": 0, "y": 4 }, + { "matrix": [4, 1], "w": 1.25, "x": 1.25, "y": 4 }, + { "matrix": [4, 2], "w": 1.25, "x": 2.5, "y": 4 }, + { "matrix": [4, 5], "w": 6.25, "x": 3.75, "y": 4 }, + { "matrix": [4, 9], "x": 10, "y": 4 }, + { "matrix": [4, 10], "x": 11, "y": 4 }, + { "matrix": [4, 11], "x": 12, "y": 4 }, + { "matrix": [4, 12], "x": 13, "y": 4 }, + { "matrix": [4, 13], "x": 14, "y": 4 }, + { "matrix": [4, 14], "x": 15, "y": 4 } + ] + } + } +} \ No newline at end of file diff --git a/keyboards/wolf/freja65/keymaps/default/keymap.c b/keyboards/wolf/freja65/keymaps/default/keymap.c new file mode 100644 index 00000000000..25e8f2100c0 --- /dev/null +++ b/keyboards/wolf/freja65/keymaps/default/keymap.c @@ -0,0 +1,37 @@ +// Copyright 2020-2022 QMK (@qmk) +// SPDX-License-Identifier: GPL-2.0-or-later + +#include QMK_KEYBOARD_H + +const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { + + /* + * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┐ + * │Esc│ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ - │ = |Bsp|Bsp|Hom│ + * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┼───┤ + * │ Tab │ Q │ W │ E │ R │ T │ Y │ U │ I │ O │ P │ [ │ ] │ \ │PgU│ + * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┼───┤ + * │ Caps │ A │ S │ D │ F │ G │ H │ J │ K │ L │ ; │ ' │ Enter │PgD│ + * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────┬───┼───┤ + * │ Shift │ Z │ X │ C │ V │ B │ N │ M │ , │ . │ / │ Shift│ ↑ │End│ + * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴──┬┴──┬┴──┬───┼───┼───┤ + * │Ctrl│GUI │Alt │ │Alt│ Fn│Ctl│ ← │ ↓ │ → │ + * └────┴────┴────┴────────────────────────┴───┴───┴───┴───┴───┴───┘ + */ + [0] = LAYOUT_65_ansi_split_bs( + 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, KC_BSPC, KC_HOME, + 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, KC_PGUP, + 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, KC_PGDN, + KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP, KC_END, + KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, MO(1), KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT + ), + + [1] = LAYOUT_65_ansi_split_bs( + 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, KC_DEL, _______, + _______, RGB_TOG, RGB_MOD, RGB_HUI, RGB_HUD, RGB_SAI, RGB_SAD, RGB_VAI, RGB_VAD, _______, _______, KC_PSCR, KC_SCRL, KC_PAUS, _______, + _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, EE_CLR, _______, + _______, _______, _______, _______, _______, QK_BOOT, _______, KC_MUTE, _______, _______, _______, _______, KC_VOLU, _______, + _______, _______, _______, _______, _______, _______, _______, KC_MPRV, KC_VOLD, KC_MNXT + ) + +}; \ No newline at end of file diff --git a/keyboards/wolf/freja65/keymaps/via/keymap.c b/keyboards/wolf/freja65/keymaps/via/keymap.c new file mode 100644 index 00000000000..ca03687d60a --- /dev/null +++ b/keyboards/wolf/freja65/keymaps/via/keymap.c @@ -0,0 +1,221 @@ +// Copyright 2020-2022 QMK (@qmk) +// SPDX-License-Identifier: GPL-2.0-or-later + +#include QMK_KEYBOARD_H + +const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { + + /* + * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┐ + * │Esc│ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ - │ = |Bsp|Bsp|Hom│ + * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┼───┤ + * │ Tab │ Q │ W │ E │ R │ T │ Y │ U │ I │ O │ P │ [ │ ] │ \ │PgU│ + * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┼───┤ + * │ Caps │ A │ S │ D │ F │ G │ H │ J │ K │ L │ ; │ ' │ Enter │PgD│ + * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────┬───┼───┤ + * │ Shift │ Z │ X │ C │ V │ B │ N │ M │ , │ . │ / │ Shift│ ↑ │End│ + * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴──┬┴──┬┴──┬───┼───┼───┤ + * │Ctrl│GUI │Alt │ │Alt│ Fn│Ctl│ ← │ ↓ │ → │ + * └────┴────┴────┴────────────────────────┴───┴───┴───┴───┴───┴───┘ + */ + [0] = LAYOUT_65_ansi_split_bs( + 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, KC_BSPC, KC_HOME, + 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, KC_PGUP, + 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, KC_PGDN, + KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP, KC_END, + KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, MO(1), KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT + ), + + [1] = LAYOUT_65_ansi_split_bs( + 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, KC_DEL, _______, + _______, RGB_TOG, RGB_MOD, RGB_HUI, RGB_HUD, RGB_SAI, RGB_SAD, RGB_VAI, RGB_VAD, _______, _______, KC_PSCR, KC_SCRL, KC_PAUS, _______, + _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, EE_CLR, _______, + _______, _______, _______, _______, _______, QK_BOOT, _______, KC_MUTE, _______, _______, _______, _______, KC_VOLU, _______, + _______, _______, _______, _______, _______, _______, _______, KC_MPRV, KC_VOLD, KC_MNXT + ) + +}; + + +// Single Indicator memory layout +typedef struct _indicator_config_t { + uint8_t h; + uint8_t s; + uint8_t v; + bool enabled; +} indicator_config; + +// Led State Config +typedef enum { + LED_STATE_ALL, + LED_STATE_BACKLIGHT, + LED_STATE_UNDERGLOW, + LED_STATE_INDICATORS +} led_states; + +// Board memory layout +typedef struct _customKB_config_t { + led_states leds; + indicator_config caps; + +} customKB_config; + +customKB_config customKB; + +void eeconfig_init_user(void) { + + customKB.leds = LED_STATE_ALL; + + // Default values + customKB.caps.h = 128; + customKB.caps.s = 128; + customKB.caps.v = RGB_MATRIX_MAXIMUM_BRIGHTNESS / 2; + customKB.caps.enabled = true; + + // Write default value to EEPROM now + eeconfig_update_kb_datablock(&customKB); +} + +enum via_customKB { + id_leds_state = 1, + id_caps_indicator_enabled = 2, + id_caps_indicator_brightness = 3, + id_caps_indicator_color = 4 +}; + +//On Keyboard startup +void keyboard_post_init_user(void) { + //Read our custom menu variables from memory + eeconfig_read_kb_datablock(&customKB); +} + +void set_caps_lock_led(void) { + if (customKB.caps.enabled) { + // The rgb_matrix_set_color function needs an RGB code to work, so first the indicator color is cast to an HSV value and then translated to RGB + HSV hsv_caps_indicator_color = {customKB.caps.h, customKB.caps.s, customKB.caps.v}; + RGB rgb_caps_indicator_color = hsv_to_rgb(hsv_caps_indicator_color); + if (host_keyboard_led_state().caps_lock) + rgb_matrix_set_color(CAPS_INDICATOR_INDEX, rgb_caps_indicator_color.r, rgb_caps_indicator_color.g, rgb_caps_indicator_color.b); + } +} + +bool rgb_matrix_indicators_advanced_user(uint8_t led_min, uint8_t led_max) { + + switch(customKB.leds){ + case LED_STATE_ALL: + set_caps_lock_led(); + return true; + case LED_STATE_BACKLIGHT: + for (uint8_t i = led_min; i < led_max; i++) { + if (!HAS_FLAGS(g_led_config.flags[i], LED_FLAG_KEYLIGHT)) { + rgb_matrix_set_color(i, 0, 0, 0); + } + } + set_caps_lock_led(); + return true; + case LED_STATE_UNDERGLOW: + for (uint8_t i = led_min; i < led_max; i++) { + if (!HAS_FLAGS(g_led_config.flags[i], LED_FLAG_UNDERGLOW)) { + rgb_matrix_set_color(i, 0, 0, 0); + } + } + set_caps_lock_led(); + return true; + case LED_STATE_INDICATORS: + for (uint8_t i = led_min; i < led_max; i++) { + rgb_matrix_set_color(i, 0, 0, 0); + } + set_caps_lock_led(); + return true; + } + + return true; +} + +void customKB_config_set_value(uint8_t *data) { + // data = [ value_id, value_data ] + uint8_t *value_id = &(data[0]); + uint8_t *value_data = &(data[1]); + + switch (*value_id) { + case id_caps_indicator_enabled: { + customKB.caps.enabled = value_data[0]; + break; + } + case id_caps_indicator_brightness: { + customKB.caps.v = value_data[0]; + break; + } + case id_caps_indicator_color: { + customKB.caps.h = value_data[0]; + customKB.caps.s = value_data[1]; + break; + } + case id_leds_state: { + customKB.leds = value_data[0]; + break; + } + } +} + +void customKB_config_get_value(uint8_t *data) { + // data = [ value_id, value_data ] + uint8_t *value_id = &(data[0]); + uint8_t *value_data = &(data[1]); + + switch (*value_id) { + case id_caps_indicator_enabled: { + value_data[0] = customKB.caps.enabled; + break; + } + case id_caps_indicator_brightness: { + value_data[0] = customKB.caps.v; + break; + } + case id_caps_indicator_color: { + value_data[0] = customKB.caps.h; + value_data[1] = customKB.caps.s; + break; + } + case id_leds_state: { + value_data[0] = customKB.leds; + break; + } + } +} + +void customKB_config_save(void) { + eeconfig_update_kb_datablock(&customKB); +} + +void via_custom_value_command_kb(uint8_t *data, uint8_t length) { + // data = [ command_id, channel_id, value_id, value_data ] + uint8_t *command_id = &(data[0]); + uint8_t *channel_id = &(data[1]); + uint8_t *value_id_and_data = &(data[2]); + + if (*channel_id == id_custom_channel) { + switch (*command_id) { + case id_custom_set_value: { + customKB_config_set_value(value_id_and_data); + break; + } + case id_custom_get_value: { + customKB_config_get_value(value_id_and_data); + break; + } + case id_custom_save: { + customKB_config_save(); + break; + } + default: { + // Unhandled message. + *command_id = id_unhandled; + break; + } + } + return; + } + + *command_id = id_unhandled; +} diff --git a/keyboards/wolf/freja65/keymaps/via/rules.mk b/keyboards/wolf/freja65/keymaps/via/rules.mk new file mode 100644 index 00000000000..43061db1dd4 --- /dev/null +++ b/keyboards/wolf/freja65/keymaps/via/rules.mk @@ -0,0 +1,2 @@ +VIA_ENABLE = yes +LTO_ENABLE = yes \ No newline at end of file diff --git a/keyboards/wolf/freja65/readme.md b/keyboards/wolf/freja65/readme.md new file mode 100644 index 00000000000..6a7c63e81c6 --- /dev/null +++ b/keyboards/wolf/freja65/readme.md @@ -0,0 +1,22 @@ +# Freja 65 + +The following is the QMK Firmware for the Freja 65 PCB. + +The PCB features: +* QMK & VIA compatibility +* Underglow RGB Leds +* Per key RGB Leds + +--- + +* Keyboard Maintainer: [ToastyStoemp](https://github.com/ToastyStoemp) + +Make example for this keyboard (after setting up your build environment): + + make wolf/freja65:default + +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). + +## Bootloader Enter the bootloader in 3 ways: +* **Bootmagic reset**: Hold down the key ESC key and plug in the keyboard (Top Left most switch) +* **Physical reset button**: Briefly press the button on the back of the PCB diff --git a/keyboards/wolf/freja65/rules.mk b/keyboards/wolf/freja65/rules.mk new file mode 100644 index 00000000000..15590d0b71a --- /dev/null +++ b/keyboards/wolf/freja65/rules.mk @@ -0,0 +1,3 @@ +# This file intentionally left blank +WS2812_DRIVER = vendor +