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.
17 lines
373 B
17 lines
373 B
/* |
|
* Copyright (c) 2021 The ZMK Contributors |
|
* |
|
* SPDX-License-Identifier: MIT |
|
*/ |
|
|
|
#pragma once |
|
|
|
int zmk_backlight_on(); |
|
int zmk_backlight_off(); |
|
int zmk_backlight_toggle(); |
|
bool zmk_backlight_is_on(); |
|
|
|
int zmk_backlight_set_brt(uint8_t brightness); |
|
uint8_t zmk_backlight_get_brt(); |
|
uint8_t zmk_backlight_calc_brt(int direction); |
|
uint8_t zmk_backlight_calc_brt_cycle();
|
|
|