@@ -1,46 +0,0 @@
|
|||||||
#include <dt-bindings/led/led.h>
|
|
||||||
|
|
||||||
&pinctrl {
|
|
||||||
spi3_default: spi3_default {
|
|
||||||
group1 {
|
|
||||||
psels = <NRF_PSEL(SPIM_MOSI, 0, 6)>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
spi3_sleep: spi3_sleep {
|
|
||||||
group1 {
|
|
||||||
psels = <NRF_PSEL(SPIM_MOSI, 0, 6)>;
|
|
||||||
low-power-enable;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&spi3 {
|
|
||||||
compatible = "nordic,nrf-spim";
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
pinctrl-0 = <&spi3_default>;
|
|
||||||
pinctrl-1 = <&spi3_sleep>;
|
|
||||||
pinctrl-names = "default", "sleep";
|
|
||||||
|
|
||||||
led_strip: ws2812@0 {
|
|
||||||
compatible = "worldsemi,ws2812-spi";
|
|
||||||
|
|
||||||
/* SPI */
|
|
||||||
reg = <0>; /* ignored, but necessary for SPI bindings */
|
|
||||||
spi-max-frequency = <4000000>;
|
|
||||||
|
|
||||||
/* WS2812 */
|
|
||||||
chain-length = <10>; /* arbitrary; change at will */
|
|
||||||
spi-one-frame = <0x70>;
|
|
||||||
spi-zero-frame = <0x40>;
|
|
||||||
|
|
||||||
color-mapping = <LED_COLOR_ID_GREEN LED_COLOR_ID_RED LED_COLOR_ID_BLUE>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
/ {
|
|
||||||
chosen {
|
|
||||||
zmk,underglow = &led_strip;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
@@ -1,46 +0,0 @@
|
|||||||
#include <dt-bindings/led/led.h>
|
|
||||||
|
|
||||||
&pinctrl {
|
|
||||||
spi3_default: spi3_default {
|
|
||||||
group1 {
|
|
||||||
psels = <NRF_PSEL(SPIM_MOSI, 0, 6)>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
spi3_sleep: spi3_sleep {
|
|
||||||
group1 {
|
|
||||||
psels = <NRF_PSEL(SPIM_MOSI, 0, 6)>;
|
|
||||||
low-power-enable;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&spi3 {
|
|
||||||
compatible = "nordic,nrf-spim";
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
pinctrl-0 = <&spi3_default>;
|
|
||||||
pinctrl-1 = <&spi3_sleep>;
|
|
||||||
pinctrl-names = "default", "sleep";
|
|
||||||
|
|
||||||
led_strip: ws2812@0 {
|
|
||||||
compatible = "worldsemi,ws2812-spi";
|
|
||||||
|
|
||||||
/* SPI */
|
|
||||||
reg = <0>; /* ignored, but necessary for SPI bindings */
|
|
||||||
spi-max-frequency = <4000000>;
|
|
||||||
|
|
||||||
/* WS2812 */
|
|
||||||
chain-length = <10>; /* arbitrary; change at will */
|
|
||||||
spi-one-frame = <0x70>;
|
|
||||||
spi-zero-frame = <0x40>;
|
|
||||||
|
|
||||||
color-mapping = <LED_COLOR_ID_GREEN LED_COLOR_ID_RED LED_COLOR_ID_BLUE>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
/ {
|
|
||||||
chosen {
|
|
||||||
zmk,underglow = &led_strip;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
if SHIELD_CORNE_LEFT || SHIELD_CORNE_DONGLE
|
if SHIELD_CORNE_DONGLE
|
||||||
|
|
||||||
config ZMK_KEYBOARD_NAME
|
config ZMK_KEYBOARD_NAME
|
||||||
default "Corne"
|
default "Corne"
|
||||||
@@ -9,9 +9,20 @@ config ZMK_SPLIT_ROLE_CENTRAL
|
|||||||
config ZMK_USB
|
config ZMK_USB
|
||||||
default y
|
default y
|
||||||
|
|
||||||
|
config ZMK_SPLIT_BLE_CENTRAL_PERIPHERALS
|
||||||
|
default 2
|
||||||
|
|
||||||
|
# Set this to ZMK_SPLIT_BLE_CENTRAL_PERIPHERALS + your desired number of BT profiles (default is 5)
|
||||||
|
config BT_MAX_CONN
|
||||||
|
default 5
|
||||||
|
|
||||||
|
# Set this to the same number as BT_MAX_CONN
|
||||||
|
config BT_MAX_PAIRED
|
||||||
|
default 5
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if SHIELD_CORNE_LEFT || SHIELD_CORNE_RIGHT || SHIELD_CORNE_DONGLE || SHIELD_CORNE_PERIPHERAL_LEFT
|
if SHIELD_CORNE_LEFT || SHIELD_CORNE_RIGHT || SHIELD_CORNE_DONGLE
|
||||||
|
|
||||||
config ZMK_SPLIT
|
config ZMK_SPLIT
|
||||||
default y
|
default y
|
||||||
|
|||||||
@@ -10,5 +10,3 @@ config SHIELD_CORNE_RIGHT
|
|||||||
config SHIELD_CORNE_DONGLE
|
config SHIELD_CORNE_DONGLE
|
||||||
def_bool $(shields_list_contains,corne_dongle)
|
def_bool $(shields_list_contains,corne_dongle)
|
||||||
|
|
||||||
config SHIELD_CORNE_PERIPHERAL_LEFT
|
|
||||||
def_bool $(shields_list_contains,corne_peripheral_left)
|
|
||||||
|
|||||||
@@ -1,6 +0,0 @@
|
|||||||
# Uncomment the following lines to enable the Corne RGB Underglow
|
|
||||||
# CONFIG_ZMK_RGB_UNDERGLOW=y
|
|
||||||
# CONFIG_WS2812_STRIP=y
|
|
||||||
|
|
||||||
# Uncomment the following line to enable the Corne OLED Display
|
|
||||||
# CONFIG_ZMK_DISPLAY=y
|
|
||||||
@@ -1,82 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (c) 2020 Pete Johanson
|
|
||||||
*
|
|
||||||
* SPDX-License-Identifier: MIT
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include <dt-bindings/zmk/matrix_transform.h>
|
|
||||||
|
|
||||||
/ {
|
|
||||||
chosen {
|
|
||||||
zephyr,display = &oled;
|
|
||||||
zmk,kscan = &kscan0;
|
|
||||||
zmk,matrix-transform = &default_transform;
|
|
||||||
};
|
|
||||||
|
|
||||||
default_transform: keymap_transform_0 {
|
|
||||||
compatible = "zmk,matrix-transform";
|
|
||||||
columns = <12>;
|
|
||||||
rows = <4>;
|
|
||||||
// | SW1 | SW2 | SW3 | SW4 | SW5 | SW6 | | SW6 | SW5 | SW4 | SW3 | SW2 | SW1 |
|
|
||||||
// | SW7 | SW8 | SW9 | SW10 | SW11 | SW12 | | SW12 | SW11 | SW10 | SW9 | SW8 | SW7 |
|
|
||||||
// | SW13 | SW14 | SW15 | SW16 | SW17 | SW18 | | SW18 | SW17 | SW16 | SW15 | SW14 | SW13 |
|
|
||||||
// | SW19 | SW20 | SW21 | | SW21 | SW20 | SW19 |
|
|
||||||
map = <
|
|
||||||
RC(0,0) RC(0,1) RC(0,2) RC(0,3) RC(0,4) RC(0,5) RC(0,6) RC(0,7) RC(0,8) RC(0,9) RC(0,10) RC(0,11)
|
|
||||||
RC(1,0) RC(1,1) RC(1,2) RC(1,3) RC(1,4) RC(1,5) RC(1,6) RC(1,7) RC(1,8) RC(1,9) RC(1,10) RC(1,11)
|
|
||||||
RC(2,0) RC(2,1) RC(2,2) RC(2,3) RC(2,4) RC(2,5) RC(2,6) RC(2,7) RC(2,8) RC(2,9) RC(2,10) RC(2,11)
|
|
||||||
RC(3,3) RC(3,4) RC(3,5) RC(3,6) RC(3,7) RC(3,8)
|
|
||||||
>;
|
|
||||||
};
|
|
||||||
|
|
||||||
five_column_transform: keymap_transform_1 {
|
|
||||||
compatible = "zmk,matrix-transform";
|
|
||||||
columns = <10>;
|
|
||||||
rows = <4>;
|
|
||||||
// | SW2 | SW3 | SW4 | SW5 | SW6 | | SW6 | SW5 | SW4 | SW3 | SW2 |
|
|
||||||
// | SW8 | SW9 | SW10 | SW11 | SW12 | | SW12 | SW11 | SW10 | SW9 | SW8 |
|
|
||||||
// | SW14 | SW15 | SW16 | SW17 | SW18 | | SW18 | SW17 | SW16 | SW15 | SW14 |
|
|
||||||
// | SW19 | SW20 | SW21 | | SW21 | SW20 | SW19 |
|
|
||||||
map = <
|
|
||||||
RC(0,1) RC(0,2) RC(0,3) RC(0,4) RC(0,5) RC(0,6) RC(0,7) RC(0,8) RC(0,9) RC(0,10)
|
|
||||||
RC(1,1) RC(1,2) RC(1,3) RC(1,4) RC(1,5) RC(1,6) RC(1,7) RC(1,8) RC(1,9) RC(1,10)
|
|
||||||
RC(2,1) RC(2,2) RC(2,3) RC(2,4) RC(2,5) RC(2,6) RC(2,7) RC(2,8) RC(2,9) RC(2,10)
|
|
||||||
RC(3,3) RC(3,4) RC(3,5) RC(3,6) RC(3,7) RC(3,8)
|
|
||||||
>;
|
|
||||||
};
|
|
||||||
|
|
||||||
kscan0: kscan {
|
|
||||||
compatible = "zmk,kscan-gpio-matrix";
|
|
||||||
|
|
||||||
diode-direction = "col2row";
|
|
||||||
row-gpios
|
|
||||||
= <&pro_micro 4 (GPIO_ACTIVE_HIGH | GPIO_PULL_DOWN)>
|
|
||||||
, <&pro_micro 5 (GPIO_ACTIVE_HIGH | GPIO_PULL_DOWN)>
|
|
||||||
, <&pro_micro 6 (GPIO_ACTIVE_HIGH | GPIO_PULL_DOWN)>
|
|
||||||
, <&pro_micro 7 (GPIO_ACTIVE_HIGH | GPIO_PULL_DOWN)>
|
|
||||||
;
|
|
||||||
|
|
||||||
};
|
|
||||||
|
|
||||||
// TODO: per-key RGB node(s)?
|
|
||||||
};
|
|
||||||
|
|
||||||
&pro_micro_i2c {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
oled: ssd1306@3c {
|
|
||||||
compatible = "solomon,ssd1306fb";
|
|
||||||
reg = <0x3c>;
|
|
||||||
width = <128>;
|
|
||||||
height = <32>;
|
|
||||||
segment-offset = <0>;
|
|
||||||
page-offset = <0>;
|
|
||||||
display-offset = <0>;
|
|
||||||
multiplex-ratio = <31>;
|
|
||||||
segment-remap;
|
|
||||||
com-invdir;
|
|
||||||
com-sequential;
|
|
||||||
inversion-on;
|
|
||||||
prechargep = <0x22>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
@@ -1,42 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (c) 2020 The ZMK Contributors
|
|
||||||
*
|
|
||||||
* SPDX-License-Identifier: MIT
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include <behaviors.dtsi>
|
|
||||||
#include <dt-bindings/zmk/bt.h>
|
|
||||||
#include <dt-bindings/zmk/keys.h>
|
|
||||||
|
|
||||||
/ {
|
|
||||||
keymap {
|
|
||||||
compatible = "zmk,keymap";
|
|
||||||
|
|
||||||
default_layer {
|
|
||||||
bindings = <
|
|
||||||
&kp TAB &kp Q &kp W &kp E &kp R &kp T &kp Y &kp U &kp I &kp O &kp P &kp BSPC
|
|
||||||
&kp LCTRL &kp A &kp S &kp D &kp F &kp G &kp H &kp J &kp K &kp L &kp SEMI &kp ENTER
|
|
||||||
&kp LSHFT &kp Z &kp X &kp C &kp V &kp B &kp N &kp M &kp COMMA &kp DOT &kp FSLH &kp ESC
|
|
||||||
&kp LGUI &mo 1 &kp SPACE &kp SPACE &mo 2 &kp RALT
|
|
||||||
>;
|
|
||||||
};
|
|
||||||
|
|
||||||
lower_layer {
|
|
||||||
bindings = <
|
|
||||||
&kp LS(TAB) &kp N1 &kp N2 &kp N3 &kp N4 &kp N5 &kp N6 &kp N7 &kp N8 &kp N9 &kp N0 &kp BSPC
|
|
||||||
&kp LCTRL &none &none &none &none &none &kp LEFT_ARROW &kp DOWN_ARROW &kp UP_ARROW &kp RIGHT_ARROW &none &kp ENTER
|
|
||||||
&kp LSHFT &bt BT_SEL 0 &bt BT_SEL 1 &bt BT_SEL 2 &bt BT_SEL 3 &bt BT_SEL 4 &bt BT_CLR &none &none &none &none &kp ESC
|
|
||||||
&kp LGUI &mo 1 &kp SPACE &kp SPACE &mo 2 &kp RALT
|
|
||||||
>;
|
|
||||||
};
|
|
||||||
|
|
||||||
raise_layer {
|
|
||||||
bindings = <
|
|
||||||
&kp LC(TAB) &kp EXCL &kp AT &kp POUND &kp DOLLAR &kp PERCENT &kp CARET &kp AMPERSAND &kp STAR &kp PLUS &kp EQUAL &kp BSPC
|
|
||||||
&kp LCTRL &kp GRAVE &kp TILDE &kp LEFT_BRACE &kp LEFT_BRACKET &kp LEFT_PARENTHESIS &kp RIGHT_PARENTHESIS &kp RIGHT_BRACKET &kp RIGHT_BRACE &kp BACKSLASH &kp PIPE &kp ENTER
|
|
||||||
&kp LSHFT &none &none &none &kp SQT &kp MINUS &kp UNDER &kp DOUBLE_QUOTES &none &none &none &kp RIGHT_SHIFT
|
|
||||||
&kp LGUI &mo 1 &kp SPACE &kp SPACE &mo 2 &kp RALT
|
|
||||||
>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
@@ -1,16 +0,0 @@
|
|||||||
file_format: "1"
|
|
||||||
id: corne
|
|
||||||
name: Corne
|
|
||||||
type: shield
|
|
||||||
url: https://github.com/foostan/crkbd/
|
|
||||||
requires: [pro_micro]
|
|
||||||
exposes: [i2c_oled]
|
|
||||||
features:
|
|
||||||
- keys
|
|
||||||
- display
|
|
||||||
- underglow
|
|
||||||
siblings:
|
|
||||||
- corne_left
|
|
||||||
- corne_right
|
|
||||||
- corne_dongle
|
|
||||||
- corne_peripheral_left
|
|
||||||
@@ -5,11 +5,29 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <dt-bindings/zmk/matrix_transform.h>
|
#include <dt-bindings/zmk/matrix_transform.h>
|
||||||
|
#include <layouts/foostan/corne/5column.dtsi>
|
||||||
|
#include <layouts/foostan/corne/6column.dtsi>
|
||||||
|
|
||||||
|
&foostan_corne_6col_layout {
|
||||||
|
transform = <&default_transform>;
|
||||||
|
};
|
||||||
|
|
||||||
|
&foostan_corne_5col_layout {
|
||||||
|
transform = <&five_column_transform>;
|
||||||
|
};
|
||||||
|
|
||||||
/ {
|
/ {
|
||||||
chosen {
|
chosen {
|
||||||
zmk,kscan = &kscan0;
|
zmk,kscan = &mock_kscan;
|
||||||
zmk,matrix-transform = &default_transform;
|
zmk,physical-layout = &foostan_corne_6col_layout;
|
||||||
|
};
|
||||||
|
|
||||||
|
mock_kscan:mock_kscan_0 {
|
||||||
|
compatible = "zmk,kscan-mock";
|
||||||
|
columns = <0>;
|
||||||
|
rows = <0>;
|
||||||
|
events = <0>;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
default_transform: keymap_transform_0 {
|
default_transform: keymap_transform_0 {
|
||||||
@@ -35,7 +53,7 @@ RC(2,0) RC(2,1) RC(2,2) RC(2,3) RC(2,4) RC(2,5) RC(2,6) RC(2,7) RC(2,8) RC(2,9)
|
|||||||
// | SW2 | SW3 | SW4 | SW5 | SW6 | | SW6 | SW5 | SW4 | SW3 | SW2 |
|
// | SW2 | SW3 | SW4 | SW5 | SW6 | | SW6 | SW5 | SW4 | SW3 | SW2 |
|
||||||
// | SW8 | SW9 | SW10 | SW11 | SW12 | | SW12 | SW11 | SW10 | SW9 | SW8 |
|
// | SW8 | SW9 | SW10 | SW11 | SW12 | | SW12 | SW11 | SW10 | SW9 | SW8 |
|
||||||
// | SW14 | SW15 | SW16 | SW17 | SW18 | | SW18 | SW17 | SW16 | SW15 | SW14 |
|
// | SW14 | SW15 | SW16 | SW17 | SW18 | | SW18 | SW17 | SW16 | SW15 | SW14 |
|
||||||
// | SW19 | SW20 | SW21 | | SW21 | SW20 | SW19 |
|
// | SW19 | SW20 | SW21 | | SW21 | SW20 | SW19 |
|
||||||
map = <
|
map = <
|
||||||
RC(0,1) RC(0,2) RC(0,3) RC(0,4) RC(0,5) RC(0,6) RC(0,7) RC(0,8) RC(0,9) RC(0,10)
|
RC(0,1) RC(0,2) RC(0,3) RC(0,4) RC(0,5) RC(0,6) RC(0,7) RC(0,8) RC(0,9) RC(0,10)
|
||||||
RC(1,1) RC(1,2) RC(1,3) RC(1,4) RC(1,5) RC(1,6) RC(1,7) RC(1,8) RC(1,9) RC(1,10)
|
RC(1,1) RC(1,2) RC(1,3) RC(1,4) RC(1,5) RC(1,6) RC(1,7) RC(1,8) RC(1,9) RC(1,10)
|
||||||
@@ -44,16 +62,4 @@ RC(2,1) RC(2,2) RC(2,3) RC(2,4) RC(2,5) RC(2,6) RC(2,7) RC(2,8) RC(2,9) RC(2,10
|
|||||||
>;
|
>;
|
||||||
};
|
};
|
||||||
|
|
||||||
kscan0: kscan {
|
|
||||||
compatible = "zmk,kscan-gpio-direct";
|
|
||||||
|
|
||||||
input-gpios
|
|
||||||
= <&xiao_d 0 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>
|
|
||||||
, <&xiao_d 1 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>
|
|
||||||
, <&xiao_d 2 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>
|
|
||||||
, <&xiao_d 3 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>
|
|
||||||
;
|
|
||||||
};
|
|
||||||
|
|
||||||
// TODO: per-key RGB node(s)?
|
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,18 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (c) 2020 Pete Johanson
|
|
||||||
*
|
|
||||||
* SPDX-License-Identifier: MIT
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "corne.dtsi"
|
|
||||||
|
|
||||||
&kscan0 {
|
|
||||||
col-gpios
|
|
||||||
= <&pro_micro 21 GPIO_ACTIVE_HIGH>
|
|
||||||
, <&pro_micro 20 GPIO_ACTIVE_HIGH>
|
|
||||||
, <&pro_micro 19 GPIO_ACTIVE_HIGH>
|
|
||||||
, <&pro_micro 18 GPIO_ACTIVE_HIGH>
|
|
||||||
, <&pro_micro 15 GPIO_ACTIVE_HIGH>
|
|
||||||
, <&pro_micro 14 GPIO_ACTIVE_HIGH>
|
|
||||||
;
|
|
||||||
};
|
|
||||||
@@ -1,26 +0,0 @@
|
|||||||
# Enable and adjust nice!view
|
|
||||||
CONFIG_ZMK_DISPLAY=y
|
|
||||||
CONFIG_ZMK_WIDGET_BATTERY_STATUS_SHOW_PERCENTAGE=y
|
|
||||||
CONFIG_ZMK_WIDGET_WPM_STATUS=n
|
|
||||||
|
|
||||||
# Disable in-built nice!view widget
|
|
||||||
CONFIG_ZMK_DISPLAY_STATUS_SCREEN_BUILT_IN=y
|
|
||||||
CONFIG_ZMK_LV_FONT_DEFAULT_SMALL_MONTSERRAT_26=y
|
|
||||||
CONFIG_LV_FONT_DEFAULT_MONTSERRAT_26=y
|
|
||||||
|
|
||||||
# Increase the bluetooth transmission power
|
|
||||||
CONFIG_BT_CTLR_TX_PWR_PLUS_8=y
|
|
||||||
CONFIG_ZMK_BLE_EXPERIMENTAL_FEATURES=y
|
|
||||||
|
|
||||||
# Set sleep timeout to 30 minutes
|
|
||||||
CONFIG_ZMK_SLEEP=y
|
|
||||||
CONFIG_ZMK_IDLE_SLEEP_TIMEOUT=1800000
|
|
||||||
|
|
||||||
# Enable eager debouncing
|
|
||||||
CONFIG_ZMK_KSCAN_DEBOUNCE_PRESS_MS=1
|
|
||||||
CONFIG_ZMK_KSCAN_DEBOUNCE_RELEASE_MS=10
|
|
||||||
|
|
||||||
# Enable ZMK Studio for Realtime Keymap Updates
|
|
||||||
# CONFIG_ZMK_STUDIO=y
|
|
||||||
# CONFIG_ZMK_STUDIO_LOCKING=n
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (c) 2020 Pete Johanson
|
|
||||||
*
|
|
||||||
* SPDX-License-Identifier: MIT
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "corne.dtsi"
|
|
||||||
|
|
||||||
&kscan0 {
|
|
||||||
col-gpios
|
|
||||||
= <&pro_micro 21 GPIO_ACTIVE_HIGH>
|
|
||||||
, <&pro_micro 20 GPIO_ACTIVE_HIGH>
|
|
||||||
, <&pro_micro 19 GPIO_ACTIVE_HIGH>
|
|
||||||
, <&pro_micro 18 GPIO_ACTIVE_HIGH>
|
|
||||||
, <&pro_micro 15 GPIO_ACTIVE_HIGH>
|
|
||||||
, <&pro_micro 14 GPIO_ACTIVE_HIGH>
|
|
||||||
;
|
|
||||||
};
|
|
||||||
@@ -1,26 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (c) 2020 Pete Johanson
|
|
||||||
*
|
|
||||||
* SPDX-License-Identifier: MIT
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "corne.dtsi"
|
|
||||||
|
|
||||||
&default_transform {
|
|
||||||
col-offset = <6>;
|
|
||||||
};
|
|
||||||
|
|
||||||
&five_column_transform {
|
|
||||||
col-offset = <6>;
|
|
||||||
};
|
|
||||||
|
|
||||||
&kscan0 {
|
|
||||||
col-gpios
|
|
||||||
= <&pro_micro 14 GPIO_ACTIVE_HIGH>
|
|
||||||
, <&pro_micro 15 GPIO_ACTIVE_HIGH>
|
|
||||||
, <&pro_micro 18 GPIO_ACTIVE_HIGH>
|
|
||||||
, <&pro_micro 19 GPIO_ACTIVE_HIGH>
|
|
||||||
, <&pro_micro 20 GPIO_ACTIVE_HIGH>
|
|
||||||
, <&pro_micro 21 GPIO_ACTIVE_HIGH>
|
|
||||||
;
|
|
||||||
};
|
|
||||||
23
build.yaml
23
build.yaml
@@ -19,25 +19,28 @@
|
|||||||
#
|
#
|
||||||
---
|
---
|
||||||
include:
|
include:
|
||||||
- board: nice_nano_v2
|
# Add custom dongle and a peripheral left corne
|
||||||
shield: corne_left nice_view_adapter nice_view
|
|
||||||
artifact-name: corne_left_master
|
|
||||||
- board: nice_nano_v2
|
|
||||||
shield: corne_right nice_view_adapter nice_view
|
|
||||||
artifact-name: corne_right_slave
|
|
||||||
|
|
||||||
# Add custom dongle and a peripheral left corne
|
|
||||||
- board: seeeduino_xiao_ble
|
- board: seeeduino_xiao_ble
|
||||||
shield: corne_dongle
|
shield: corne_dongle
|
||||||
|
snippet: studio-rpc-usb-uart
|
||||||
|
cmake-args: -DCONFIG_ZMK_SPLIT_ROLE_CENTRAL=y -DCONFIG_ZMK_STUDIO=y -DCONFIG_ZMK_STUDIO_LOCKING=n
|
||||||
artifact-name: xiao_dongle
|
artifact-name: xiao_dongle
|
||||||
|
|
||||||
- board: nice_nano_v2
|
- board: nice_nano_v2
|
||||||
shield: corne_peripheral_left nice_view_adapter nice_view
|
shield: corne_left nice_view_adapter nice_view
|
||||||
artifact-name: corne_left_slave
|
cmake-args: -DCONFIG_ZMK_SPLIT_ROLE_CENTRAL=n
|
||||||
|
artifact-name: nano_corne_left
|
||||||
|
|
||||||
|
- board: nice_nano_v2
|
||||||
|
shield: corne_right nice_view_adapter nice_view
|
||||||
|
cmake-args: -DCONFIG_ZMK_SPLIT_ROLE_CENTRAL=n
|
||||||
|
artifact-name: nano_corne_right
|
||||||
|
|
||||||
# reset_settings
|
# reset_settings
|
||||||
- board: nice_nano_v2
|
- board: nice_nano_v2
|
||||||
shield: settings_reset
|
shield: settings_reset
|
||||||
artifact-name: nano_reset_settings
|
artifact-name: nano_reset_settings
|
||||||
|
|
||||||
- board: seeeduino_xiao_ble
|
- board: seeeduino_xiao_ble
|
||||||
shield: settings_reset
|
shield: settings_reset
|
||||||
artifact-name: xiao_reset_settings
|
artifact-name: xiao_reset_settings
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
# Board Name
|
|
||||||
CONFIG_ZMK_KEYBOARD_NAME="Corne-Bop"
|
|
||||||
|
|
||||||
# Enable and adjust nice!view
|
# Enable and adjust nice!view
|
||||||
CONFIG_ZMK_DISPLAY=y
|
CONFIG_ZMK_DISPLAY=y
|
||||||
|
CONFIG_ZMK_WIDGET_BATTERY_STATUS=y
|
||||||
CONFIG_ZMK_WIDGET_BATTERY_STATUS_SHOW_PERCENTAGE=y
|
CONFIG_ZMK_WIDGET_BATTERY_STATUS_SHOW_PERCENTAGE=y
|
||||||
CONFIG_ZMK_WIDGET_WPM_STATUS=n
|
CONFIG_ZMK_WIDGET_WPM_STATUS=n
|
||||||
|
|
||||||
@@ -1,5 +1,6 @@
|
|||||||
# Enable and adjust nice!view
|
# Enable and adjust nice!view
|
||||||
CONFIG_ZMK_DISPLAY=y
|
CONFIG_ZMK_DISPLAY=y
|
||||||
|
CONFIG_ZMK_WIDGET_BATTERY_STATUS=y
|
||||||
CONFIG_ZMK_WIDGET_BATTERY_STATUS_SHOW_PERCENTAGE=y
|
CONFIG_ZMK_WIDGET_BATTERY_STATUS_SHOW_PERCENTAGE=y
|
||||||
CONFIG_ZMK_WIDGET_WPM_STATUS=n
|
CONFIG_ZMK_WIDGET_WPM_STATUS=n
|
||||||
|
|
||||||
Reference in New Issue
Block a user