led.h 571 B

1234567891011121314151617181920
  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. /* Standard LED colors */
  9. #define LED_COLOR_ID_WHITE 0
  10. #define LED_COLOR_ID_RED 1
  11. #define LED_COLOR_ID_GREEN 2
  12. #define LED_COLOR_ID_BLUE 3
  13. #define LED_COLOR_ID_AMBER 4
  14. #define LED_COLOR_ID_VIOLET 5
  15. #define LED_COLOR_ID_YELLOW 6
  16. #define LED_COLOR_ID_IR 7
  17. #define LED_COLOR_ID_MAX 8
  18. #endif /* ZEPHYR_INCLUDE_DT_BINDINGS_LED_LED_H_ */