You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
390 B
14 lines
390 B
/* |
|
* 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);
|
|
|