2af794eed3
* Public type for HSB led color. * New API for calculating "next" HSB based on current state. * Update behavior to convert the increment/decrement commands to absolute command as well.
27 lines
No EOL
795 B
C
27 lines
No EOL
795 B
C
/*
|
|
* Copyright (c) 2020 The ZMK Contributors
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
struct zmk_led_hsb {
|
|
uint16_t h;
|
|
uint8_t s;
|
|
uint8_t b;
|
|
};
|
|
|
|
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);
|
|
struct zmk_led_hsb zmk_rgb_underglow_calc_hue(int direction);
|
|
struct zmk_led_hsb zmk_rgb_underglow_calc_sat(int direction);
|
|
struct zmk_led_hsb zmk_rgb_underglow_calc_brt(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);
|
|
int zmk_rgb_underglow_set_hsb(struct zmk_led_hsb color); |