Sắn 2 weeks ago
committed by GitHub
parent
commit
ed22f90084
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
12 changed files with 2931 additions and 0 deletions
  1. +2459
    -0
      keyboards/asmodus/plaquead/info.json
  2. +73
    -0
      keyboards/asmodus/plaquead/keymaps/default/keymap.c
  3. +73
    -0
      keyboards/asmodus/plaquead/keymaps/via/keymap.c
  4. +1
    -0
      keyboards/asmodus/plaquead/keymaps/via/rules.mk
  5. +29
    -0
      keyboards/asmodus/plaquead/readme.md
  6. +24
    -0
      keyboards/asmodus/plaquead/rgb/config.h
  7. +206
    -0
      keyboards/asmodus/plaquead/rgb/info.json
  8. +1
    -0
      keyboards/asmodus/plaquead/rgb/rules.mk
  9. +1
    -0
      keyboards/asmodus/plaquead/rules.mk
  10. +19
    -0
      keyboards/asmodus/plaquead/standard/config.h
  11. +44
    -0
      keyboards/asmodus/plaquead/standard/info.json
  12. +1
    -0
      keyboards/asmodus/plaquead/standard/rules.mk

+ 2459
- 0
keyboards/asmodus/plaquead/info.json
File diff suppressed because it is too large
View File


+ 73
- 0
keyboards/asmodus/plaquead/keymaps/default/keymap.c View File

