summaryrefslogtreecommitdiff
path: root/keyboards/keebio/bdn9
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2023-12-18 01:51:24 +0000
committerGitHub <noreply@github.com>2023-12-18 12:51:24 +1100
commit27a710861ebd2a1e0a13a7e39f6a6c6568909bb4 (patch)
treef7790e8d26b6ffe3997441116cf903d2b23c2d0c /keyboards/keebio/bdn9
parent1556a2ed0e172cbaadcdc2acd7d5c8f57fb078f9 (diff)
[Keymap Removal] Preonic and related keymaps. (#22689)
Diffstat (limited to 'keyboards/keebio/bdn9')
-rw-r--r--keyboards/keebio/bdn9/keymaps/codecoffeecode/config.h12
-rw-r--r--keyboards/keebio/bdn9/keymaps/codecoffeecode/keymap.c58
-rw-r--r--keyboards/keebio/bdn9/keymaps/codecoffeecode/rules.mk4
3 files changed, 0 insertions, 74 deletions
diff --git a/keyboards/keebio/bdn9/keymaps/codecoffeecode/config.h b/keyboards/keebio/bdn9/keymaps/codecoffeecode/config.h
deleted file mode 100644
index 5b8b369bc3..0000000000
--- a/keyboards/keebio/bdn9/keymaps/codecoffeecode/config.h
+++ /dev/null
@@ -1,12 +0,0 @@
-#pragma once
-
-/* For USB nonsense in various OSs */
-#define TAP_CODE_DELAY 10
-
-/* For constant mouse speed */
-#define MOUSEKEY_DELAY 300
-#define MOUSEKEY_INTERVAL 50
-#define MOUSEKEY_MAX_SPEED 1
-#define MOUSEKEY_TIME_TO_MAX 0
-#define MOUSEKEY_WHEEL_MAX_SPEED 1
-#define MOUSEKEY_WHEEL_TIME_TO_MAX 0
diff --git a/keyboards/keebio/bdn9/keymaps/codecoffeecode/keymap.c b/keyboards/keebio/bdn9/keymaps/codecoffeecode/keymap.c
deleted file mode 100644
index 89956afd7c..0000000000
--- a/keyboards/keebio/bdn9/keymaps/codecoffeecode/keymap.c
+++ /dev/null
@@ -1,58 +0,0 @@
-/* Copyright 2019 Danny Nguyen <danny@keeb.io>
- *
- * 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] = {
- /*
- | Knob 1: Scrl Dn/Up | | Knob 2: Vol Dn/Up |
- | Press: Mute | Up | Press: Play/Pause |
- | Left | Down | Right |
- | Media Previous | MO(1)| Media Next |
- */
- [0] = LAYOUT(
- KC_MUTE, KC_UP, KC_MPLY,
- KC_LEFT, KC_DOWN, KC_RIGHT,
- KC_MPRV, MO(1), KC_MNXT
- ),
- /*
- | QK_BOOT | Home | Media Stop |
- | | End | |
- | CTRL_END | | CTRL_HOME |
- */
- [1] = LAYOUT(
- QK_BOOT, KC_HOME, KC_STOP,
- _______, KC_END, _______,
- LCTL(KC_END), _______, LCTL(KC_HOME)
- ),
-};
-
-bool encoder_update_user(uint8_t index, bool clockwise) {
- if (index == 0) {
- if (clockwise) {
- tap_code(KC_MS_WH_UP);
- } else {
- tap_code(KC_MS_WH_DOWN);
- }
- }
- else if (index == 1) {
- if (clockwise) {
- tap_code(KC_VOLU);
- } else {
- tap_code(KC_VOLD);
- }
- }
- return true;
-}
diff --git a/keyboards/keebio/bdn9/keymaps/codecoffeecode/rules.mk b/keyboards/keebio/bdn9/keymaps/codecoffeecode/rules.mk
deleted file mode 100644
index ab339e537f..0000000000
--- a/keyboards/keebio/bdn9/keymaps/codecoffeecode/rules.mk
+++ /dev/null
@@ -1,4 +0,0 @@
-MOUSEKEY_ENABLE = yes
-ifneq (, $(findstring rev1, $(KEYBOARD)))
- CONVERT_TO=proton_c
-endif