Browse Source
Added a new setting to remember the user's preferred endpoint. When both USB and BLE are connected, the preferred endpoint will be used. Added a new behavior to control this setting. It supports commands: &end END_USB - Prefer USB output &end END_BLE - Prefer BLE output &end END_TOG - Toggle between USB and BLExmkb
Joel Spadin
4 years ago
10 changed files with 239 additions and 19 deletions
@ -0,0 +1,9 @@ |
|||||||
|
/ { |
||||||
|
behaviors { |
||||||
|
end: behavior_endpoints { |
||||||
|
compatible = "zmk,behavior-endpoints"; |
||||||
|
label = "ENDPOINTS"; |
||||||
|
#binding-cells = <1>; |
||||||
|
}; |
||||||
|
}; |
||||||
|
}; |
@ -0,0 +1,10 @@ |
|||||||
|
# |
||||||
|
# Copyright (c) 2020, The ZMK Contributors |
||||||
|
# SPDX-License-Identifier: MIT |
||||||
|
# |
||||||
|
|
||||||
|
description: Endpoints Behavior |
||||||
|
|
||||||
|
compatible: "zmk,behavior-endpoints" |
||||||
|
|
||||||
|
include: one_param.yaml |
@ -0,0 +1,13 @@ |
|||||||
|
/*
|
||||||
|
* Copyright (c) 2020 The ZMK Contributors |
||||||
|
* |
||||||
|
* SPDX-License-Identifier: MIT |
||||||
|
*/ |
||||||
|
|
||||||
|
#define ENDPOINT_TOGGLE_CMD 0 |
||||||
|
#define ENDPOINT_USB_CMD 1 |
||||||
|
#define ENDPOINT_BLE_CMD 2 |
||||||
|
|
||||||
|
#define END_TOG ENDPOINT_TOGGLE_CMD |
||||||
|
#define END_USB ENDPOINT_USB_CMD |
||||||
|
#define END_BLE ENDPOINT_BLE_CMD |
@ -0,0 +1,44 @@ |
|||||||
|
/*
|
||||||
|
* Copyright (c) 2020 The ZMK Contributors |
||||||
|
* |
||||||
|
* SPDX-License-Identifier: MIT |
||||||
|
*/ |
||||||
|
|
||||||
|
#define DT_DRV_COMPAT zmk_behavior_endpoints |
||||||
|
|
||||||
|
#include <device.h> |
||||||
|
#include <devicetree.h> |
||||||
|
#include <drivers/behavior.h> |
||||||
|
|
||||||
|
#include <dt-bindings/zmk/endpoints.h> |
||||||
|
|
||||||
|
#include <zmk/behavior.h> |
||||||
|
#include <zmk/endpoints.h> |
||||||
|
|
||||||
|
#include <logging/log.h> |
||||||
|
LOG_MODULE_DECLARE(zmk, CONFIG_ZMK_LOG_LEVEL); |
||||||
|
|
||||||
|
static int on_keymap_binding_pressed(struct zmk_behavior_binding *binding, |
||||||
|
struct zmk_behavior_binding_event event) { |
||||||
|
switch (binding->param1) { |
||||||
|
case ENDPOINT_TOGGLE_CMD: |
||||||
|
return zmk_endpoints_toggle(); |
||||||
|
case ENDPOINT_USB_CMD: |
||||||
|
return zmk_endpoints_select(ZMK_ENDPOINT_USB); |
||||||
|
case ENDPOINT_BLE_CMD: |
||||||
|
return zmk_endpoints_select(ZMK_ENDPOINT_BLE); |
||||||
|
default: |
||||||
|
LOG_ERR("Unknown endpoints command: %d", binding->param1); |
||||||
|
} |
||||||
|
|
||||||
|
return -ENOTSUP; |
||||||
|
} |
||||||
|
|
||||||
|
static int behavior_ep_init(struct device *dev) { return 0; } |
||||||
|
|
||||||
|
static const struct behavior_driver_api behavior_endpoints_driver_api = { |
||||||
|
.binding_pressed = on_keymap_binding_pressed, |
||||||
|
}; |
||||||
|
|
||||||
|
DEVICE_AND_API_INIT(behavior_end, DT_INST_LABEL(0), behavior_ep_init, NULL, NULL, APPLICATION, |
||||||
|
CONFIG_KERNEL_INIT_PRIORITY_DEFAULT, &behavior_endpoints_driver_api); |
@ -0,0 +1,59 @@ |
|||||||
|
--- |
||||||
|
title: Endpoint Behavior |
||||||
|
sidebar_label: Endpoints |
||||||
|
--- |
||||||
|
|
||||||
|
## Summary |
||||||
|
|
||||||
|
The endpoint behavior allows selecting whether keyboard input is sent to the |
||||||
|
USB or bluetooth connection when both are connected. This allows connecting a |
||||||
|
keyboard to USB for power but sending input to a different device over bluetooth. |
||||||
|
|
||||||
|
By default, keyboard input is sent to USB when both endpoints are connected. |
||||||
|
Once you select a different endpoint, it will be remembered until you change it again. |
||||||
|
|
||||||
|
## Endpoints Command Defines |
||||||
|
|
||||||
|
Endpoints command defines are provided through the [`dt-bindings/zmk/endpoints.h`](https://github.com/zmkfirmware/zmk/blob/main/app/include/dt-bindings/zmk/endpoints.h) |
||||||
|
header, which is added at the top of the keymap file: |
||||||
|
|
||||||
|
``` |
||||||
|
#include <dt-bindings/zmk/endpoints.h> |
||||||
|
``` |
||||||
|
|
||||||
|
This allows you to reference the actions defined in this header: |
||||||
|
|
||||||
|
| Define | Action | Alias | |
||||||
|
| --------------------- | ---------------------------------------------------- | --------- | |
||||||
|
| `ENDPOINT_USB_CMD` | Send keyboard input to USB | `END_USB` | |
||||||
|
| `ENDPOINT_BLE_CMD` | Send keyboard input to the current bluetooth profile | `END_BLE` | |
||||||
|
| `ENDPOINT_TOGGLE_CMD` | Toggle between USB and BLE | `END_TOG` | |
||||||
|
|
||||||
|
## Endpoints Behavior |
||||||
|
|
||||||
|
The endpoints behavior changes the preferred endpoint on press. |
||||||
|
|
||||||
|
### Behavior Binding |
||||||
|
|
||||||
|
- Reference: `&end` |
||||||
|
- Parameter #1: Command, e.g. `END_BLE` |
||||||
|
|
||||||
|
### Example: |
||||||
|
|
||||||
|
1. Behavior binding to prefer sending keyboard input to USB |
||||||
|
|
||||||
|
``` |
||||||
|
&end END_USB |
||||||
|
``` |
||||||
|
|
||||||
|
1. Behavior binding to prefer sending keyboard input to the current bluetooth profile |
||||||
|
|
||||||
|
``` |
||||||
|
&end END_BLE |
||||||
|
``` |
||||||
|
|
||||||
|
1. Behavior binding to toggle between preferring USB and BLE |
||||||
|
|
||||||
|
``` |
||||||
|
&end END_TOG |
||||||
|
``` |
Loading…
Reference in new issue