diff options
author | Pete Johanson <peter@peterjohanson.com> | 2020-08-31 10:18:19 -0400 |
---|---|---|
committer | Pete Johanson <peter@peterjohanson.com> | 2020-12-02 16:04:56 -0500 |
commit | b3f3362b506d628c53cc610801bc3109965659ea (patch) | |
tree | 847013359808f4e0bc7c0da17d6750eb998b143c /app/include/zmk/ble.h | |
parent | d5ea4269757e4b6e1d4a4185a34f359210eac310 (diff) |
feat(display): Initial widget/status screen work.
* Battery and output status widgets
* Built in status screen combining them.
* Ability to define a custom status screen factory
function.
Diffstat (limited to 'app/include/zmk/ble.h')
-rw-r--r-- | app/include/zmk/ble.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/include/zmk/ble.h b/app/include/zmk/ble.h index 56980c6..90afbda 100644 --- a/app/include/zmk/ble.h +++ b/app/include/zmk/ble.h @@ -14,7 +14,9 @@ int zmk_ble_prof_next(); int zmk_ble_prof_prev(); int zmk_ble_prof_select(u8_t index); +int zmk_ble_active_profile_index(); bt_addr_le_t *zmk_ble_active_profile_addr(); +bool zmk_ble_active_profile_is_open(); bool zmk_ble_active_profile_is_connected(); char *zmk_ble_active_profile_name(); |