@ -0,0 +1,73 @@
/*
Copyright 2024 Asmodus
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include QMK_KEYBOARD_H
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
[0] = LAYOUT_all(
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_F13, KC_PSCR, KC_SCRL, KC_PAUS,
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, KC_BSPC, KC_INS, KC_HOME, KC_PGUP,
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_DEL, KC_END, KC_PGDN,
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_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, KC_TRNS, KC_UP,
KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, KC_TRNS, KC_RGUI, KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT)
};
#if defined(RGB_MATRIX_ENABLE) && defined(CAPS_LOCK_LED_INDEX) && defined(SCROLL_LOCK_LED_INDEX)
#if !defined(CAPS_LOCK_MAX_BRIGHTNESS)
#define CAPS_LOCK_MAX_BRIGHTNESS RGB_MATRIX_MAXIMUM_BRIGHTNESS
#endif
#if !defined(CAPS_LOCK_VAL_STEP)
#define CAPS_LOCK_VAL_STEP RGB_MATRIX_VAL_STEP
#endif
#if !defined(SCROLL_LOCK_MAX_BRIGHTNESS)
#define SCROLL_LOCK_MAX_BRIGHTNESS RGB_MATRIX_MAXIMUM_BRIGHTNESS
#endif
#if !defined(SCROLL_LOCK_VAL_STEP)
#define SCROLL_LOCK_VAL_STEP RGB_MATRIX_VAL_STEP
#endif
bool rgb_matrix_indicators_user(void) {
if (host_keyboard_led_state().caps_lock) {
uint8_t b = rgb_matrix_get_val();
if (b < CAPS_LOCK_VAL_STEP) {
b = CAPS_LOCK_VAL_STEP;
} else if (b < (CAPS_LOCK_MAX_BRIGHTNESS - CAPS_LOCK_VAL_STEP)) {
b += CAPS_LOCK_VAL_STEP; // one step more than current brightness
} else {
b = CAPS_LOCK_MAX_BRIGHTNESS;
}
rgb_matrix_set_color(CAPS_LOCK_LED_INDEX, b, b, b); // white, with the adjusted brightness
}
if (host_keyboard_led_state().scroll_lock) {
uint8_t b = rgb_matrix_get_val();
if (b < SCROLL_LOCK_VAL_STEP) {
b = SCROLL_LOCK_VAL_STEP;
} else if (b < (SCROLL_LOCK_MAX_BRIGHTNESS - SCROLL_LOCK_VAL_STEP)) {
b += SCROLL_LOCK_VAL_STEP; // one step more than current brightness
} else {
b = SCROLL_LOCK_MAX_BRIGHTNESS;
}
rgb_matrix_set_color(SCROLL_LOCK_LED_INDEX, b, b, b); // white, with the adjusted brightness
}
return false;
}
#endif

+ 73
- 0
keyboards/asmodus/plaquead/keymaps/via/keymap.c View File

@ -0,0 +1,73 @@
/*
Copyright 2024 Asmodus
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include QMK_KEYBOARD_H
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
[0] = LAYOUT_all(
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_F13, KC_PSCR, KC_SCRL, KC_PAUS,
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, KC_BSPC, KC_INS, KC_HOME, KC_PGUP,
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_DEL, KC_END, KC_PGDN,
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_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, KC_TRNS, KC_UP,
KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, KC_TRNS, KC_RGUI, KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT),
};
#if defined(RGB_MATRIX_ENABLE) && defined(CAPS_LOCK_LED_INDEX) && defined(SCROLL_LOCK_LED_INDEX)
#if !defined(CAPS_LOCK_MAX_BRIGHTNESS)
#define CAPS_LOCK_MAX_BRIGHTNESS RGB_MATRIX_MAXIMUM_BRIGHTNESS
#endif
#if !defined(CAPS_LOCK_VAL_STEP)
#define CAPS_LOCK_VAL_STEP RGB_MATRIX_VAL_STEP
#endif
#if !defined(SCROLL_LOCK_MAX_BRIGHTNESS)
#define SCROLL_LOCK_MAX_BRIGHTNESS RGB_MATRIX_MAXIMUM_BRIGHTNESS
#endif
#if !defined(SCROLL_LOCK_VAL_STEP)
#define SCROLL_LOCK_VAL_STEP RGB_MATRIX_VAL_STEP
#endif
bool rgb_matrix_indicators_user(void) {
if (host_keyboard_led_state().caps_lock) {
uint8_t b = rgb_matrix_get_val();
if (b < CAPS_LOCK_VAL_STEP) {
b = CAPS_LOCK_VAL_STEP;
} else if (b < (CAPS_LOCK_MAX_BRIGHTNESS - CAPS_LOCK_VAL_STEP)) {
b += CAPS_LOCK_VAL_STEP; // one step more than current brightness
} else {
b = CAPS_LOCK_MAX_BRIGHTNESS;
}
rgb_matrix_set_color(CAPS_LOCK_LED_INDEX, b, b, b); // white, with the adjusted brightness
}
if (host_keyboard_led_state().scroll_lock) {
uint8_t b = rgb_matrix_get_val();
if (b < SCROLL_LOCK_VAL_STEP) {
b = SCROLL_LOCK_VAL_STEP;
} else if (b < (SCROLL_LOCK_MAX_BRIGHTNESS - SCROLL_LOCK_VAL_STEP)) {
b += SCROLL_LOCK_VAL_STEP; // one step more than current brightness
} else {
b = SCROLL_LOCK_MAX_BRIGHTNESS;
}
rgb_matrix_set_color(SCROLL_LOCK_LED_INDEX, b, b, b); // white, with the adjusted brightness
}
return false;
}
#endif

+ 1
- 0
keyboards/asmodus/plaquead/keymaps/via/rules.mk View File

@ -0,0 +1 @@
VIA_ENABLE = yes

+ 29
- 0
keyboards/asmodus/plaquead/readme.md View File

@ -0,0 +1,29 @@
# Plaque A.D
![Plaque A.D](https://i.imgur.com/axShuI3.jpeg)
A Hotswap Multi-layout F13 TKL PCB (h88c compatible) powered by RP2040.
* Keyboard Maintainer: Mai The San
* Hardware Supported: Plaque A.D PCB
* Hardware Availability: [Plaque A.D](https://paramountkeeb.com/products/plaque-a-d)
Make example for this keyboard (after setting up your build environment):
make asmodus/plaquead:default
make asmodus/plaquead/rgb:default
Flashing example for this keyboard:
make asmodus/plaquead:default:flash
make asmodus/plaquead/rgb:default:flash
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 at (0,0) in the matrix (usually the top left key or Escape) and plug in the keyboard
* **Physical reset button**: Briefly short the `RST` and `GND` pads on the SWD header twice, or short the `BOOT` header and plug in keyboard
* **Keycode in layout**: Press the key mapped to `QK_BOOT` if it is available

+ 24
- 0
keyboards/asmodus/plaquead/rgb/config.h View File

@ -0,0 +1,24 @@
/*
Copyright 2024 Asmodus
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#pragma once
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET_TIMEOUT 500U
#define RP2040_FLASH_GENERIC_03H
#ifdef RGB_MATRIX_ENABLE
# define CAPS_LOCK_LED_INDEX 54
# define SCROLL_LOCK_LED_INDEX 1
#endif

+ 206
- 0
keyboards/asmodus/plaquead/rgb/info.json View File

@ -0,0 +1,206 @@
{
"keyboard_name": "Plaque A.D RGB",
"usb": {
"vid": "0x5A50",
"pid": "0x1875",
"device_version": "1.0.0"
},
"features": {
"bootmagic": true,
"mousekey": true,
"extrakey": true,
"nkro": true,
"rgb_matrix": true
},
"ws2812": {
"pin": "GP2",
"driver": "vendor"
},
"rgb_matrix": {
"driver": "ws2812",
"max_brightness": 125,
"led_count": 136,
"center_point": [112, 32],
"animations": {
"alphas_mods": true,
"gradient_up_down": true,
"gradient_left_right": true,
"breathing": true,
"band_sat": true,
"band_val": true,
"band_pinwheel_sat": true,
"band_pinwheel_val": true,
"band_spiral_sat": true,
"band_spiral_val": true,
"cycle_all": true,
"cycle_left_right": true,
"cycle_up_down": true,
"rainbow_moving_chevron": true,
"cycle_out_in": true,
"cycle_out_in_dual": true,
"cycle_pinwheel": true,
"cycle_spiral": true,
"dual_beacon": true,
"rainbow_beacon": true,
"rainbow_pinwheels": true,
"raindrops": true,
"jellybean_raindrops": true,
"hue_breathing": true,
"hue_pendulum": true,
"hue_wave": true,
"fractal": true,
"pixel_rain": true,
"pixel_flow": true,
"typing_heatmap": true,
"digital_rain": true,
"solid_reactive_simple": true,
"solid_reactive": true,
"solid_reactive_wide": true,
"solid_reactive_multiwide": true,
"solid_reactive_cross": true,
"solid_reactive_multicross": true,
"solid_reactive_nexus": true,
"solid_reactive_multinexus": true,
"splash": true,
"multisplash": true,
"solid_splash": true,
"solid_multisplash": true
},
"layout": [
{"matrix": [0, 16], "x": 224, "y": 0, "flags": 1},
{"matrix": [0, 15], "x": 211, "y": 0, "flags": 1},
{"matrix": [0, 14], "x": 198, "y": 0, "flags": 1},
{"matrix": [0, 13], "x": 182, "y": 0, "flags": 4},
{"matrix": [0, 12], "x": 167, "y": 0, "flags": 4},
{"matrix": [0, 11], "x": 155, "y": 0, "flags": 4},
{"matrix": [0, 10], "x": 142, "y": 0, "flags": 4},
{"matrix": [0, 9], "x": 125, "y": 0, "flags": 4},
{"matrix": [0, 8], "x": 110, "y": 0, "flags": 4},
{"matrix": [0, 7], "x": 97, "y": 0, "flags": 4},
{"matrix": [0, 6], "x": 84, "y": 0, "flags": 4},
{"matrix": [0, 5], "x": 71, "y": 0, "flags": 4},
{"matrix": [0, 5], "x": 65, "y": 0, "flags": 4},
{"matrix": [0, 4], "x": 54, "y": 0, "flags": 4},
{"matrix": [0, 3], "x": 41, "y": 0, "flags": 4},
{"matrix": [0, 2], "x": 28, "y": 0, "flags": 4},
{"matrix": [0, 1], "x": 16, "y": 0, "flags": 4},
{"matrix": [0, 0], "x": 0, "y": 0, "flags": 8},
{"matrix": [1, 0], "x": 0, "y": 15, "flags": 4},
{"matrix": [1, 1], "x": 13, "y": 15, "flags": 4},
{"matrix": [1, 2], "x": 26, "y": 15, "flags": 4},
{"matrix": [1, 3], "x": 39, "y": 15, "flags": 4},
{"matrix": [1, 4], "x": 52, "y": 15, "flags": 4},
{"matrix": [1, 5], "x": 65, "y": 15, "flags": 4},
{"matrix": [1, 6], "x": 78, "y": 15, "flags": 4},
{"matrix": [1, 7], "x": 91, "y": 15, "flags": 4},
{"matrix": [1, 8], "x": 104, "y": 15, "flags": 4},
{"matrix": [1, 9], "x": 117, "y": 15, "flags": 4},
{"matrix": [1, 10], "x": 130, "y": 15, "flags": 4},
{"matrix": [1, 11], "x": 143, "y": 15, "flags": 4},
{"matrix": [1, 12], "x": 156, "y": 15, "flags": 4},
{"matrix": [3, 12], "x": 169, "y": 15, "flags": 1},
{"matrix": [1, 13], "x": 175, "y": 15, "flags": 1},
{"matrix": [1, 13], "x": 182, "y": 15, "flags": 1},
{"matrix": [1, 14], "x": 198, "y": 15, "flags": 1},
{"matrix": [1, 15], "x": 211, "y": 15, "flags": 1},
{"matrix": [1, 16], "x": 224, "y": 15, "flags": 1},
{"matrix": [2, 16], "x": 224, "y": 27, "flags": 1},
{"matrix": [2, 15], "x": 211, "y": 27, "flags": 1},
{"matrix": [2, 14], "x": 198, "y": 27, "flags": 1},
{"matrix": [2, 13], "x": 179, "y": 27, "flags": 4},
{"matrix": [2, 12], "x": 162, "y": 27, "flags": 4},
{"matrix": [2, 11], "x": 149, "y": 27, "flags": 4},
{"matrix": [2, 10], "x": 136, "y": 27, "flags": 4},
{"matrix": [2, 9], "x": 123, "y": 27, "flags": 4},
{"matrix": [2, 8], "x": 110, "y": 27, "flags": 4},
{"matrix": [2, 7], "x": 97, "y": 27, "flags": 4},
{"matrix": [2, 6], "x": 84, "y": 27, "flags": 4},
{"matrix": [2, 5], "x": 71, "y": 27, "flags": 4},
{"matrix": [2, 4], "x": 58, "y": 27, "flags": 4},
{"matrix": [2, 3], "x": 45, "y": 27, "flags": 4},
{"matrix": [2, 2], "x": 32, "y": 27, "flags": 4},
{"matrix": [2, 1], "x": 19, "y": 27, "flags": 4},
{"matrix": [2, 0], "x": 3, "y": 27, "flags": 1},
{"matrix": [3, 0], "x": 5, "y": 40, "flags": 1},
{"matrix": [3, 1], "x": 23, "y": 40, "flags": 4},
{"matrix": [3, 2], "x": 36, "y": 40, "flags": 4},
{"matrix": [3, 3], "x": 49, "y": 40, "flags": 4},
{"matrix": [3, 4], "x": 62, "y": 40, "flags": 4},
{"matrix": [3, 5], "x": 75, "y": 40, "flags": 4},
{"matrix": [3, 6], "x": 88, "y": 40, "flags": 4},
{"matrix": [3, 7], "x": 101, "y": 40, "flags": 4},
{"matrix": [3, 8], "x": 114, "y": 40, "flags": 4},
{"matrix": [3, 9], "x": 127, "y": 40, "flags": 4},
{"matrix": [3, 10], "x": 140, "y": 40, "flags": 4},
{"matrix": [3, 11], "x": 153, "y": 40, "flags": 4},
{"matrix": [3, 12], "x": 174, "y": 40, "flags": 8},
{"matrix": [4, 13], "x": 182, "y": 52, "flags": 4},
{"matrix": [4, 13], "x": 170, "y": 52, "flags": 1},
{"matrix": [4, 12], "x": 164, "y": 52, "flags": 1},
{"matrix": [4, 11], "x": 146, "y": 52, "flags": 4},
{"matrix": [4, 10], "x": 133, "y": 52, "flags": 4},
{"matrix": [4, 9], "x": 120, "y": 52, "flags": 4},
{"matrix": [4, 8], "x": 107, "y": 52, "flags": 4},
{"matrix": [4, 7], "x": 94, "y": 52, "flags": 4},
{"matrix": [4, 6], "x": 81, "y": 52, "flags": 4},
{"matrix": [4, 5], "x": 68, "y": 52, "flags": 4},
{"matrix": [4, 4], "x": 55, "y": 52, "flags": 4},
{"matrix": [4, 3], "x": 42, "y": 52, "flags": 4},
{"matrix": [4, 2], "x": 29, "y": 52, "flags": 4},
{"matrix": [4, 1], "x": 16, "y": 52, "flags": 4},
{"matrix": [4, 0], "x": 8, "y": 52, "flags": 1},
{"matrix": [4, 0], "x": 2, "y": 52, "flags": 1},
{"matrix": [5, 0], "x": 5, "y": 64, "flags": 1},
{"matrix": [5, 1], "x": 21, "y": 64, "flags": 1},
{"matrix": [5, 2], "x": 37, "y": 64, "flags": 1},
{"matrix": [5, 6], "x": 83, "y": 64, "flags": 4},
{"matrix": [5, 6], "x": 91, "y": 64, "flags": 4},
{"matrix": [5, 10], "x": 131, "y": 64, "flags": 1},
{"matrix": [5, 11], "x": 151, "y": 64, "flags": 1},
{"matrix": [5, 12], "x": 167, "y": 64, "flags": 1},
{"matrix": [5, 13], "x": 183, "y": 64, "flags": 1},
{"matrix": [5, 14], "x": 198, "y": 64, "flags": 8},
{"matrix": [4, 15], "x": 211, "y": 52, "flags": 8},
{"matrix": [5, 15], "x": 211, "y": 64, "flags": 8},
{"matrix": [5, 16], "x": 224, "y": 64, "flags": 8},
{"x": 224, "y": 57, "flags": 2},
{"x": 224, "y": 45, "flags": 2},
{"x": 224, "y": 32, "flags": 2},
{"x": 224, "y": 20, "flags": 2},
{"x": 224, "y": 5, "flags": 2},
{"x": 209, "y": 5, "flags": 2},
{"x": 194, "y": 5, "flags": 2},
{"x": 179, "y": 5, "flags": 2},
{"x": 164, "y": 5, "flags": 2},
{"x": 149, "y": 5, "flags": 2},
{"x": 134, "y": 5, "flags": 2},
{"x": 119, "y": 5, "flags": 2},
{"x": 104, "y": 5, "flags": 2},
{"x": 89, "y": 5, "flags": 2},
{"x": 74, "y": 5, "flags": 2},
{"x": 59, "y": 5, "flags": 2},
{"x": 44, "y": 5, "flags": 2},
{"x": 29, "y": 5, "flags": 2},
{"x": 14, "y": 5, "flags": 2},
{"x": 0, "y": 5, "flags": 2},
{"x": 0, "y": 20, "flags": 2},
{"x": 0, "y": 32, "flags": 2},
{"x": 0, "y": 45, "flags": 2},
{"x": 0, "y": 57, "flags": 2},
{"x": 14, "y": 57, "flags": 2},
{"x": 29, "y": 5, "flags": 2},
{"x": 44, "y": 5, "flags": 2},
{"x": 59, "y": 5, "flags": 2},
{"x": 74, "y": 5, "flags": 2},
{"x": 89, "y": 5, "flags": 2},
{"x": 104, "y": 5, "flags": 2},
{"x": 119, "y": 5, "flags": 2},
{"x": 134, "y": 5, "flags": 2},
{"x": 149, "y": 5, "flags": 2},
{"x": 164, "y": 5, "flags": 2},
{"x": 179, "y": 5, "flags": 2},
{"x": 194, "y": 5, "flags": 2},
{"x": 209, "y": 5, "flags": 2}
]
}
}

+ 1
- 0
keyboards/asmodus/plaquead/rgb/rules.mk View File

@ -0,0 +1 @@
# This file intentionally left blank

+ 1
- 0
keyboards/asmodus/plaquead/rules.mk View File

@ -0,0 +1 @@
DEFAULT_FOLDER = asmodus/plaquead/standard

+ 19
- 0
keyboards/asmodus/plaquead/standard/config.h View File

@ -0,0 +1,19 @@
/*
Copyright 2024 Asmodus
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#pragma once
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET_TIMEOUT 500U
#define RP2040_FLASH_GENERIC_03H

+ 44
- 0
keyboards/asmodus/plaquead/standard/info.json View File

@ -0,0 +1,44 @@
{
"keyboard_name": "Plaque A.D",
"usb": {
"vid": "0x5A50",
"pid": "0x0875",
"device_version": "1.0.0"
},
"features": {
"bootmagic": true,
"mousekey": true,
"extrakey": true,
"nkro": true,
"rgblight": true
},
"dynamic_keymap": {
"layer_count": 6
},
"indicators": {
"caps_lock": "GP28",
"scroll_lock": "GP2"
},
"rgblight": {
"led_count": 38,
"saturation_steps": 8,
"brightness_steps": 8,
"sleep": true,
"animations": {
"alternating": true,
"breathing": true,
"christmas": true,
"knight": true,
"rainbow_mood": true,
"rainbow_swirl": true,
"rgb_test": true,
"snake": true,
"static_gradient": true,
"twinkle": true
}
},
"ws2812": {
"pin": "GP10",
"driver": "vendor"
}
}

+ 1
- 0
keyboards/asmodus/plaquead/standard/rules.mk View File

@ -0,0 +1 @@
# This file intentionally left blank

Loading…
Cancel
Save