zmk_mf68/app/include/dt-bindings/zmk/backlight.h

22 lines
431 B
C
Raw Normal View History

2021-10-10 03:24:37 +11:00
/*
* Copyright (c) 2021 The ZMK Contributors
*
* SPDX-License-Identifier: MIT
*/
2021-12-20 21:00:22 +11:00
#define BL_ON_CMD 0
#define BL_OFF_CMD 1
#define BL_TOG_CMD 2
2021-12-20 20:40:19 +11:00
#define BL_INC_CMD 3
#define BL_DEC_CMD 4
#define BL_CYCLE_CMD 5
#define BL_SET_CMD 6
2021-12-20 20:40:19 +11:00
#define BL_ON BL_ON_CMD 0
#define BL_OFF BL_OFF_CMD 0
2021-12-20 21:00:22 +11:00
#define BL_TOG BL_TOG_CMD 0
2021-12-20 20:40:19 +11:00
#define BL_INC BL_INC_CMD 0
#define BL_DEC BL_DEC_CMD 0
#define BL_CYCLE BL_CYCLE_CMD 0
2021-12-20 20:40:19 +11:00
#define BL_SET BL_SET_CMD