diff options
author | Pete Johanson <peter@peterjohanson.com> | 2021-01-20 10:57:03 -0500 |
---|---|---|
committer | Pete Johanson <peter@peterjohanson.com> | 2021-02-09 01:27:50 -0500 |
commit | bb2c478af915616640d78ae9ba984fbf1f817185 (patch) | |
tree | c4a0192b9df440f0413544aa7b6e80f81cf01885 /app/include/zmk/rgb_underglow.h | |
parent | 24ed1a8eaa013aa729f394554991507e95f3f99d (diff) |
refactor(rgb): Expose explicit on/off command/API.
Diffstat (limited to 'app/include/zmk/rgb_underglow.h')
-rw-r--r-- | app/include/zmk/rgb_underglow.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app/include/zmk/rgb_underglow.h b/app/include/zmk/rgb_underglow.h index 7fcd42d..7c2ff13 100644 --- a/app/include/zmk/rgb_underglow.h +++ b/app/include/zmk/rgb_underglow.h @@ -7,6 +7,9 @@ #pragma once int zmk_rgb_underglow_toggle(); +int zmk_rgb_underglow_get_state(bool *state); +int zmk_rgb_underglow_on(); +int zmk_rgb_underglow_off(); int zmk_rgb_underglow_cycle_effect(int direction); int zmk_rgb_underglow_change_hue(int direction); int zmk_rgb_underglow_change_sat(int direction); |