18 lines
613 B
C
18 lines
613 B
C
|
|
#pragma once
|
|
|
|
#include <zephyr/bluetooth/addr.h>
|
|
#include <zmk/behavior.h>
|
|
|
|
#if IS_ENABLED(CONFIG_ZMK_SPLIT_PERIPHERAL_HID_INDICATORS)
|
|
#include <zmk/hid_indicators_types.h>
|
|
#endif // IS_ENABLED(CONFIG_ZMK_SPLIT_PERIPHERAL_HID_INDICATORS)
|
|
|
|
int zmk_split_bt_invoke_behavior(uint8_t source, struct zmk_behavior_binding *binding,
|
|
struct zmk_behavior_binding_event event, bool state);
|
|
|
|
#if IS_ENABLED(CONFIG_ZMK_SPLIT_PERIPHERAL_HID_INDICATORS)
|
|
|
|
int zmk_split_bt_update_hid_indicator(zmk_hid_indicators_t indicators);
|
|
|
|
#endif // IS_ENABLED(CONFIG_ZMK_SPLIT_PERIPHERAL_HID_INDICATORS)
|