forked from zmkfirmware/zmk
-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add trackpad toggle and multi touch toggle behaviour
- Loading branch information
Showing
7 changed files
with
100 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
/* | ||
* Copyright (c) 2024 The ZMK Contributors | ||
* | ||
* SPDX-License-Identifier: MIT | ||
*/ | ||
|
||
/ { | ||
behaviors { | ||
/omit-if-no-ref/ tp: trackpad { | ||
compatible = "zmk,behavior-trackpad"; | ||
#binding-cells = <1>; | ||
}; | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Copyright (c) 2024 The ZMK Contributors | ||
# SPDX-License-Identifier: MIT | ||
|
||
description: Trackpad | ||
|
||
compatible: "zmk,behavior-trackpad" | ||
|
||
include: one_param.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#define TP_MULTI_TOG 0 | ||
#define TP_MULTI_ON 1 | ||
#define TP_MULTI_OFF 2 | ||
#define TP_TOG 3 | ||
#define TP_ON 4 | ||
#define TP_OFF 5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
/* | ||
* Copyright (c) 2024 The ZMK Contributors | ||
* | ||
* SPDX-License-Identifier: MIT | ||
*/ | ||
|
||
#define DT_DRV_COMPAT zmk_behavior_trackpad | ||
|
||
#include <zephyr/device.h> | ||
#include <drivers/behavior.h> | ||
#include <zephyr/logging/log.h> | ||
|
||
#include <dt-bindings/zmk/trackpad.h> | ||
#include <zmk/trackpad.h> | ||
#include <zmk/hid.h> | ||
#include <zmk/keymap.h> | ||
|
||
LOG_MODULE_DECLARE(zmk, CONFIG_ZMK_LOG_LEVEL); | ||
|
||
#if DT_HAS_COMPAT_STATUS_OKAY(DT_DRV_COMPAT) | ||
|
||
static int behavior_trackpad_init(const struct device *dev) { return 0; } | ||
|
||
static int on_keymap_binding_pressed(struct zmk_behavior_binding *binding, | ||
struct zmk_behavior_binding_event event) { | ||
switch (binding->param1) { | ||
case TP_TOG: { | ||
zmk_trackpad_set_enabled(!zmk_trackpad_get_enabled()); | ||
return 0; | ||
} | ||
case TP_ON: { | ||
zmk_trackpad_set_enabled(true); | ||
return 0; | ||
} | ||
case TP_OFF: { | ||
zmk_trackpad_set_enabled(false); | ||
return 0; | ||
} | ||
case TP_MULTI_TOG: { | ||
zmk_hid_ptp_set_feature_mode_report(zmk_hid_ptp_get_feature_mode_report()->mode ? 0 : 3); | ||
return 0; | ||
} | ||
case TP_MULTI_ON: { | ||
zmk_hid_ptp_set_feature_mode_report(3); | ||
return 0; | ||
} | ||
case TP_MULTI_OFF: { | ||
zmk_hid_ptp_set_feature_mode_report(0); | ||
return 0; | ||
} | ||
} | ||
return -ENOTSUP; | ||
} | ||
|
||
static int on_keymap_binding_released(struct zmk_behavior_binding *binding, | ||
struct zmk_behavior_binding_event event) { | ||
return ZMK_BEHAVIOR_OPAQUE; | ||
} | ||
|
||
static const struct behavior_driver_api behavior_trackpad_driver_api = { | ||
.binding_pressed = on_keymap_binding_pressed, | ||
.binding_released = on_keymap_binding_released, | ||
}; | ||
|
||
DEVICE_DT_INST_DEFINE(0, behavior_trackpad_init, NULL, NULL, NULL, APPLICATION, | ||
CONFIG_KERNEL_INIT_PRIORITY_DEFAULT, &behavior_trackpad_driver_api); | ||
|
||
#endif /* DT_HAS_COMPAT_STATUS_OKAY(DT_DRV_COMPAT) */ |