2020-07-26 05:53:42 +10:00
|
|
|
/*
|
2020-09-10 13:57:44 +10:00
|
|
|
* Copyright (c) 2020 The ZMK Contributors
|
2020-07-26 05:53:42 +10:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*/
|
|
|
|
|
2020-07-25 13:37:00 +10:00
|
|
|
#pragma once
|
|
|
|
|
2020-07-26 05:53:42 +10:00
|
|
|
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);
|
2020-12-15 17:00:52 +11:00
|
|
|
int zmk_rgb_underglow_set_hsb(uint16_t hue, uint8_t saturation, uint8_t brightness);
|