diff options
Diffstat (limited to 'app/include/zmk')
-rw-r--r-- | app/include/zmk/rgb_underglow.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/app/include/zmk/rgb_underglow.h b/app/include/zmk/rgb_underglow.h new file mode 100644 index 0000000..69e9a9b --- /dev/null +++ b/app/include/zmk/rgb_underglow.h @@ -0,0 +1,14 @@ +/* + * Copyright (c) 2020 Nick Winans <nick@winans.codes> + * + * SPDX-License-Identifier: MIT + */ + +#pragma once + +int zmk_rgb_underglow_toggle(); +int zmk_rgb_underglow_cycle_effect(int direction); +int zmk_rgb_underglow_change_hue(int direction); +int zmk_rgb_underglow_change_sat(int direction); +int zmk_rgb_underglow_change_brt(int direction); +int zmk_rgb_underglow_change_spd(int direction); |