From f8cb8a2551c252cfc9897021cf00ef72376599db Mon Sep 17 00:00:00 2001 From: KemoNine Date: Sat, 30 Apr 2022 13:52:45 -0400 Subject: [PATCH] remove tsraneio in favor of remixes --- .github/workflows/build.yml | 8 --- .../the_paintbrush_left_tsraneio.conf | 20 -------- .../the_paintbrush_left_tsraneio.keymap | 31 ----------- .../the_paintbrush_left_tsraneio.overlay | 50 ------------------ .../the_paintbrush_right_tsraneio.conf | 20 -------- .../the_paintbrush_right_tsraneio.keymap | 31 ----------- .../the_paintbrush_right_tsraneio.overlay | 51 ------------------- 7 files changed, 211 deletions(-) delete mode 100755 config/boards/shields/the_paintbrush/the_paintbrush_left_tsraneio.conf delete mode 100644 config/boards/shields/the_paintbrush/the_paintbrush_left_tsraneio.keymap delete mode 100644 config/boards/shields/the_paintbrush/the_paintbrush_left_tsraneio.overlay delete mode 100755 config/boards/shields/the_paintbrush/the_paintbrush_right_tsraneio.conf delete mode 100644 config/boards/shields/the_paintbrush/the_paintbrush_right_tsraneio.keymap delete mode 100644 config/boards/shields/the_paintbrush/the_paintbrush_right_tsraneio.overlay diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4132775..89a8f64 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -59,14 +59,6 @@ jobs: shield: tidbit_ardux_left - board: nice_nano shield: tidbit_ardux_right - - board: nice_nano - shield: the_paintbrush_left_tsraneio - - board: nice_nano - shield: the_paintbrush_right_tsraneio - - board: nice_nano_v2 - shield: the_paintbrush_left_tsraneio - - board: nice_nano_v2 - shield: the_paintbrush_right_tsraneio - board: nice_nano_v2 shield: cradio_ardux_left - board: nice_nano_v2 diff --git a/config/boards/shields/the_paintbrush/the_paintbrush_left_tsraneio.conf b/config/boards/shields/the_paintbrush/the_paintbrush_left_tsraneio.conf deleted file mode 100755 index 9c6655e..0000000 --- a/config/boards/shields/the_paintbrush/the_paintbrush_left_tsraneio.conf +++ /dev/null @@ -1,20 +0,0 @@ -# Copyright (c) 2021 Mike "KemoNine" Crosson -# SPDX-License-Identifier: MIT - -# Tune combos to allow proper ARDUX support -CONFIG_ZMK_COMBO_MAX_COMBOS_PER_KEY=16 -CONFIG_ZMK_COMBO_MAX_KEYS_PER_COMBO=8 -CONFIG_ZMK_COMBO_MAX_PRESSED_COMBOS=8 - -# Tune bluetooth profiles for quick select -CONFIG_BT_MAX_CONN=6 - -# Enable display (layer in use is helpful) -CONFIG_ZMK_DISPLAY=y - -# Turn off sleep -CONFIG_ZMK_SLEEP=n -#CONFIG_ZMK_IDLE_SLEEP_TIMEOUT=900000 - -# Set screen blanking to 15s instead of 30s -#CONFIG_ZMK_IDLE_TIMEOUT=15000 diff --git a/config/boards/shields/the_paintbrush/the_paintbrush_left_tsraneio.keymap b/config/boards/shields/the_paintbrush/the_paintbrush_left_tsraneio.keymap deleted file mode 100644 index 202ae08..0000000 --- a/config/boards/shields/the_paintbrush/the_paintbrush_left_tsraneio.keymap +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Copyright (c) 2021 Mike "KemoNine" Crosson - * - * SPDX-License-Identifier: MIT - */ - -#include -#include -#include - -// Left/Right -#define ARDUX_LEFT 1 - -// ARTS Row -#define KEY_A 3 -#define KEY_R 2 -#define KEY_T 1 -#define KEY_S 0 -// EYIO Row -#define KEY_E 7 -#define KEY_Y 6 -#define KEY_I 5 -#define KEY_O 4 - -// Define Offsets -#define LEADING_NONES NONE(0,0,0) -#define MIDDLE_NONES NONE(0, 0, 0) -#define TRAILING_NONES NONE(0, 0, 0) - -// Include main ardux.io keymap -#include "../../../ardux.dtsi" diff --git a/config/boards/shields/the_paintbrush/the_paintbrush_left_tsraneio.overlay b/config/boards/shields/the_paintbrush/the_paintbrush_left_tsraneio.overlay deleted file mode 100644 index 53dce07..0000000 --- a/config/boards/shields/the_paintbrush/the_paintbrush_left_tsraneio.overlay +++ /dev/null @@ -1,50 +0,0 @@ -/* - * Copyright (c) 2021 Mike "KemoNine" Crosson - * - * SPDX-License-Identifier: MIT - */ - -#include - -/ { - chosen { - zmk,kscan = &kscan0; - }; - - kscan0: kscan_0 { - compatible = "zmk,kscan-gpio-direct"; - - label = "KSCAN"; - - input-gpios - = <&pro_micro_a 0 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)> - , <&pro_micro_a 1 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)> - , <&pro_micro_a 2 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)> - , <&pro_micro_a 3 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)> - , <&pro_micro_d 10 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)> - , <&pro_micro_d 16 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)> - , <&pro_micro_d 14 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)> - , <&pro_micro_d 15 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)> - ; - }; -}; - -&pro_micro_i2c { - status = "okay"; - - oled: ssd1306@3c { - compatible = "solomon,ssd1306fb"; - reg = <0x3c>; - label = "DISPLAY"; - width = <128>; - height = <32>; - segment-offset = <0>; - page-offset = <0>; - display-offset = <0>; - multiplex-ratio = <31>; - segment-remap; - com-invdir; - com-sequential; - prechargep = <0x22>; - }; -}; diff --git a/config/boards/shields/the_paintbrush/the_paintbrush_right_tsraneio.conf b/config/boards/shields/the_paintbrush/the_paintbrush_right_tsraneio.conf deleted file mode 100755 index 9c6655e..0000000 --- a/config/boards/shields/the_paintbrush/the_paintbrush_right_tsraneio.conf +++ /dev/null @@ -1,20 +0,0 @@ -# Copyright (c) 2021 Mike "KemoNine" Crosson -# SPDX-License-Identifier: MIT - -# Tune combos to allow proper ARDUX support -CONFIG_ZMK_COMBO_MAX_COMBOS_PER_KEY=16 -CONFIG_ZMK_COMBO_MAX_KEYS_PER_COMBO=8 -CONFIG_ZMK_COMBO_MAX_PRESSED_COMBOS=8 - -# Tune bluetooth profiles for quick select -CONFIG_BT_MAX_CONN=6 - -# Enable display (layer in use is helpful) -CONFIG_ZMK_DISPLAY=y - -# Turn off sleep -CONFIG_ZMK_SLEEP=n -#CONFIG_ZMK_IDLE_SLEEP_TIMEOUT=900000 - -# Set screen blanking to 15s instead of 30s -#CONFIG_ZMK_IDLE_TIMEOUT=15000 diff --git a/config/boards/shields/the_paintbrush/the_paintbrush_right_tsraneio.keymap b/config/boards/shields/the_paintbrush/the_paintbrush_right_tsraneio.keymap deleted file mode 100644 index df2bd38..0000000 --- a/config/boards/shields/the_paintbrush/the_paintbrush_right_tsraneio.keymap +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Copyright (c) 2021 Mike "KemoNine" Crosson - * - * SPDX-License-Identifier: MIT - */ - -#include -#include -#include - -// Left/Right -#define ARDUX_RIGHT 1 - -// ARTS Row -#define KEY_A 0 -#define KEY_R 1 -#define KEY_T 2 -#define KEY_S 3 -// EYIO Row -#define KEY_E 4 -#define KEY_Y 5 -#define KEY_I 6 -#define KEY_O 7 - -// Define Offsets -#define LEADING_NONES NONE(0,0,0) -#define MIDDLE_NONES NONE(0, 0, 0) -#define TRAILING_NONES NONE(0, 0, 0) - -// Include main ardux.io keymap -#include "../../../ardux.dtsi" diff --git a/config/boards/shields/the_paintbrush/the_paintbrush_right_tsraneio.overlay b/config/boards/shields/the_paintbrush/the_paintbrush_right_tsraneio.overlay deleted file mode 100644 index 12294a9..0000000 --- a/config/boards/shields/the_paintbrush/the_paintbrush_right_tsraneio.overlay +++ /dev/null @@ -1,51 +0,0 @@ -/* - * Copyright (c) 2021 Mike "KemoNine" Crosson - * - * SPDX-License-Identifier: MIT - */ - -#include - -/ { - chosen { - zmk,kscan = &kscan0; - }; - - kscan0: kscan_0 { - compatible = "zmk,kscan-gpio-direct"; - - label = "KSCAN"; - - input-gpios - = <&pro_micro_a 3 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)> - , <&pro_micro_a 2 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)> - , <&pro_micro_a 1 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)> - , <&pro_micro_a 0 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)> - , <&pro_micro_d 15 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)> - , <&pro_micro_d 14 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)> - , <&pro_micro_d 16 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)> - , <&pro_micro_d 10 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)> - ; - - }; -}; - -&pro_micro_i2c { - status = "okay"; - - oled: ssd1306@3c { - compatible = "solomon,ssd1306fb"; - reg = <0x3c>; - label = "DISPLAY"; - width = <128>; - height = <32>; - segment-offset = <0>; - page-offset = <0>; - display-offset = <0>; - multiplex-ratio = <31>; - segment-remap; - com-invdir; - com-sequential; - prechargep = <0x22>; - }; -};