Line data Source code
1 0 : /*
2 : * Copyright (c) 2020 Seagate Technology LLC
3 : *
4 : * SPDX-License-Identifier: Apache-2.0
5 : */
6 : #ifndef ZEPHYR_INCLUDE_DT_BINDINGS_LED_LED_H_
7 : #define ZEPHYR_INCLUDE_DT_BINDINGS_LED_LED_H_
8 :
9 : /* Standard LED colors */
10 0 : #define LED_COLOR_ID_WHITE 0
11 0 : #define LED_COLOR_ID_RED 1
12 0 : #define LED_COLOR_ID_GREEN 2
13 0 : #define LED_COLOR_ID_BLUE 3
14 0 : #define LED_COLOR_ID_AMBER 4
15 0 : #define LED_COLOR_ID_VIOLET 5
16 0 : #define LED_COLOR_ID_YELLOW 6
17 0 : #define LED_COLOR_ID_IR 7
18 0 : #define LED_COLOR_ID_MAX 8
19 :
20 : #endif /* ZEPHYR_INCLUDE_DT_BINDINGS_LED_LED_H_ */
|