backlight.h (342B)
1 /* 2 MNT Reform 2.0 Keyboard Firmware 3 See keyboard.c for Copyright 4 SPDX-License-Identifier: MIT 5 */ 6 7 #ifndef _BACKLIGHT_H_ 8 #define _BACKLIGHT_H_ 9 10 #include <stdint.h> 11 12 void kbd_brightness_init(void); 13 void kbd_brightness_inc(void); 14 void kbd_brightness_dec(void); 15 void kbd_brightness_set(int brite); 16 int16_t kbd_brightness_get(void); 17 18 #endif