Pete Johanson
4 years ago
committed by
GitHub
26 changed files with 1 additions and 192 deletions
@ -1,12 +0,0 @@
@@ -1,12 +0,0 @@
|
||||
# Copyright (c) 2020, Pete Johanson |
||||
# SPDX-License-Identifier: MIT |
||||
|
||||
description: | |
||||
Defines a set of key positions that will unpair all BT devices if held on startup. |
||||
|
||||
compatible: "zmk,bt-unpair-combo" |
||||
|
||||
properties: |
||||
key-positions: |
||||
type: array |
||||
required: true |
@ -1,76 +0,0 @@
@@ -1,76 +0,0 @@
|
||||
/*
|
||||
* Copyright (c) 2020 The ZMK Contributors |
||||
* |
||||
* SPDX-License-Identifier: MIT |
||||
*/ |
||||
|
||||
#include <device.h> |
||||
#include <init.h> |
||||
|
||||
#define DT_DRV_COMPAT zmk_bt_unpair_combo |
||||
|
||||
#if DT_HAS_COMPAT_STATUS_OKAY(DT_DRV_COMPAT) |
||||
|
||||
#include <logging/log.h> |
||||
LOG_MODULE_DECLARE(zmk, CONFIG_ZMK_LOG_LEVEL); |
||||
|
||||
#include <zmk/ble.h> |
||||
#include <zmk/event-manager.h> |
||||
#include <zmk/events/position-state-changed.h> |
||||
|
||||
static u8_t combo_state; |
||||
|
||||
const u32_t key_positions[] = DT_INST_PROP(0, key_positions); |
||||
#define KP_LEN DT_INST_PROP_LEN(0, key_positions) |
||||
|
||||
int index_for_key_position(u32_t kp) { |
||||
for (int i = 0; i < KP_LEN; i++) { |
||||
if (key_positions[i] == kp) { |
||||
return i; |
||||
} |
||||
} |
||||
|
||||
return -1; |
||||
} |
||||
|
||||
int unpair_combo_listener(const struct zmk_event_header *eh) { |
||||
if (is_position_state_changed(eh)) { |
||||
const struct position_state_changed *psc = cast_position_state_changed(eh); |
||||
|
||||
int kp_index = index_for_key_position(psc->position); |
||||
if (kp_index < 0) { |
||||
return 0; |
||||
} |
||||
|
||||
WRITE_BIT(combo_state, kp_index, psc->state); |
||||
} |
||||
|
||||
return 0; |
||||
}; |
||||
|
||||
void unpair_combo_work_handler(struct k_work *work) { |
||||
for (int i = 0; i < KP_LEN; i++) { |
||||
if (!(combo_state & BIT(i))) { |
||||
LOG_DBG("Key position %d not held, skipping unpair combo", key_positions[i]); |
||||
return; |
||||
} |
||||
} |
||||
|
||||
zmk_ble_unpair_all(); |
||||
}; |
||||
|
||||
struct k_delayed_work unpair_combo_work; |
||||
|
||||
int zmk_ble_unpair_combo_init(struct device *_unused) { |
||||
k_delayed_work_init(&unpair_combo_work, unpair_combo_work_handler); |
||||
k_delayed_work_submit(&unpair_combo_work, K_SECONDS(2)); |
||||
|
||||
return 0; |
||||
}; |
||||
|
||||
ZMK_LISTENER(zmk_ble_unpair_combo, unpair_combo_listener); |
||||
ZMK_SUBSCRIPTION(zmk_ble_unpair_combo, position_state_changed); |
||||
|
||||
SYS_INIT(zmk_ble_unpair_combo_init, APPLICATION, CONFIG_APPLICATION_INIT_PRIORITY); |
||||
|
||||
#endif /* DT_HAS_COMPAT_STATUS_OKAY(DT_DRV_COMPAT) */ |
Before Width: | Height: | Size: 144 KiB |
Before Width: | Height: | Size: 137 KiB |
Before Width: | Height: | Size: 2.4 MiB |
@ -1,30 +0,0 @@
@@ -1,30 +0,0 @@
|
||||
--- |
||||
id: bond-reset |
||||
title: Reset BLE Connections (DEPRECATED) |
||||
sidebar_label: BLE Reset (DEPRECATED) |
||||
--- |
||||
|
||||
Known as a 'bond reset', each keyboard has a special key combination independent of the user defined key map which will |
||||
clear all wireless connection configurations. The keys must be held for 3 to 5 seconds after the device is |
||||
reset. |
||||
|
||||
:::warning |
||||
Currently, ZMK only supports a single BLE host. If you remove the keyboard from the host's bluetooth devices |
||||
list, you will need to clear the bonds. |
||||
::: |
||||
|
||||
## Split Keyboards |
||||
|
||||
Split keyboards will need to be cleared on both halves. For best results try to reset them at the same time. |
||||
|
||||
### Kyria |
||||
|
||||
![Kyria bond-reset combo](assets/bond-clearing/kyria.jpg) |
||||
|
||||
### Corne |
||||
|
||||
![Corne bond-reset combo](assets/bond-clearing/corne.jpg) |
||||
|
||||
### Lily58 |
||||
|
||||
![Lily58 bond-reset combo](assets/bond-clearing/lily58.jpg) |
Loading…
Reference in new issue