forked from zmkfirmware/zmk
-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
86 additions
and
0 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
/ { | ||
behaviors { | ||
stp: behavior_stp_indicators { | ||
compatible = "zmk,behavior-stp-indicators"; | ||
display-name = "Battery Level"; | ||
#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 @@ | ||
#define STP_BAT 0 |
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,74 @@ | ||
/* | ||
* Copyright (c) 2020 The ZMK Contributors | ||
* | ||
* SPDX-License-Identifier: MIT | ||
*/ | ||
|
||
#define DT_DRV_COMPAT zmk_behavior_stp_indicators | ||
|
||
#include <zephyr/device.h> | ||
#include <drivers/behavior.h> | ||
#include <zephyr/logging/log.h> | ||
|
||
#include <dt-bindings/zmk/stp.h> | ||
#include <zmk/rgb_underglow.h> | ||
#include <zmk/keymap.h> | ||
|
||
LOG_MODULE_DECLARE(zmk, CONFIG_ZMK_LOG_LEVEL); | ||
|
||
#if DT_HAS_COMPAT_STATUS_OKAY(DT_DRV_COMPAT) | ||
|
||
static const struct behavior_parameter_value_metadata param_values[] = { | ||
{ | ||
.value = STP_BAT, | ||
.display_name = "Battery command", | ||
.type = BEHAVIOR_PARAMETER_VALUE_TYPE_VALUE, | ||
}, | ||
|
||
}; | ||
|
||
static const struct behavior_parameter_metadata_set param_metadata_set[] = {{ | ||
.param1_values = param_values, | ||
.param1_values_len = ARRAY_SIZE(param_values), | ||
}}; | ||
|
||
static const struct behavior_parameter_metadata metadata = { | ||
.sets_len = ARRAY_SIZE(param_metadata_set), | ||
.sets = param_metadata_set, | ||
}; | ||
|
||
static int behavior_stp_indicators_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 STP_BAT: | ||
return zmk_rgb_underglow_select_effect(5); | ||
} | ||
|
||
return -ENOTSUP; | ||
} | ||
|
||
static int on_keymap_binding_released(struct zmk_behavior_binding *binding, | ||
struct zmk_behavior_binding_event event) { | ||
switch (binding->param1) { | ||
case STP_BAT: | ||
return zmk_rgb_underglow_select_effect(4); | ||
} | ||
return ZMK_BEHAVIOR_OPAQUE; | ||
} | ||
|
||
static const struct behavior_driver_api behavior_stp_indicators_driver_api = { | ||
.binding_pressed = on_keymap_binding_pressed, | ||
.binding_released = on_keymap_binding_released, | ||
.locality = BEHAVIOR_LOCALITY_CENTRAL, | ||
|
||
#if IS_ENABLED(CONFIG_ZMK_BEHAVIOR_METADATA) | ||
.parameter_metadata = &metadata, | ||
#endif // IS_ENABLED(CONFIG_ZMK_BEHAVIOR_METADATA) | ||
}; | ||
|
||
BEHAVIOR_DT_INST_DEFINE(0, behavior_stp_indicators_init, NULL, NULL, NULL, POST_KERNEL, | ||
CONFIG_KERNEL_INIT_PRIORITY_DEFAULT, &behavior_stp_indicators_driver_api); | ||
|
||
#endif /* DT_HAS_COMPAT_STATUS_OKAY(DT_DRV_COMPAT) */ |