rename shields
This commit is contained in:
parent
0941147d9b
commit
22b1b6d476
63 changed files with 172 additions and 172 deletions
56
.github/workflows/build.yml
vendored
56
.github/workflows/build.yml
vendored
|
@ -12,9 +12,9 @@ jobs:
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- board: nice_nano
|
- board: nice_nano
|
||||||
shield: corne_artsey_left
|
shield: corne_ardux_left
|
||||||
- board: nice_nano
|
- board: nice_nano
|
||||||
shield: corne_artsey_right
|
shield: corne_ardux_right
|
||||||
- board: nice_nano
|
- board: nice_nano
|
||||||
shield: the_paintbrush_left
|
shield: the_paintbrush_left
|
||||||
- board: nice_nano
|
- board: nice_nano
|
||||||
|
@ -40,25 +40,25 @@ jobs:
|
||||||
- board: nice_nano
|
- board: nice_nano
|
||||||
shield: artboard_right
|
shield: artboard_right
|
||||||
- board: nice_nano
|
- board: nice_nano
|
||||||
shield: corne_5_col_artsey_left
|
shield: corne_5_col_ardux_left
|
||||||
- board: nice_nano
|
- board: nice_nano
|
||||||
shield: corne_5_col_artsey_right
|
shield: corne_5_col_ardux_right
|
||||||
- board: nice_nano
|
- board: nice_nano
|
||||||
shield: corne_5_col_artsey_left_big
|
shield: corne_5_col_ardux_left_big
|
||||||
- board: nice_nano
|
- board: nice_nano
|
||||||
shield: corne_5_col_artsey_right_big
|
shield: corne_5_col_ardux_right_big
|
||||||
- board: nice_nano_v2
|
- board: nice_nano_v2
|
||||||
shield: corne_5_col_artsey_left_big
|
shield: corne_5_col_ardux_left_big
|
||||||
- board: nice_nano_v2
|
- board: nice_nano_v2
|
||||||
shield: corne_5_col_artsey_right_big
|
shield: corne_5_col_ardux_right_big
|
||||||
- board: bluemicro840_v1
|
- board: bluemicro840_v1
|
||||||
shield: bluehand_left
|
shield: bluehand_left
|
||||||
- board: bluemicro840_v1
|
- board: bluemicro840_v1
|
||||||
shield: bluehand_right
|
shield: bluehand_right
|
||||||
- board: nice_nano
|
- board: nice_nano
|
||||||
shield: tidbit_artsey_left
|
shield: tidbit_ardux_left
|
||||||
- board: nice_nano
|
- board: nice_nano
|
||||||
shield: tidbit_artsey_right
|
shield: tidbit_ardux_right
|
||||||
- board: nice_nano
|
- board: nice_nano
|
||||||
shield: the_paintbrush_left_tsraneio
|
shield: the_paintbrush_left_tsraneio
|
||||||
- board: nice_nano
|
- board: nice_nano
|
||||||
|
@ -68,13 +68,13 @@ jobs:
|
||||||
- board: nice_nano_v2
|
- board: nice_nano_v2
|
||||||
shield: the_paintbrush_right_tsraneio
|
shield: the_paintbrush_right_tsraneio
|
||||||
- board: nice_nano_v2
|
- board: nice_nano_v2
|
||||||
shield: cradio_artsey_left
|
shield: cradio_ardux_left
|
||||||
- board: nice_nano_v2
|
- board: nice_nano_v2
|
||||||
shield: cradio_artsey_thumb_left
|
shield: cradio_ardux_thumb_left
|
||||||
- board: nice_nano_v2
|
- board: nice_nano_v2
|
||||||
shield: cradio_artsey_right
|
shield: cradio_ardux_right
|
||||||
- board: nice_nano_v2
|
- board: nice_nano_v2
|
||||||
shield: cradio_artsey_thumb_right
|
shield: cradio_ardux_thumb_right
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
@ -107,39 +107,39 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
if [ -n "${{ matrix.shield }}" ]; then
|
if [ -n "${{ matrix.shield }}" ]; then
|
||||||
SHIELD_ARG="-DSHIELD=${{ matrix.shield }}"
|
SHIELD_ARG="-DSHIELD=${{ matrix.shield }}"
|
||||||
ARTIFACT_NAME="${{ matrix.shield }}-${{ matrix.board }}-zmk-artsey"
|
ARTIFACT_NAME="${{ matrix.shield }}-${{ matrix.board }}-zmk-ardux"
|
||||||
else
|
else
|
||||||
SHIELD_ARG=
|
SHIELD_ARG=
|
||||||
ARTIFACT_NAME="${{ matrix.board }}-zmk-artsey"
|
ARTIFACT_NAME="${{ matrix.board }}-zmk-ardux"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo ::set-output name=shield-arg::${SHIELD_ARG}
|
echo ::set-output name=shield-arg::${SHIELD_ARG}
|
||||||
echo ::set-output name=artifact-name::${ARTIFACT_NAME}
|
echo ::set-output name=artifact-name::${ARTIFACT_NAME}
|
||||||
- name: Build (west build)
|
- name: Build (west build)
|
||||||
run: west build -s zmk/app -b ${{ matrix.board }} -- ${{ steps.variables.outputs.shield-arg }} -DZMK_CONFIG="${GITHUB_WORKSPACE}/config"
|
run: west build -s zmk/app -b ${{ matrix.board }} -- ${{ steps.variables.outputs.shield-arg }} -DZMK_CONFIG="${GITHUB_WORKSPACE}/config"
|
||||||
- name: ARTSEY implementation dtsi file
|
- name: ARDUX implementation dtsi file
|
||||||
if: always()
|
if: always()
|
||||||
run: cat -n config/artsey.dtsi
|
run: cat -n config/ardux.dtsi
|
||||||
- name: Generated DTS file
|
- name: Generated DTS file
|
||||||
if: always()
|
if: always()
|
||||||
run: cat -n build/zephyr/${{ matrix.board }}.dts.pre.tmp
|
run: cat -n build/zephyr/${{ matrix.board }}.dts.pre.tmp
|
||||||
- name: Prep artifact (artsey.dtsi)
|
- name: Prep artifact (ardux.dtsi)
|
||||||
run: cp config/artsey.dtsi ./artsey.dtsi
|
run: cp config/ardux.dtsi ./ardux.dtsi
|
||||||
- name: Prep artifact (${{ matrix.shield }}-${{ matrix.board }}.dts.pre.tmp)
|
- name: Prep artifact (${{ matrix.shield }}-${{ matrix.board }}.dts.pre.tmp)
|
||||||
run: cp build/zephyr/${{ matrix.board }}.dts.pre.tmp ./${{ matrix.shield }}-${{ matrix.board }}.dts.pre.tmp
|
run: cp build/zephyr/${{ matrix.board }}.dts.pre.tmp ./${{ matrix.shield }}-${{ matrix.board }}.dts.pre.tmp
|
||||||
- name: Prep artifact (${{ matrix.shield }}-${{ matrix.board }}-zmk-artsey.hex)
|
- name: Prep artifact (${{ matrix.shield }}-${{ matrix.board }}-zmk-ardux.hex)
|
||||||
run: cp build/zephyr/zmk.hex ${{ matrix.shield }}-${{ matrix.board }}-zmk-artsey.hex
|
run: cp build/zephyr/zmk.hex ${{ matrix.shield }}-${{ matrix.board }}-zmk-ardux.hex
|
||||||
- name: Prep artifact (${{ matrix.shield }}-${{ matrix.board }}-zmk-artsey.uf2)
|
- name: Prep artifact (${{ matrix.shield }}-${{ matrix.board }}-zmk-ardux.uf2)
|
||||||
run: cp build/zephyr/zmk.uf2 ${{ matrix.shield }}-${{ matrix.board }}-zmk-artsey.uf2
|
run: cp build/zephyr/zmk.uf2 ${{ matrix.shield }}-${{ matrix.board }}-zmk-ardux.uf2
|
||||||
- name: Archive artifacts
|
- name: Archive artifacts
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: '${{ steps.variables.outputs.artifact-name }}'
|
name: '${{ steps.variables.outputs.artifact-name }}'
|
||||||
path: |
|
path: |
|
||||||
artsey.dtsi
|
ardux.dtsi
|
||||||
${{ matrix.shield }}-${{ matrix.board }}.dts.pre.tmp
|
${{ matrix.shield }}-${{ matrix.board }}.dts.pre.tmp
|
||||||
${{ matrix.shield }}-${{ matrix.board }}-zmk-artsey.hex
|
${{ matrix.shield }}-${{ matrix.board }}-zmk-ardux.hex
|
||||||
${{ matrix.shield }}-${{ matrix.board }}-zmk-artsey.uf2
|
${{ matrix.shield }}-${{ matrix.board }}-zmk-ardux.uf2
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
release:
|
release:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
@ -152,7 +152,7 @@ jobs:
|
||||||
- name: Generate release text
|
- name: Generate release text
|
||||||
id: release_text
|
id: release_text
|
||||||
run: >
|
run: >
|
||||||
echo "::set-output name=release_text::$(echo '<b>Precompiled firmware files for ARTSEY</b><br><br>
|
echo "::set-output name=release_text::$(echo '<b>Precompiled firmware files for ARDUX</b><br><br>
|
||||||
Download a firmware file by expanding "Assets", right clicking, and choosing "Save File As" or "Save Link As".
|
Download a firmware file by expanding "Assets", right clicking, and choosing "Save File As" or "Save Link As".
|
||||||
<br>${{ github.event.inputs.releaseBody }}
|
<br>${{ github.event.inputs.releaseBody }}
|
||||||
<br>Released on ${{ steps.date.outputs.date }}.
|
<br>Released on ${{ steps.date.outputs.date }}.
|
||||||
|
|
|
@ -10,10 +10,10 @@ The `Releases` area of this repository contains the latest builds of the ZMK ARD
|
||||||
|
|
||||||
Inside the firmware zip file will be 4 files
|
Inside the firmware zip file will be 4 files
|
||||||
|
|
||||||
- `artsey.dtsi`: The ARDUX definition that was used for the build
|
- `ardux.dtsi`: The ARDUX definition that was used for the build
|
||||||
- A file with `.dts.pre.tmp` at the end that is the generated DTS file used for the build (this is for any required troubleshooting)
|
- A file with `.dts.pre.tmp` at the end that is the generated DTS file used for the build (this is for any required troubleshooting)
|
||||||
- A file with `-zmk-artsey.hex` at the end that is the hex firmware image that can be used to flash your MCU
|
- A file with `-zmk-ardux.hex` at the end that is the hex firmware image that can be used to flash your MCU
|
||||||
- A file with `-zmk-artsey.uf2` at the end that is the uf2 firmware image that can be used to flash your MCU
|
- A file with `-zmk-ardux.uf2` at the end that is the uf2 firmware image that can be used to flash your MCU
|
||||||
|
|
||||||
Please Note: the `hex` and `uf2` files may or may not be present depending on your MCU + board combo. **PLEASE** use the proper file for flashing your board.
|
Please Note: the `hex` and `uf2` files may or may not be present depending on your MCU + board combo. **PLEASE** use the proper file for flashing your board.
|
||||||
|
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
|
|
||||||
/*****************************************
|
/*****************************************
|
||||||
* ARDUX website : https://www.ardux.io
|
* ARDUX website : https://www.ardux.io
|
||||||
* Primary reference : https://www.artsey.io/_FILES/images/ARTSEY.jpg
|
* Primary reference : https://www.ardux.io/_FILES/images/ARDUX.jpg
|
||||||
*****************************************/
|
*****************************************/
|
||||||
|
|
||||||
/*****************************************
|
/*****************************************
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
# Artboard
|
# Artboard
|
||||||
|
|
||||||
This directory contains the ARTSEY implementation for the `Artboard` hardware being developed by depadiernos. Repo: https://github.com/depadiernos/artboard
|
This directory contains the ARDUX implementation for the `Artboard` hardware being developed by depadiernos. Repo: https://github.com/depadiernos/artboard
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Copyright (c) 2021 Dennis "depadiernos" Padiernos
|
# Copyright (c) 2021 Dennis "depadiernos" Padiernos
|
||||||
# SPDX-License-Identifier: MIT
|
# SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
# Tune combos to allow proper ARTSEY support
|
# Tune combos to allow proper ARDUX support
|
||||||
CONFIG_ZMK_COMBO_MAX_COMBOS_PER_KEY=16
|
CONFIG_ZMK_COMBO_MAX_COMBOS_PER_KEY=16
|
||||||
CONFIG_ZMK_COMBO_MAX_KEYS_PER_COMBO=8
|
CONFIG_ZMK_COMBO_MAX_KEYS_PER_COMBO=8
|
||||||
CONFIG_ZMK_COMBO_MAX_PRESSED_COMBOS=8
|
CONFIG_ZMK_COMBO_MAX_PRESSED_COMBOS=8
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
#include <dt-bindings/zmk/bt.h>
|
#include <dt-bindings/zmk/bt.h>
|
||||||
|
|
||||||
// Left/Right
|
// Left/Right
|
||||||
#define ARTSEY_LEFT 1
|
#define ARDUX_LEFT 1
|
||||||
|
|
||||||
// ARTS Row
|
// ARTS Row
|
||||||
#define KEY_A 3
|
#define KEY_A 3
|
||||||
|
@ -27,5 +27,5 @@
|
||||||
#define MIDDLE_NONES NONE(0, 0, 0)
|
#define MIDDLE_NONES NONE(0, 0, 0)
|
||||||
#define TRAILING_NONES NONE(0, 0, 0)
|
#define TRAILING_NONES NONE(0, 0, 0)
|
||||||
|
|
||||||
// Include main artsey.io keymap
|
// Include main ardux.io keymap
|
||||||
#include "../../../artsey.dtsi"
|
#include "../../../ardux.dtsi"
|
|
@ -1,7 +1,7 @@
|
||||||
# Copyright (c) 2021 Dennis "depadiernos" Padiernos
|
# Copyright (c) 2021 Dennis "depadiernos" Padiernos
|
||||||
# SPDX-License-Identifier: MIT
|
# SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
# Tune combos to allow proper ARTSEY support
|
# Tune combos to allow proper ARDUX support
|
||||||
CONFIG_ZMK_COMBO_MAX_COMBOS_PER_KEY=16
|
CONFIG_ZMK_COMBO_MAX_COMBOS_PER_KEY=16
|
||||||
CONFIG_ZMK_COMBO_MAX_KEYS_PER_COMBO=8
|
CONFIG_ZMK_COMBO_MAX_KEYS_PER_COMBO=8
|
||||||
CONFIG_ZMK_COMBO_MAX_PRESSED_COMBOS=8
|
CONFIG_ZMK_COMBO_MAX_PRESSED_COMBOS=8
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
#include <dt-bindings/zmk/bt.h>
|
#include <dt-bindings/zmk/bt.h>
|
||||||
|
|
||||||
// Left/Right
|
// Left/Right
|
||||||
#define ARTSEY_RIGHT 1
|
#define ARDUX_RIGHT 1
|
||||||
|
|
||||||
// ARTS Row
|
// ARTS Row
|
||||||
#define KEY_A 0
|
#define KEY_A 0
|
||||||
|
@ -27,5 +27,5 @@
|
||||||
#define MIDDLE_NONES NONE(0, 0, 0)
|
#define MIDDLE_NONES NONE(0, 0, 0)
|
||||||
#define TRAILING_NONES NONE(0, 0, 0)
|
#define TRAILING_NONES NONE(0, 0, 0)
|
||||||
|
|
||||||
// Include main artsey.io keymap
|
// Include main ardux.io keymap
|
||||||
#include "../../../artsey.dtsi"
|
#include "../../../ardux.dtsi"
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
# BlueHand
|
# BlueHand
|
||||||
|
|
||||||
This directory contains the ARTSEY implementation for `BlueHand` hardware being developed by Pierre Constantineau (jpconstantineau).
|
This directory contains the ARDUX implementation for `BlueHand` hardware being developed by Pierre Constantineau (jpconstantineau).
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Copyright (c) 2021 Mike "KemoNine" Crosson
|
# Copyright (c) 2021 Mike "KemoNine" Crosson
|
||||||
# SPDX-License-Identifier: MIT
|
# SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
# Tune combos to allow proper ARTSEY support
|
# Tune combos to allow proper ARDUX support
|
||||||
CONFIG_ZMK_COMBO_MAX_COMBOS_PER_KEY=16
|
CONFIG_ZMK_COMBO_MAX_COMBOS_PER_KEY=16
|
||||||
CONFIG_ZMK_COMBO_MAX_KEYS_PER_COMBO=8
|
CONFIG_ZMK_COMBO_MAX_KEYS_PER_COMBO=8
|
||||||
CONFIG_ZMK_COMBO_MAX_PRESSED_COMBOS=8
|
CONFIG_ZMK_COMBO_MAX_PRESSED_COMBOS=8
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
#include <dt-bindings/zmk/bt.h>
|
#include <dt-bindings/zmk/bt.h>
|
||||||
|
|
||||||
// THE BOARD IS FLIPPED FOR LEFT BUT STILL WIRED RIGHT!
|
// THE BOARD IS FLIPPED FOR LEFT BUT STILL WIRED RIGHT!
|
||||||
#define ARTSEY_LEFT 1
|
#define ARDUX_LEFT 1
|
||||||
|
|
||||||
// ARTS Row
|
// ARTS Row
|
||||||
#define KEY_A 3
|
#define KEY_A 3
|
||||||
|
@ -27,5 +27,5 @@
|
||||||
#define MIDDLE_NONES NONE(0, 0, 0)
|
#define MIDDLE_NONES NONE(0, 0, 0)
|
||||||
#define TRAILING_NONES NONE(0, 0, 0)
|
#define TRAILING_NONES NONE(0, 0, 0)
|
||||||
|
|
||||||
// Include main artsey.io keymap
|
// Include main ardux.io keymap
|
||||||
#include "../../../artsey.dtsi"
|
#include "../../../ardux.dtsi"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Copyright (c) 2021 Mike "KemoNine" Crosson
|
# Copyright (c) 2021 Mike "KemoNine" Crosson
|
||||||
# SPDX-License-Identifier: MIT
|
# SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
# Tune combos to allow proper ARTSEY support
|
# Tune combos to allow proper ARDUX support
|
||||||
CONFIG_ZMK_COMBO_MAX_COMBOS_PER_KEY=16
|
CONFIG_ZMK_COMBO_MAX_COMBOS_PER_KEY=16
|
||||||
CONFIG_ZMK_COMBO_MAX_KEYS_PER_COMBO=8
|
CONFIG_ZMK_COMBO_MAX_KEYS_PER_COMBO=8
|
||||||
CONFIG_ZMK_COMBO_MAX_PRESSED_COMBOS=8
|
CONFIG_ZMK_COMBO_MAX_PRESSED_COMBOS=8
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
#include <dt-bindings/zmk/bt.h>
|
#include <dt-bindings/zmk/bt.h>
|
||||||
|
|
||||||
// THE BOARD IS FLIPPED FOR LEFT BUT STILL WIRED RIGHT!
|
// THE BOARD IS FLIPPED FOR LEFT BUT STILL WIRED RIGHT!
|
||||||
#define ARTSEY_RIGHT 1
|
#define ARDUX_RIGHT 1
|
||||||
|
|
||||||
// ARTS Row
|
// ARTS Row
|
||||||
#define KEY_A 0
|
#define KEY_A 0
|
||||||
|
@ -27,5 +27,5 @@
|
||||||
#define MIDDLE_NONES NONE(0, 0, 0)
|
#define MIDDLE_NONES NONE(0, 0, 0)
|
||||||
#define TRAILING_NONES NONE(0, 0, 0)
|
#define TRAILING_NONES NONE(0, 0, 0)
|
||||||
|
|
||||||
// Include main artsey.io keymap
|
// Include main ardux.io keymap
|
||||||
#include "../../../artsey.dtsi"
|
#include "../../../ardux.dtsi"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
if SHIELD_CORNE_ARTSEY_LEFT || SHIELD_CORNE_5_COL_ARTSEY_LEFT || SHIELD_CORNE_5_COL_ARTSEY_LEFT_BIG
|
if SHIELD_CORNE_ARDUX_LEFT || SHIELD_CORNE_5_COL_ARDUX_LEFT || SHIELD_CORNE_5_COL_ARDUX_LEFT_BIG
|
||||||
|
|
||||||
config ZMK_KEYBOARD_NAME
|
config ZMK_KEYBOARD_NAME
|
||||||
default "ARTSEY L"
|
default "ARDUX L"
|
||||||
|
|
||||||
config I2C
|
config I2C
|
||||||
default y
|
default y
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
# Copyright (c) 2021 Mike "KemoNine" Crosson
|
# Copyright (c) 2021 Mike "KemoNine" Crosson
|
||||||
# SPDX-License-Identifier: MIT
|
# SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
config SHIELD_CORNE_ARTSEY_LEFT
|
config SHIELD_CORNE_ARDUX_LEFT
|
||||||
def_bool $(shields_list_contains,corne_artsey_left)
|
def_bool $(shields_list_contains,corne_ardux_left)
|
||||||
|
|
||||||
config SHIELD_CORNE_5_COL_ARTSEY_LEFT
|
config SHIELD_CORNE_5_COL_ARDUX_LEFT
|
||||||
def_bool $(shields_list_contains,corne_5_col_artsey_left)
|
def_bool $(shields_list_contains,corne_5_col_ardux_left)
|
||||||
|
|
||||||
config SHIELD_CORNE_5_COL_ARTSEY_LEFT_BIG
|
config SHIELD_CORNE_5_COL_ARDUX_LEFT_BIG
|
||||||
def_bool $(shields_list_contains,corne_5_col_artsey_left_big)
|
def_bool $(shields_list_contains,corne_5_col_ardux_left_big)
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
# Corne - Left
|
# Corne - Left
|
||||||
|
|
||||||
This directory contians the ARTSEY implementation for the [corne](https://github.com/foostan/crkbd). *Both* 5 and 6 column varients are supported.
|
This directory contians the ARDUX implementation for the [corne](https://github.com/foostan/crkbd). *Both* 5 and 6 column varients are supported.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Copyright (c) 2021 Mike "KemoNine" Crosson
|
# Copyright (c) 2021 Mike "KemoNine" Crosson
|
||||||
# SPDX-License-Identifier: MIT
|
# SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
# Tune combos to allow proper ARTSEY support
|
# Tune combos to allow proper ARDUX support
|
||||||
CONFIG_ZMK_COMBO_MAX_COMBOS_PER_KEY=16
|
CONFIG_ZMK_COMBO_MAX_COMBOS_PER_KEY=16
|
||||||
CONFIG_ZMK_COMBO_MAX_KEYS_PER_COMBO=8
|
CONFIG_ZMK_COMBO_MAX_KEYS_PER_COMBO=8
|
||||||
CONFIG_ZMK_COMBO_MAX_PRESSED_COMBOS=8
|
CONFIG_ZMK_COMBO_MAX_PRESSED_COMBOS=8
|
||||||
|
|
|
@ -8,8 +8,8 @@
|
||||||
#include <dt-bindings/zmk/keys.h>
|
#include <dt-bindings/zmk/keys.h>
|
||||||
#include <dt-bindings/zmk/bt.h>
|
#include <dt-bindings/zmk/bt.h>
|
||||||
|
|
||||||
// Enable ARTSEY Left
|
// Enable ARDUX Left
|
||||||
#define ARTSEY_LEFT 1
|
#define ARDUX_LEFT 1
|
||||||
|
|
||||||
// ARTS Row
|
// ARTS Row
|
||||||
#define KEY_A 3
|
#define KEY_A 3
|
||||||
|
@ -32,5 +32,5 @@
|
||||||
#define THUMB_2 16
|
#define THUMB_2 16
|
||||||
#define THUMB_3 17
|
#define THUMB_3 17
|
||||||
|
|
||||||
// Include main artsey.io keymap
|
// Include main ardux.io keymap
|
||||||
#include "../../../artsey.dtsi"
|
#include "../../../ardux.dtsi"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Copyright (c) 2021 Mike "KemoNine" Crosson
|
# Copyright (c) 2021 Mike "KemoNine" Crosson
|
||||||
# SPDX-License-Identifier: MIT
|
# SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
# Tune combos to allow proper ARTSEY support
|
# Tune combos to allow proper ARDUX support
|
||||||
CONFIG_ZMK_COMBO_MAX_COMBOS_PER_KEY=16
|
CONFIG_ZMK_COMBO_MAX_COMBOS_PER_KEY=16
|
||||||
CONFIG_ZMK_COMBO_MAX_KEYS_PER_COMBO=8
|
CONFIG_ZMK_COMBO_MAX_KEYS_PER_COMBO=8
|
||||||
CONFIG_ZMK_COMBO_MAX_PRESSED_COMBOS=8
|
CONFIG_ZMK_COMBO_MAX_PRESSED_COMBOS=8
|
||||||
|
|
|
@ -8,9 +8,9 @@
|
||||||
#include <dt-bindings/zmk/keys.h>
|
#include <dt-bindings/zmk/keys.h>
|
||||||
#include <dt-bindings/zmk/bt.h>
|
#include <dt-bindings/zmk/bt.h>
|
||||||
|
|
||||||
// Enable ARTSEY Left
|
// Enable ARDUX Left
|
||||||
#define ARTSEY_LEFT 1
|
#define ARDUX_LEFT 1
|
||||||
#define ARTSEY_BIG 1
|
#define ARDUX_BIG 1
|
||||||
|
|
||||||
// ARTS Row
|
// ARTS Row
|
||||||
#define KEY_A 3
|
#define KEY_A 3
|
||||||
|
@ -22,7 +22,7 @@
|
||||||
#define KEY_Y 7
|
#define KEY_Y 7
|
||||||
#define KEY_I 6
|
#define KEY_I 6
|
||||||
#define KEY_O 5
|
#define KEY_O 5
|
||||||
// Big artsey F1-12 layer keys for combo
|
// Big ardux F1-12 layer keys for combo
|
||||||
#define KEY_F_TOP 4
|
#define KEY_F_TOP 4
|
||||||
#define KEY_F_BOTTOM 9
|
#define KEY_F_BOTTOM 9
|
||||||
|
|
||||||
|
@ -36,5 +36,5 @@
|
||||||
#define BIG_BETWEEN_ROW_THREE_THUMBS NONE(0, 0, 0)
|
#define BIG_BETWEEN_ROW_THREE_THUMBS NONE(0, 0, 0)
|
||||||
#define BIG_TRAILING_NONES NONE(0, 0, 0)
|
#define BIG_TRAILING_NONES NONE(0, 0, 0)
|
||||||
|
|
||||||
// Include main artsey.io keymap
|
// Include main ardux.io keymap
|
||||||
#include "../../../artsey.dtsi"
|
#include "../../../ardux.dtsi"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Copyright (c) 2021 Mike "KemoNine" Crosson
|
# Copyright (c) 2021 Mike "KemoNine" Crosson
|
||||||
# SPDX-License-Identifier: MIT
|
# SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
# Tune combos to allow proper ARTSEY support
|
# Tune combos to allow proper ARDUX support
|
||||||
CONFIG_ZMK_COMBO_MAX_COMBOS_PER_KEY=16
|
CONFIG_ZMK_COMBO_MAX_COMBOS_PER_KEY=16
|
||||||
CONFIG_ZMK_COMBO_MAX_KEYS_PER_COMBO=8
|
CONFIG_ZMK_COMBO_MAX_KEYS_PER_COMBO=8
|
||||||
CONFIG_ZMK_COMBO_MAX_PRESSED_COMBOS=8
|
CONFIG_ZMK_COMBO_MAX_PRESSED_COMBOS=8
|
||||||
|
|
|
@ -8,8 +8,8 @@
|
||||||
#include <dt-bindings/zmk/keys.h>
|
#include <dt-bindings/zmk/keys.h>
|
||||||
#include <dt-bindings/zmk/bt.h>
|
#include <dt-bindings/zmk/bt.h>
|
||||||
|
|
||||||
// Enable ARTSEY Left
|
// Enable ARDUX Left
|
||||||
#define ARTSEY_LEFT 1
|
#define ARDUX_LEFT 1
|
||||||
|
|
||||||
// ARTS Row
|
// ARTS Row
|
||||||
#define KEY_A 4
|
#define KEY_A 4
|
||||||
|
@ -32,5 +32,5 @@
|
||||||
#define THUMB_2 19
|
#define THUMB_2 19
|
||||||
#define THUMB_3 20
|
#define THUMB_3 20
|
||||||
|
|
||||||
// Include main artsey.io keymap
|
// Include main ardux.io keymap
|
||||||
#include "../../../artsey.dtsi"
|
#include "../../../ardux.dtsi"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
if SHIELD_CORNE_ARTSEY_RIGHT || SHIELD_CORNE_5_COL_ARTSEY_RIGHT || SHIELD_CORNE_5_COL_ARTSEY_RIGHT_BIG
|
if SHIELD_CORNE_ARDUX_RIGHT || SHIELD_CORNE_5_COL_ARDUX_RIGHT || SHIELD_CORNE_5_COL_ARDUX_RIGHT_BIG
|
||||||
|
|
||||||
config ZMK_KEYBOARD_NAME
|
config ZMK_KEYBOARD_NAME
|
||||||
default "ARTSEY R"
|
default "ARDUX R"
|
||||||
|
|
||||||
config I2C
|
config I2C
|
||||||
default y
|
default y
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
# Copyright (c) 2021 Mike "KemoNine" Crosson
|
# Copyright (c) 2021 Mike "KemoNine" Crosson
|
||||||
# SPDX-License-Identifier: MIT
|
# SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
config SHIELD_CORNE_ARTSEY_RIGHT
|
config SHIELD_CORNE_ARDUX_RIGHT
|
||||||
def_bool $(shields_list_contains,corne_artsey_right)
|
def_bool $(shields_list_contains,corne_ardux_right)
|
||||||
|
|
||||||
config SHIELD_CORNE_5_COL_ARTSEY_RIGHT
|
config SHIELD_CORNE_5_COL_ARDUX_RIGHT
|
||||||
def_bool $(shields_list_contains,corne_5_col_artsey_right)
|
def_bool $(shields_list_contains,corne_5_col_ardux_right)
|
||||||
|
|
||||||
config SHIELD_CORNE_5_COL_ARTSEY_RIGHT_BIG
|
config SHIELD_CORNE_5_COL_ARDUX_RIGHT_BIG
|
||||||
def_bool $(shields_list_contains,corne_5_col_artsey_right_big)
|
def_bool $(shields_list_contains,corne_5_col_ardux_right_big)
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
# Corne - Right
|
# Corne - Right
|
||||||
|
|
||||||
This directory contians the ARTSEY implementation for the [corne](https://github.com/foostan/crkbd). *Both* 5 and 6 column varients are supported.
|
This directory contians the ARDUX implementation for the [corne](https://github.com/foostan/crkbd). *Both* 5 and 6 column varients are supported.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Copyright (c) 2021 Mike "KemoNine" Crosson
|
# Copyright (c) 2021 Mike "KemoNine" Crosson
|
||||||
# SPDX-License-Identifier: MIT
|
# SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
# Tune combos to allow proper ARTSEY support
|
# Tune combos to allow proper ARDUX support
|
||||||
CONFIG_ZMK_COMBO_MAX_COMBOS_PER_KEY=16
|
CONFIG_ZMK_COMBO_MAX_COMBOS_PER_KEY=16
|
||||||
CONFIG_ZMK_COMBO_MAX_KEYS_PER_COMBO=8
|
CONFIG_ZMK_COMBO_MAX_KEYS_PER_COMBO=8
|
||||||
CONFIG_ZMK_COMBO_MAX_PRESSED_COMBOS=8
|
CONFIG_ZMK_COMBO_MAX_PRESSED_COMBOS=8
|
||||||
|
|
|
@ -8,8 +8,8 @@
|
||||||
#include <dt-bindings/zmk/keys.h>
|
#include <dt-bindings/zmk/keys.h>
|
||||||
#include <dt-bindings/zmk/bt.h>
|
#include <dt-bindings/zmk/bt.h>
|
||||||
|
|
||||||
// Enable ARTSEY Right
|
// Enable ARDUX Right
|
||||||
#define ARTSEY_RIGHT 1
|
#define ARDUX_RIGHT 1
|
||||||
|
|
||||||
// ARTS Row
|
// ARTS Row
|
||||||
#define KEY_A 1
|
#define KEY_A 1
|
||||||
|
@ -32,5 +32,5 @@
|
||||||
#define THUMB_2 16
|
#define THUMB_2 16
|
||||||
#define THUMB_3 17
|
#define THUMB_3 17
|
||||||
|
|
||||||
// Include main artsey.io keymap
|
// Include main ardux.io keymap
|
||||||
#include "../../../artsey.dtsi"
|
#include "../../../ardux.dtsi"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Copyright (c) 2021 Mike "KemoNine" Crosson
|
# Copyright (c) 2021 Mike "KemoNine" Crosson
|
||||||
# SPDX-License-Identifier: MIT
|
# SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
# Tune combos to allow proper ARTSEY support
|
# Tune combos to allow proper ARDUX support
|
||||||
CONFIG_ZMK_COMBO_MAX_COMBOS_PER_KEY=16
|
CONFIG_ZMK_COMBO_MAX_COMBOS_PER_KEY=16
|
||||||
CONFIG_ZMK_COMBO_MAX_KEYS_PER_COMBO=8
|
CONFIG_ZMK_COMBO_MAX_KEYS_PER_COMBO=8
|
||||||
CONFIG_ZMK_COMBO_MAX_PRESSED_COMBOS=8
|
CONFIG_ZMK_COMBO_MAX_PRESSED_COMBOS=8
|
||||||
|
|
|
@ -8,9 +8,9 @@
|
||||||
#include <dt-bindings/zmk/keys.h>
|
#include <dt-bindings/zmk/keys.h>
|
||||||
#include <dt-bindings/zmk/bt.h>
|
#include <dt-bindings/zmk/bt.h>
|
||||||
|
|
||||||
// Enable ARTSEY Right
|
// Enable ARDUX Right
|
||||||
#define ARTSEY_RIGHT 1
|
#define ARDUX_RIGHT 1
|
||||||
#define ARTSEY_BIG 1
|
#define ARDUX_BIG 1
|
||||||
|
|
||||||
// ARTS Row
|
// ARTS Row
|
||||||
#define KEY_A 1
|
#define KEY_A 1
|
||||||
|
@ -22,7 +22,7 @@
|
||||||
#define KEY_Y 7
|
#define KEY_Y 7
|
||||||
#define KEY_I 8
|
#define KEY_I 8
|
||||||
#define KEY_O 9
|
#define KEY_O 9
|
||||||
// Big artsey F1-12 layer keys for combo
|
// Big ardux F1-12 layer keys for combo
|
||||||
#define KEY_F_TOP 0
|
#define KEY_F_TOP 0
|
||||||
#define KEY_F_BOTTOM 5
|
#define KEY_F_BOTTOM 5
|
||||||
|
|
||||||
|
@ -36,5 +36,5 @@
|
||||||
#define BIG_BETWEEN_ROW_THREE_THUMBS NONE(0, 0, 0)
|
#define BIG_BETWEEN_ROW_THREE_THUMBS NONE(0, 0, 0)
|
||||||
#define BIG_TRAILING_NONES NONE(0, 0, 0)
|
#define BIG_TRAILING_NONES NONE(0, 0, 0)
|
||||||
|
|
||||||
// Include main artsey.io keymap
|
// Include main ardux.io keymap
|
||||||
#include "../../../artsey.dtsi"
|
#include "../../../ardux.dtsi"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Copyright (c) 2021 Mike "KemoNine" Crosson
|
# Copyright (c) 2021 Mike "KemoNine" Crosson
|
||||||
# SPDX-License-Identifier: MIT
|
# SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
# Tune combos to allow proper ARTSEY support
|
# Tune combos to allow proper ARDUX support
|
||||||
CONFIG_ZMK_COMBO_MAX_COMBOS_PER_KEY=16
|
CONFIG_ZMK_COMBO_MAX_COMBOS_PER_KEY=16
|
||||||
CONFIG_ZMK_COMBO_MAX_KEYS_PER_COMBO=8
|
CONFIG_ZMK_COMBO_MAX_KEYS_PER_COMBO=8
|
||||||
CONFIG_ZMK_COMBO_MAX_PRESSED_COMBOS=8
|
CONFIG_ZMK_COMBO_MAX_PRESSED_COMBOS=8
|
||||||
|
|
|
@ -8,8 +8,8 @@
|
||||||
#include <dt-bindings/zmk/keys.h>
|
#include <dt-bindings/zmk/keys.h>
|
||||||
#include <dt-bindings/zmk/bt.h>
|
#include <dt-bindings/zmk/bt.h>
|
||||||
|
|
||||||
// Enable ARTSEY Right
|
// Enable ARDUX Right
|
||||||
#define ARTSEY_RIGHT 1
|
#define ARDUX_RIGHT 1
|
||||||
|
|
||||||
// ARTS Row
|
// ARTS Row
|
||||||
#define KEY_A 1
|
#define KEY_A 1
|
||||||
|
@ -32,5 +32,5 @@
|
||||||
#define THUMB_2 19
|
#define THUMB_2 19
|
||||||
#define THUMB_3 20
|
#define THUMB_3 20
|
||||||
|
|
||||||
// Include main artsey.io keymap
|
// Include main ardux.io keymap
|
||||||
#include "../../../artsey.dtsi"
|
#include "../../../ardux.dtsi"
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
# Copyright (c) 2020 The ZMK Contributors
|
# Copyright (c) 2020 The ZMK Contributors
|
||||||
# SPDX-License-Identifier: MIT
|
# SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
if SHIELD_CRADIO_ARTSEY_LEFT || SHIELD_CRADIO_ARTSEY_THUMB_LEFT
|
if SHIELD_CRADIO_ARDUX_LEFT || SHIELD_CRADIO_ARDUX_THUMB_LEFT
|
||||||
|
|
||||||
config ZMK_KEYBOARD_NAME
|
config ZMK_KEYBOARD_NAME
|
||||||
default "Artsey L"
|
default "Ardux L"
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
# Copyright (c) 2020 The ZMK Contributors
|
# Copyright (c) 2020 The ZMK Contributors
|
||||||
# SPDX-License-Identifier: MIT
|
# SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
config SHIELD_CRADIO_ARTSEY_LEFT
|
config SHIELD_CRADIO_ARDUX_LEFT
|
||||||
def_bool $(shields_list_contains,cradio_artsey_left)
|
def_bool $(shields_list_contains,cradio_ardux_left)
|
||||||
|
|
||||||
config SHIELD_CRADIO_ARTSEY_THUMB_LEFT
|
config SHIELD_CRADIO_ARDUX_THUMB_LEFT
|
||||||
def_bool $(shields_list_contains,cradio_artsey_thumb_left)
|
def_bool $(shields_list_contains,cradio_ardux_thumb_left)
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Copyright (c) 2020 The ZMK Contributors
|
# Copyright (c) 2020 The ZMK Contributors
|
||||||
# SPDX-License-Identifier: MIT
|
# SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
# Tune combos to allow proper ARTSEY support
|
# Tune combos to allow proper ARDUX support
|
||||||
CONFIG_ZMK_COMBO_MAX_COMBOS_PER_KEY=16
|
CONFIG_ZMK_COMBO_MAX_COMBOS_PER_KEY=16
|
||||||
CONFIG_ZMK_COMBO_MAX_KEYS_PER_COMBO=8
|
CONFIG_ZMK_COMBO_MAX_KEYS_PER_COMBO=8
|
||||||
CONFIG_ZMK_COMBO_MAX_PRESSED_COMBOS=8
|
CONFIG_ZMK_COMBO_MAX_PRESSED_COMBOS=8
|
||||||
|
|
|
@ -8,8 +8,8 @@
|
||||||
#include <dt-bindings/zmk/keys.h>
|
#include <dt-bindings/zmk/keys.h>
|
||||||
#include <dt-bindings/zmk/bt.h>
|
#include <dt-bindings/zmk/bt.h>
|
||||||
|
|
||||||
// Enable ARTSEY Left
|
// Enable ARDUX Left
|
||||||
#define ARTSEY_LEFT 1
|
#define ARDUX_LEFT 1
|
||||||
|
|
||||||
// ARTS Row
|
// ARTS Row
|
||||||
#define KEY_A 3
|
#define KEY_A 3
|
||||||
|
@ -27,5 +27,5 @@
|
||||||
#define MIDDLE_NONES NONE(0,0,1)
|
#define MIDDLE_NONES NONE(0,0,1)
|
||||||
#define TRAILING_NONES NONE(0,0,8)
|
#define TRAILING_NONES NONE(0,0,8)
|
||||||
|
|
||||||
// Include main artsey.io keymap
|
// Include main ardux.io keymap
|
||||||
#include "../../../artsey.dtsi"
|
#include "../../../ardux.dtsi"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Copyright (c) 2020 The ZMK Contributors
|
# Copyright (c) 2020 The ZMK Contributors
|
||||||
# SPDX-License-Identifier: MIT
|
# SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
# Tune combos to allow proper ARTSEY support
|
# Tune combos to allow proper ARDUX support
|
||||||
CONFIG_ZMK_COMBO_MAX_COMBOS_PER_KEY=16
|
CONFIG_ZMK_COMBO_MAX_COMBOS_PER_KEY=16
|
||||||
CONFIG_ZMK_COMBO_MAX_KEYS_PER_COMBO=8
|
CONFIG_ZMK_COMBO_MAX_KEYS_PER_COMBO=8
|
||||||
CONFIG_ZMK_COMBO_MAX_PRESSED_COMBOS=8
|
CONFIG_ZMK_COMBO_MAX_PRESSED_COMBOS=8
|
||||||
|
|
|
@ -8,8 +8,8 @@
|
||||||
#include <dt-bindings/zmk/keys.h>
|
#include <dt-bindings/zmk/keys.h>
|
||||||
#include <dt-bindings/zmk/bt.h>
|
#include <dt-bindings/zmk/bt.h>
|
||||||
|
|
||||||
// Enable ARTSEY Left
|
// Enable ARDUX Left
|
||||||
#define ARTSEY_LEFT 1
|
#define ARDUX_LEFT 1
|
||||||
|
|
||||||
// ARTS Row
|
// ARTS Row
|
||||||
#define KEY_A 3
|
#define KEY_A 3
|
||||||
|
@ -30,5 +30,5 @@
|
||||||
#define MIDDLE_NONES NONE(0,0,1)
|
#define MIDDLE_NONES NONE(0,0,1)
|
||||||
#define TRAILING_NONES NONE(0,0,6)
|
#define TRAILING_NONES NONE(0,0,6)
|
||||||
|
|
||||||
// Include main artsey.io keymap
|
// Include main ardux.io keymap
|
||||||
#include "../../../artsey.dtsi"
|
#include "../../../ardux.dtsi"
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
# Copyright (c) 2020 The ZMK Contributors
|
# Copyright (c) 2020 The ZMK Contributors
|
||||||
# SPDX-License-Identifier: MIT
|
# SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
if SHIELD_CRADIO_ARTSEY_RIGHT || SHIELD_CRADIO_ARTSEY_THUMB_RIGHT
|
if SHIELD_CRADIO_ARDUX_RIGHT || SHIELD_CRADIO_ARDUX_THUMB_RIGHT
|
||||||
|
|
||||||
config ZMK_KEYBOARD_NAME
|
config ZMK_KEYBOARD_NAME
|
||||||
default "Artsey R"
|
default "Ardux R"
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
# Copyright (c) 2020 The ZMK Contributors
|
# Copyright (c) 2020 The ZMK Contributors
|
||||||
# SPDX-License-Identifier: MIT
|
# SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
config SHIELD_CRADIO_ARTSEY_RIGHT
|
config SHIELD_CRADIO_ARDUX_RIGHT
|
||||||
def_bool $(shields_list_contains,cradio_artsey_right)
|
def_bool $(shields_list_contains,cradio_ardux_right)
|
||||||
|
|
||||||
config SHIELD_CRADIO_ARTSEY_THUMB_RIGHT
|
config SHIELD_CRADIO_ARDUX_THUMB_RIGHT
|
||||||
def_bool $(shields_list_contains,cradio_artsey_thumb_right)
|
def_bool $(shields_list_contains,cradio_ardux_thumb_right)
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Copyright (c) 2020 The ZMK Contributors
|
# Copyright (c) 2020 The ZMK Contributors
|
||||||
# SPDX-License-Identifier: MIT
|
# SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
# Tune combos to allow proper ARTSEY support
|
# Tune combos to allow proper ARDUX support
|
||||||
CONFIG_ZMK_COMBO_MAX_COMBOS_PER_KEY=16
|
CONFIG_ZMK_COMBO_MAX_COMBOS_PER_KEY=16
|
||||||
CONFIG_ZMK_COMBO_MAX_KEYS_PER_COMBO=8
|
CONFIG_ZMK_COMBO_MAX_KEYS_PER_COMBO=8
|
||||||
CONFIG_ZMK_COMBO_MAX_PRESSED_COMBOS=8
|
CONFIG_ZMK_COMBO_MAX_PRESSED_COMBOS=8
|
||||||
|
|
|
@ -8,8 +8,8 @@
|
||||||
#include <dt-bindings/zmk/keys.h>
|
#include <dt-bindings/zmk/keys.h>
|
||||||
#include <dt-bindings/zmk/bt.h>
|
#include <dt-bindings/zmk/bt.h>
|
||||||
|
|
||||||
// Enable ARTSEY Right
|
// Enable ARDUX Right
|
||||||
#define ARTSEY_RIGHT 1
|
#define ARDUX_RIGHT 1
|
||||||
|
|
||||||
// ARTS Row
|
// ARTS Row
|
||||||
#define KEY_A 1
|
#define KEY_A 1
|
||||||
|
@ -27,5 +27,5 @@
|
||||||
#define MIDDLE_NONES NONE(0,0,1)
|
#define MIDDLE_NONES NONE(0,0,1)
|
||||||
#define TRAILING_NONES NONE(0,0,7)
|
#define TRAILING_NONES NONE(0,0,7)
|
||||||
|
|
||||||
// Include main artsey.io keymap
|
// Include main ardux.io keymap
|
||||||
#include "../../../artsey.dtsi"
|
#include "../../../ardux.dtsi"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Copyright (c) 2020 The ZMK Contributors
|
# Copyright (c) 2020 The ZMK Contributors
|
||||||
# SPDX-License-Identifier: MIT
|
# SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
# Tune combos to allow proper ARTSEY support
|
# Tune combos to allow proper ARDUX support
|
||||||
CONFIG_ZMK_COMBO_MAX_COMBOS_PER_KEY=16
|
CONFIG_ZMK_COMBO_MAX_COMBOS_PER_KEY=16
|
||||||
CONFIG_ZMK_COMBO_MAX_KEYS_PER_COMBO=8
|
CONFIG_ZMK_COMBO_MAX_KEYS_PER_COMBO=8
|
||||||
CONFIG_ZMK_COMBO_MAX_PRESSED_COMBOS=8
|
CONFIG_ZMK_COMBO_MAX_PRESSED_COMBOS=8
|
||||||
|
|
|
@ -8,8 +8,8 @@
|
||||||
#include <dt-bindings/zmk/keys.h>
|
#include <dt-bindings/zmk/keys.h>
|
||||||
#include <dt-bindings/zmk/bt.h>
|
#include <dt-bindings/zmk/bt.h>
|
||||||
|
|
||||||
// Enable ARTSEY Right
|
// Enable ARDUX Right
|
||||||
#define ARTSEY_RIGHT 1
|
#define ARDUX_RIGHT 1
|
||||||
|
|
||||||
// ARTS Row
|
// ARTS Row
|
||||||
#define KEY_A 1
|
#define KEY_A 1
|
||||||
|
@ -30,5 +30,5 @@
|
||||||
#define MIDDLE_NONES NONE(0,0,1)
|
#define MIDDLE_NONES NONE(0,0,1)
|
||||||
#define TRAILING_NONES NONE(0,0,5)
|
#define TRAILING_NONES NONE(0,0,5)
|
||||||
|
|
||||||
// Include main artsey.io keymap
|
// Include main ardux.io keymap
|
||||||
#include "../../../artsey.dtsi"
|
#include "../../../ardux.dtsi"
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
# The Paintbrush
|
# The Paintbrush
|
||||||
|
|
||||||
This directory contains the ARTSEY implementation for `The Paintbrush` hardware being developed by KemoNine.
|
This directory contains the ARDUX implementation for `The Paintbrush` hardware being developed by KemoNine.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Copyright (c) 2021 Mike "KemoNine" Crosson
|
# Copyright (c) 2021 Mike "KemoNine" Crosson
|
||||||
# SPDX-License-Identifier: MIT
|
# SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
# Tune combos to allow proper ARTSEY support
|
# Tune combos to allow proper ARDUX support
|
||||||
CONFIG_ZMK_COMBO_MAX_COMBOS_PER_KEY=16
|
CONFIG_ZMK_COMBO_MAX_COMBOS_PER_KEY=16
|
||||||
CONFIG_ZMK_COMBO_MAX_KEYS_PER_COMBO=8
|
CONFIG_ZMK_COMBO_MAX_KEYS_PER_COMBO=8
|
||||||
CONFIG_ZMK_COMBO_MAX_PRESSED_COMBOS=8
|
CONFIG_ZMK_COMBO_MAX_PRESSED_COMBOS=8
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
#include <dt-bindings/zmk/bt.h>
|
#include <dt-bindings/zmk/bt.h>
|
||||||
|
|
||||||
// Left/Right
|
// Left/Right
|
||||||
#define ARTSEY_LEFT 1
|
#define ARDUX_LEFT 1
|
||||||
|
|
||||||
// ARTS Row
|
// ARTS Row
|
||||||
#define KEY_A 3
|
#define KEY_A 3
|
||||||
|
@ -27,5 +27,5 @@
|
||||||
#define MIDDLE_NONES NONE(0, 0, 0)
|
#define MIDDLE_NONES NONE(0, 0, 0)
|
||||||
#define TRAILING_NONES NONE(0, 0, 0)
|
#define TRAILING_NONES NONE(0, 0, 0)
|
||||||
|
|
||||||
// Include main artsey.io keymap
|
// Include main ardux.io keymap
|
||||||
#include "../../../artsey.dtsi"
|
#include "../../../ardux.dtsi"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Copyright (c) 2021 Mike "KemoNine" Crosson
|
# Copyright (c) 2021 Mike "KemoNine" Crosson
|
||||||
# SPDX-License-Identifier: MIT
|
# SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
# Tune combos to allow proper ARTSEY support
|
# Tune combos to allow proper ARDUX support
|
||||||
CONFIG_ZMK_COMBO_MAX_COMBOS_PER_KEY=16
|
CONFIG_ZMK_COMBO_MAX_COMBOS_PER_KEY=16
|
||||||
CONFIG_ZMK_COMBO_MAX_KEYS_PER_COMBO=8
|
CONFIG_ZMK_COMBO_MAX_KEYS_PER_COMBO=8
|
||||||
CONFIG_ZMK_COMBO_MAX_PRESSED_COMBOS=8
|
CONFIG_ZMK_COMBO_MAX_PRESSED_COMBOS=8
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
#include <dt-bindings/zmk/bt.h>
|
#include <dt-bindings/zmk/bt.h>
|
||||||
|
|
||||||
// Left/Right
|
// Left/Right
|
||||||
#define ARTSEY_LEFT 1
|
#define ARDUX_LEFT 1
|
||||||
|
|
||||||
// ARTS Row
|
// ARTS Row
|
||||||
#define KEY_A 3
|
#define KEY_A 3
|
||||||
|
@ -27,5 +27,5 @@
|
||||||
#define MIDDLE_NONES NONE(0, 0, 0)
|
#define MIDDLE_NONES NONE(0, 0, 0)
|
||||||
#define TRAILING_NONES NONE(0, 0, 0)
|
#define TRAILING_NONES NONE(0, 0, 0)
|
||||||
|
|
||||||
// Include main artsey.io keymap
|
// Include main ardux.io keymap
|
||||||
#include "../../../artsey.dtsi"
|
#include "../../../ardux.dtsi"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Copyright (c) 2021 Mike "KemoNine" Crosson
|
# Copyright (c) 2021 Mike "KemoNine" Crosson
|
||||||
# SPDX-License-Identifier: MIT
|
# SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
# Tune combos to allow proper ARTSEY support
|
# Tune combos to allow proper ARDUX support
|
||||||
CONFIG_ZMK_COMBO_MAX_COMBOS_PER_KEY=16
|
CONFIG_ZMK_COMBO_MAX_COMBOS_PER_KEY=16
|
||||||
CONFIG_ZMK_COMBO_MAX_KEYS_PER_COMBO=8
|
CONFIG_ZMK_COMBO_MAX_KEYS_PER_COMBO=8
|
||||||
CONFIG_ZMK_COMBO_MAX_PRESSED_COMBOS=8
|
CONFIG_ZMK_COMBO_MAX_PRESSED_COMBOS=8
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
#include <dt-bindings/zmk/bt.h>
|
#include <dt-bindings/zmk/bt.h>
|
||||||
|
|
||||||
// Left/Right
|
// Left/Right
|
||||||
#define ARTSEY_RIGHT 1
|
#define ARDUX_RIGHT 1
|
||||||
|
|
||||||
// ARTS Row
|
// ARTS Row
|
||||||
#define KEY_A 0
|
#define KEY_A 0
|
||||||
|
@ -27,5 +27,5 @@
|
||||||
#define MIDDLE_NONES NONE(0, 0, 0)
|
#define MIDDLE_NONES NONE(0, 0, 0)
|
||||||
#define TRAILING_NONES NONE(0, 0, 0)
|
#define TRAILING_NONES NONE(0, 0, 0)
|
||||||
|
|
||||||
// Include main artsey.io keymap
|
// Include main ardux.io keymap
|
||||||
#include "../../../artsey.dtsi"
|
#include "../../../ardux.dtsi"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Copyright (c) 2021 Mike "KemoNine" Crosson
|
# Copyright (c) 2021 Mike "KemoNine" Crosson
|
||||||
# SPDX-License-Identifier: MIT
|
# SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
# Tune combos to allow proper ARTSEY support
|
# Tune combos to allow proper ARDUX support
|
||||||
CONFIG_ZMK_COMBO_MAX_COMBOS_PER_KEY=16
|
CONFIG_ZMK_COMBO_MAX_COMBOS_PER_KEY=16
|
||||||
CONFIG_ZMK_COMBO_MAX_KEYS_PER_COMBO=8
|
CONFIG_ZMK_COMBO_MAX_KEYS_PER_COMBO=8
|
||||||
CONFIG_ZMK_COMBO_MAX_PRESSED_COMBOS=8
|
CONFIG_ZMK_COMBO_MAX_PRESSED_COMBOS=8
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
#include <dt-bindings/zmk/bt.h>
|
#include <dt-bindings/zmk/bt.h>
|
||||||
|
|
||||||
// Left/Right
|
// Left/Right
|
||||||
#define ARTSEY_RIGHT 1
|
#define ARDUX_RIGHT 1
|
||||||
|
|
||||||
// ARTS Row
|
// ARTS Row
|
||||||
#define KEY_A 0
|
#define KEY_A 0
|
||||||
|
@ -27,5 +27,5 @@
|
||||||
#define MIDDLE_NONES NONE(0, 0, 0)
|
#define MIDDLE_NONES NONE(0, 0, 0)
|
||||||
#define TRAILING_NONES NONE(0, 0, 0)
|
#define TRAILING_NONES NONE(0, 0, 0)
|
||||||
|
|
||||||
// Include main artsey.io keymap
|
// Include main ardux.io keymap
|
||||||
#include "../../../artsey.dtsi"
|
#include "../../../ardux.dtsi"
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
# Copyright (c) 2021 Mike "KemoNine" Crosson
|
# Copyright (c) 2021 Mike "KemoNine" Crosson
|
||||||
# SPDX-License-Identifier: MIT
|
# SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
if SHIELD_TIDBIT_ARTSEY_LEFT
|
if SHIELD_TIDBIT_ARDUX_LEFT
|
||||||
|
|
||||||
config ZMK_KEYBOARD_NAME
|
config ZMK_KEYBOARD_NAME
|
||||||
default "ARTSEY Tidbit L"
|
default "ARDUX Tidbit L"
|
||||||
|
|
||||||
config I2C
|
config I2C
|
||||||
default y
|
default y
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# Copyright (c) 2021 Mike "KemoNine" Crosson
|
# Copyright (c) 2021 Mike "KemoNine" Crosson
|
||||||
# SPDX-License-Identifier: MIT
|
# SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
config SHIELD_TIDBIT_ARTSEY_LEFT
|
config SHIELD_TIDBIT_ARDUX_LEFT
|
||||||
def_bool $(shields_list_contains,tidbit_artsey_left)
|
def_bool $(shields_list_contains,tidbit_ardux_left)
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
# Tidbit - Left
|
# Tidbit - Left
|
||||||
|
|
||||||
This directory contians the ARTSEY implementation for the [Tidbit](https://nullbits.co/tidbit/).
|
This directory contians the ARDUX implementation for the [Tidbit](https://nullbits.co/tidbit/).
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Copyright (c) 2021 Mike "KemoNine" Crosson
|
# Copyright (c) 2021 Mike "KemoNine" Crosson
|
||||||
# SPDX-License-Identifier: MIT
|
# SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
# Tune combos to allow proper ARTSEY support
|
# Tune combos to allow proper ARDUX support
|
||||||
CONFIG_ZMK_COMBO_MAX_COMBOS_PER_KEY=16
|
CONFIG_ZMK_COMBO_MAX_COMBOS_PER_KEY=16
|
||||||
CONFIG_ZMK_COMBO_MAX_KEYS_PER_COMBO=8
|
CONFIG_ZMK_COMBO_MAX_KEYS_PER_COMBO=8
|
||||||
CONFIG_ZMK_COMBO_MAX_PRESSED_COMBOS=8
|
CONFIG_ZMK_COMBO_MAX_PRESSED_COMBOS=8
|
||||||
|
|
|
@ -8,8 +8,8 @@
|
||||||
#include <dt-bindings/zmk/keys.h>
|
#include <dt-bindings/zmk/keys.h>
|
||||||
#include <dt-bindings/zmk/bt.h>
|
#include <dt-bindings/zmk/bt.h>
|
||||||
|
|
||||||
// Enable ARTSEY Left
|
// Enable ARDUX Left
|
||||||
#define ARTSEY_LEFT 1
|
#define ARDUX_LEFT 1
|
||||||
|
|
||||||
// ARTS Row
|
// ARTS Row
|
||||||
#define KEY_A 8
|
#define KEY_A 8
|
||||||
|
@ -27,5 +27,5 @@
|
||||||
#define MIDDLE_NONES NONE(0, 0, 1)
|
#define MIDDLE_NONES NONE(0, 0, 1)
|
||||||
#define TRAILING_NONES NONE(0, 0, 5)
|
#define TRAILING_NONES NONE(0, 0, 5)
|
||||||
|
|
||||||
// Include main artsey.io keymap
|
// Include main ardux.io keymap
|
||||||
#include "../../../artsey.dtsi"
|
#include "../../../ardux.dtsi"
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
# Copyright (c) 2021 Mike "KemoNine" Crosson
|
# Copyright (c) 2021 Mike "KemoNine" Crosson
|
||||||
# SPDX-License-Identifier: MIT
|
# SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
if SHIELD_TIDBIT_ARTSEY_RIGHT
|
if SHIELD_TIDBIT_ARDUX_RIGHT
|
||||||
|
|
||||||
config ZMK_KEYBOARD_NAME
|
config ZMK_KEYBOARD_NAME
|
||||||
default "ARTSEY Tidbit R"
|
default "ARDUX Tidbit R"
|
||||||
|
|
||||||
config I2C
|
config I2C
|
||||||
default y
|
default y
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# Copyright (c) 2021 Mike "KemoNine" Crosson
|
# Copyright (c) 2021 Mike "KemoNine" Crosson
|
||||||
# SPDX-License-Identifier: MIT
|
# SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
config SHIELD_TIDBIT_ARTSEY_RIGHT
|
config SHIELD_TIDBIT_ARDUX_RIGHT
|
||||||
def_bool $(shields_list_contains,tidbit_artsey_right)
|
def_bool $(shields_list_contains,tidbit_ardux_right)
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
# Tidbit - Right
|
# Tidbit - Right
|
||||||
|
|
||||||
This directory contians the ARTSEY implementation for the [Tidbit](https://nullbits.co/tidbit/).
|
This directory contians the ARDUX implementation for the [Tidbit](https://nullbits.co/tidbit/).
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Copyright (c) 2021 Mike "KemoNine" Crosson
|
# Copyright (c) 2021 Mike "KemoNine" Crosson
|
||||||
# SPDX-License-Identifier: MIT
|
# SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
# Tune combos to allow proper ARTSEY support
|
# Tune combos to allow proper ARDUX support
|
||||||
CONFIG_ZMK_COMBO_MAX_COMBOS_PER_KEY=16
|
CONFIG_ZMK_COMBO_MAX_COMBOS_PER_KEY=16
|
||||||
CONFIG_ZMK_COMBO_MAX_KEYS_PER_COMBO=8
|
CONFIG_ZMK_COMBO_MAX_KEYS_PER_COMBO=8
|
||||||
CONFIG_ZMK_COMBO_MAX_PRESSED_COMBOS=8
|
CONFIG_ZMK_COMBO_MAX_PRESSED_COMBOS=8
|
||||||
|
|
|
@ -8,8 +8,8 @@
|
||||||
#include <dt-bindings/zmk/keys.h>
|
#include <dt-bindings/zmk/keys.h>
|
||||||
#include <dt-bindings/zmk/bt.h>
|
#include <dt-bindings/zmk/bt.h>
|
||||||
|
|
||||||
// Enable ARTSEY Left
|
// Enable ARDUX Left
|
||||||
#define ARTSEY_LEFT 1
|
#define ARDUX_LEFT 1
|
||||||
|
|
||||||
// ARTS Row
|
// ARTS Row
|
||||||
#define KEY_A 7
|
#define KEY_A 7
|
||||||
|
@ -27,5 +27,5 @@
|
||||||
#define MIDDLE_NONES NONE(0, 0, 1)
|
#define MIDDLE_NONES NONE(0, 0, 1)
|
||||||
#define TRAILING_NONES NONE(0, 0, 6)
|
#define TRAILING_NONES NONE(0, 0, 6)
|
||||||
|
|
||||||
// Include main artsey.io keymap
|
// Include main ardux.io keymap
|
||||||
#include "../../../artsey.dtsi"
|
#include "../../../ardux.dtsi"
|
||||||
|
|
|
@ -2,7 +2,7 @@ manifest:
|
||||||
remotes:
|
remotes:
|
||||||
- name: zmkfirmware
|
- name: zmkfirmware
|
||||||
url-base: https://github.com/arduxio
|
url-base: https://github.com/arduxio
|
||||||
- name: zmk-artsey
|
- name: zmk-ardux
|
||||||
url-base: https://github.com/arduxio
|
url-base: https://github.com/arduxio
|
||||||
projects:
|
projects:
|
||||||
- name: zmk
|
- name: zmk
|
||||||
|
|
Loading…
Reference in a new issue