-
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.
- Loading branch information
Showing
9 changed files
with
102 additions
and
3 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
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,19 @@ | ||
on: | ||
push: | ||
branches: | ||
- master | ||
- main | ||
paths: | ||
- "config/**" | ||
- ".github/**" | ||
- "build_matrix/reviung5.yaml" | ||
pull_request: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build_sweep: | ||
uses: zmkfirmware/zmk/.github/workflows/build-user-config.yml@main | ||
secrets: inherit | ||
with: | ||
build_matrix_path: "build_matrix/reviung5.yaml" | ||
archive_name: "zmk_reviung5" |
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,19 @@ | ||
on: | ||
push: | ||
branches: | ||
- master | ||
- main | ||
paths: | ||
- "config/**" | ||
- ".github/**" | ||
- "build_matrix/sweep.yaml" | ||
pull_request: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build_sweep: | ||
uses: zmkfirmware/zmk/.github/workflows/build-user-config.yml@main | ||
secrets: inherit | ||
with: | ||
build_matrix_path: "build_matrix/sweep.yaml" | ||
archive_name: "zmk_sweep" |
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,5 @@ | ||
--- | ||
board: | ||
- nice_nano_v2 | ||
shield: | ||
- settings_reset |
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,5 @@ | ||
--- | ||
board: | ||
- nice_nano_v2 | ||
shield: | ||
- reviung5 |
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,5 @@ | ||
--- | ||
board: | ||
- nice_nano_v2 | ||
shield: | ||
- reviung5 |
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
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,4 @@ | ||
# Uncomment the following lines to enable RGB underglow | ||
CONFIG_ZMK_RGB_UNDERGLOW=y | ||
CONFIG_WS2812_STRIP=y | ||
CONFIG_BT_CTLR_TX_PWR_PLUS_8=y |
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,38 @@ | ||
/* | ||
* Copyright (c) 2022 The ZMK Contributors | ||
* | ||
* SPDX-License-Identifier: MIT | ||
*/ | ||
|
||
#include <behaviors.dtsi> | ||
#include <dt-bindings/zmk/keys.h> | ||
#include <dt-bindings/zmk/bt.h> | ||
#include <dt-bindings/zmk/outputs.h> | ||
|
||
#define BASE 0 | ||
#define BLE 1 | ||
|
||
/ { | ||
keymap { | ||
compatible = "zmk,keymap"; | ||
|
||
base_layer { | ||
label = "BASE"; | ||
bindings = < | ||
// ╭─────────────┬──────────────┬──────────────────┬─────────────┬─────────────╮ | ||
&mo BLE &kp C_PREVIOUS &kp C_PLAY_PAUSE &kp C_NEXT &kp C_MUTE | ||
// ╰─────────────┴──────────────┴──────────────────┴─────────────┴─────────────╯ | ||
>; | ||
sensor-bindings = <&inc_dec_kp C_VOL_UP C_VOL_DN>; | ||
}; | ||
|
||
ble_layer { | ||
label = "BLE"; | ||
bindings = < | ||
// ╭─────────────┬─────────────┬─────────────┬─────────────┬─────────────╮ | ||
&trans &out OUT_TOG &bt BT_PRV &bt BT_NXT &bt BT_CLR | ||
// ╰─────────────┴─────────────┴─────────────┴─────────────┴─────────────╯ | ||
>; | ||
}; | ||
}; | ||
}; |