1 /*
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 #define LED_COLOR_ID_WHITE      0
11 #define LED_COLOR_ID_RED        1
12 #define LED_COLOR_ID_GREEN      2
13 #define LED_COLOR_ID_BLUE       3
14 #define LED_COLOR_ID_AMBER      4
15 #define LED_COLOR_ID_VIOLET     5
16 #define LED_COLOR_ID_YELLOW     6
17 #define LED_COLOR_ID_IR         7
18 #define LED_COLOR_ID_MAX        8
19 
20 #endif /* ZEPHYR_INCLUDE_DT_BINDINGS_LED_LED_H_ */
21