forked from qmk/qmk_firmware
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/qmk/qmk_firmware
- Loading branch information
Showing
100 changed files
with
5,931 additions
and
142 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -56,7 +56,7 @@ jobs: | |
- name: Deploy | ||
if: ${{ github.event_name == 'push' && github.repository == 'qmk/qmk_firmware' }} | ||
uses: JamesIves/[email protected].4 | ||
uses: JamesIves/[email protected].8 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
branch: gh-pages | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
{ | ||
"manufacturer": "Array Peripherals", | ||
"keyboard_name": "The Vector", | ||
"maintainer": "daviddoan", | ||
"bootloader": "atmel-dfu", | ||
"encoder": { | ||
"rotary": [ | ||
{"pin_a": "F0", "pin_b": "F1"} | ||
] | ||
}, | ||
"features": { | ||
"bootmagic": true, | ||
"encoder": true, | ||
"extrakey": true, | ||
"mousekey": true | ||
}, | ||
"matrix_pins": { | ||
"direct": [ | ||
["D4", "C6", "D7", "E6", "F7"] | ||
] | ||
}, | ||
"processor": "atmega32u4", | ||
"url": "https://arrayperipherals.com", | ||
"usb": { | ||
"device_version": "1.0.0", | ||
"pid": "0x4F47", | ||
"vid": "0x4152" | ||
}, | ||
"layouts": { | ||
"LAYOUT": { | ||
"layout": [ | ||
{"label": "k01", "matrix": [0, 0], "x": 0, "y": 0}, | ||
{"label": "k02", "matrix": [0, 1], "x": 1, "y": 0}, | ||
{"label": "k03", "matrix": [0, 2], "x": 2, "y": 0}, | ||
{"label": "k04", "matrix": [0, 3], "x": 3, "y": 0}, | ||
{"label": "k05", "matrix": [0, 4], "x": 4.25, "y": 0} | ||
] | ||
} | ||
} | ||
} |
36 changes: 36 additions & 0 deletions
36
keyboards/arrayperipherals/vector/keymaps/default/keymap.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/* | ||
Copyright 2024 David Doan <[email protected]> | ||
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( | ||
KC_MPRV, KC_MPLY, KC_MNXT, KC_MUTE, TG(1) | ||
), | ||
|
||
[1] = LAYOUT( | ||
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, TG(1) | ||
), | ||
}; | ||
|
||
#if defined(ENCODER_MAP_ENABLE) | ||
const uint16_t PROGMEM encoder_map[][NUM_ENCODERS][NUM_DIRECTIONS] = { | ||
[0] = {ENCODER_CCW_CW(KC_VOLD, KC_VOLU)}, | ||
[1] = {ENCODER_CCW_CW(KC_TRNS, KC_TRNS)}, | ||
}; | ||
#endif // ENCODER_MAP_ENABLE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
ENCODER_MAP_ENABLE = yes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# The Vector Macropad | ||
|
||
![The Vector](https://i.imgur.com/rmy76bp.png) | ||
|
||
A small (1x4) macropad with a rotary. [More info at arrayperipherals.com](https://www.arrayperipherals.com/) | ||
|
||
* Keyboard Maintainer: [David Doan](https://github.com/daviddoan) | ||
* Hardware Supported: Custom PCB with Atmega32u4 processor | ||
* Hardware Availability: [arrayperipherals.com](https://www.arrayperipherals.com/) | ||
|
||
Make example for this keyboard (after setting up your build environment): | ||
|
||
make arrayperipherals/vector:default | ||
|
||
Flashing example for this keyboard: | ||
|
||
make arrayperipherals/vector: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 2 ways: | ||
|
||
* **Bootmagic reset**: Hold down the key at (0,0) in the matrix (left most from the rotary) | ||
* **Physical reset button**: Briefly double press the button on the back of the PCB |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"manufacturer": "Atset", | ||
"keyboard_name": "AT2", | ||
"maintainer": "qmk", | ||
"board": "GENERIC_RP_RP2040", | ||
"processor": "RP2040", | ||
"bootloader": "rp2040", | ||
"diode_direction": "COL2ROW", | ||
"usb": { | ||
"vid": "0x4141", | ||
"pid": "0x6174", | ||
"device_version": "1.0.0" | ||
}, | ||
"features": { | ||
"bootmagic": true, | ||
"extrakey": true, | ||
"mousekey": true, | ||
"nkro": true | ||
}, | ||
"matrix_pins": { | ||
"cols": ["GP19", "GP20"], | ||
"rows": ["GP28"] | ||
}, | ||
"layouts": { | ||
"LAYOUT": { | ||
"layout": [ | ||
{"matrix": [0, 0], "x": 0, "y": 0}, | ||
{"matrix": [0, 1], "x": 1, "y": 0} | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
/* SPDX-License-Identifier: GPL-2.0-or-later */ | ||
|
||
#include QMK_KEYBOARD_H | ||
|
||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
[0] = LAYOUT( | ||
KC_MUTE, KC_MPLY | ||
) | ||
}; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# ATSET AT2 | ||
|
||
A special 2 key keyboard powered by QMK. | ||
|
||
* Keyboard Maintainer: [ATSET](https://github.com/anubhavd7) | ||
* Hardware Supported: ATSET AT2 (https://imgur.com/a/yBbVwef) | ||
https://www.atsetmediscience.com/atset-at2-9949007.html | ||
Make example for this keyboard (after setting up your build environment): | ||
|
||
make atset/at2:default | ||
|
||
Flashing example for this keyboard: | ||
|
||
make atset/at2: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 press the button on the back of the PCB - some may have pads you must short instead | ||
* **Keycode in layout**: Press the key mapped to `QK_BOOT` if it is available |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,123 @@ | ||
{ | ||
"manufacturer": "DOIO", | ||
"keyboard_name": "KB09-01", | ||
"maintainer": "DOIO2022", | ||
"bootloader": "stm32duino", | ||
"diode_direction": "COL2ROW", | ||
"encoder": { | ||
"rotary": [ | ||
{"pin_a": "B5", "pin_b": "B6"}, | ||
{"pin_a": "A1", "pin_b": "A2"} | ||
] | ||
}, | ||
"features": { | ||
"bootmagic": true, | ||
"command": false, | ||
"console": false, | ||
"encoder": true, | ||
"extrakey": true, | ||
"mousekey": true, | ||
"nkro": true, | ||
"rgb_matrix": true | ||
}, | ||
"matrix_pins": { | ||
"cols": ["B14", "B13", "B12", "B0", "A7"], | ||
"rows": ["B3", "B4", "B9", "B8"] | ||
}, | ||
"processor": "STM32F103", | ||
"rgb_matrix": { | ||
"animations": { | ||
"alphas_mods": true, | ||
"band_pinwheel_sat": true, | ||
"band_pinwheel_val": true, | ||
"band_sat": true, | ||
"band_spiral_sat": true, | ||
"band_spiral_val": true, | ||
"band_val": true, | ||
"breathing": true, | ||
"cycle_all": true, | ||
"cycle_left_right": true, | ||
"cycle_out_in": true, | ||
"cycle_out_in_dual": true, | ||
"cycle_pinwheel": true, | ||
"cycle_spiral": true, | ||
"cycle_up_down": true, | ||
"digital_rain": true, | ||
"dual_beacon": true, | ||
"gradient_left_right": true, | ||
"gradient_up_down": true, | ||
"hue_breathing": true, | ||
"hue_pendulum": true, | ||
"hue_wave": true, | ||
"jellybean_raindrops": true, | ||
"multisplash": true, | ||
"pixel_fractal": true, | ||
"pixel_rain": true, | ||
"rainbow_beacon": true, | ||
"rainbow_moving_chevron": true, | ||
"rainbow_pinwheels": true, | ||
"raindrops": true, | ||
"solid_multisplash": true, | ||
"solid_reactive": true, | ||
"solid_reactive_cross": true, | ||
"solid_reactive_multicross": true, | ||
"solid_reactive_multinexus": true, | ||
"solid_reactive_multiwide": true, | ||
"solid_reactive_nexus": true, | ||
"solid_reactive_simple": true, | ||
"solid_reactive_wide": true, | ||
"solid_splash": true, | ||
"splash": true, | ||
"typing_heatmap": true | ||
}, | ||
"default": { | ||
"animation": "cycle_up_down" | ||
}, | ||
"driver": "ws2812", | ||
"layout": [ | ||
{"matrix": [0, 0], "x": 0, "y": 0, "flags": 4}, | ||
{"matrix": [0, 1], "x": 56, "y": 0, "flags": 4}, | ||
{"matrix": [0, 2], "x": 112, "y": 0, "flags": 4}, | ||
{"matrix": [1, 0], "x": 0, "y": 21, "flags": 4}, | ||
{"matrix": [1, 1], "x": 56, "y": 21, "flags": 4}, | ||
{"matrix": [1, 2], "x": 112, "y": 21, "flags": 4}, | ||
{"matrix": [2, 0], "x": 0, "y": 42, "flags": 4}, | ||
{"matrix": [2, 1], "x": 56, "y": 42, "flags": 4}, | ||
{"matrix": [2, 2], "x": 112, "y": 42, "flags": 4} | ||
], | ||
"max_brightness": 200, | ||
"sleep": true | ||
}, | ||
"url": "", | ||
"usb": { | ||
"device_version": "0.0.1", | ||
"pid": "0x0901", | ||
"vid": "0xD010" | ||
}, | ||
"ws2812": { | ||
"pin": "A10" | ||
}, | ||
"layouts": { | ||
"LAYOUT": { | ||
"layout": [ | ||
{"matrix": [1, 3], "x": 1, "y": 0}, | ||
{"matrix": [0, 0], "x": 4, "y": 0}, | ||
{"matrix": [0, 1], "x": 5, "y": 0}, | ||
{"matrix": [0, 2], "x": 6, "y": 0}, | ||
{"matrix": [0, 4], "x": 8, "y": 0}, | ||
{"matrix": [1, 4], "x": 9, "y": 0}, | ||
{"matrix": [0, 3], "x": 0, "y": 1}, | ||
{"matrix": [2, 3], "x": 2, "y": 1}, | ||
{"matrix": [1, 0], "x": 4, "y": 1}, | ||
{"matrix": [1, 1], "x": 5, "y": 1}, | ||
{"matrix": [1, 2], "x": 6, "y": 1}, | ||
{"matrix": [3, 0], "x": 1, "y": 2}, | ||
{"matrix": [2, 0], "x": 4, "y": 2}, | ||
{"matrix": [2, 1], "x": 5, "y": 2}, | ||
{"matrix": [2, 2], "x": 6, "y": 2}, | ||
{"matrix": [3, 1], "x": 3, "y": 3}, | ||
{"matrix": [3, 2], "x": 3, "y": 3} | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
/* Copyright 2022 DOIO | ||
* Copyright 2022 DOIO2022 <https://github.com/DOIO2022> | ||
* | ||
* 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 | ||
|
||
enum layer_names { | ||
_LAY0, | ||
_LAY1, | ||
_LAY2, | ||
_LAY3 | ||
}; | ||
|
||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
[_LAY0] = LAYOUT( | ||
KC_UP, KC_1, KC_2, KC_3, KC_MPLY, KC_MUTE, | ||
KC_LEFT, KC_RIGHT, KC_4, KC_5, KC_6, | ||
KC_DOWN, KC_7, KC_8, KC_9, | ||
TO(1), LWIN(KC_D)), | ||
[_LAY1] = LAYOUT( | ||
KC_TRNS, C(S(KC_S)), C(KC_H), C(KC_G), KC_TRNS, KC_TRNS, | ||
KC_TRNS, KC_TRNS, C(S(KC_A)), C(KC_J), C(S(KC_G)), | ||
KC_TRNS, C(KC_Z), KC_DEL, C(A(S(KC_E))), | ||
TO(2), KC_TRNS), | ||
[_LAY2] = LAYOUT( | ||
KC_TRNS, S(KC_I), A(KC_EQL), C(S(KC_M)), KC_TRNS, KC_TRNS, | ||
KC_TRNS, KC_TRNS, S(KC_O), A(KC_MINS), S(KC_M), | ||
KC_TRNS, KC_C, KC_V, C(KC_M), | ||
TO(3), KC_TRNS), | ||
[_LAY3] = LAYOUT( | ||
KC_TRNS, RGB_SPI, RGB_SPD, RGB_HUI, KC_TRNS, KC_TRNS, | ||
KC_TRNS, KC_TRNS, RGB_SAI, RGB_SAD, RGB_HUD, | ||
KC_TRNS, RGB_MOD, RGB_VAI, RGB_VAD, | ||
TO(0), KC_TRNS) | ||
}; | ||
|
||
#ifdef ENCODER_MAP_ENABLE | ||
const uint16_t PROGMEM encoder_map[][NUM_ENCODERS][NUM_DIRECTIONS] = { | ||
[_LAY0] = { ENCODER_CCW_CW(KC_MPRV, KC_MNXT), ENCODER_CCW_CW(KC_VOLD, KC_VOLU) }, | ||
[_LAY1] = { ENCODER_CCW_CW(KC_TRNS, KC_TRNS), ENCODER_CCW_CW(KC_TRNS, KC_TRNS) }, | ||
[_LAY2] = { ENCODER_CCW_CW(KC_TRNS, KC_TRNS), ENCODER_CCW_CW(KC_TRNS, KC_TRNS) }, | ||
[_LAY3] = { ENCODER_CCW_CW(KC_TRNS, KC_TRNS), ENCODER_CCW_CW(KC_TRNS, KC_TRNS) }, | ||
}; | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# doio/kb09 | ||
|
||
![kb09-01](https://i.imgur.com/MVKeweC.png) | ||
|
||
QMK for DOIO GBA keypad . | ||
|
||
* Keyboard Maintainer: DOIO2022 | ||
* Hardware Supported: DOIO GBA keypad | ||
|
||
Make example for this keyboard (after setting up your build environment): | ||
|
||
make doio/kb09:default | ||
|
||
Flashing example for this keyboard: | ||
|
||
make doio/kb09: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 press the button on the back of the PCB | ||
* **Keycode in layout**: Press the key mapped to `QK_BOOT` if it is available |
Oops, something went wrong.