led_display.h 1021 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /** @file
  2. * @brief actions led display APIs.
  3. */
  4. /*
  5. * Copyright (c) 2017 Intel Corporation
  6. *
  7. * SPDX-License-Identifier: Apache-2.0
  8. */
  9. #ifndef __LED_DISPLAY_H
  10. #define __LED_DISPLAY_H
  11. /**
  12. * @brief actions led display APIs
  13. * @defgroup actions ledisplay APIs
  14. * @{
  15. */
  16. #include <stdio.h>
  17. #include <zephyr/types.h>
  18. #include <stdbool.h>
  19. #include <toolchain.h>
  20. #include <drivers/pwm.h>
  21. #ifdef __cplusplus
  22. extern "C" {
  23. #endif
  24. typedef enum {
  25. LED_OP_OFF,
  26. LED_OP_ON,
  27. LED_OP_BREATH,
  28. LED_OP_BLINK,
  29. }led_op_code;
  30. typedef struct
  31. {
  32. u32_t pulse:14;
  33. u32_t period:15;
  34. u32_t op_code:2;
  35. u32_t start_state:1;
  36. }led_pixel_value;
  37. #define LED_COLOR_ON (LED_OP_ON << 29)
  38. #define LED_COLOR_OFF (LED_OP_OFF << 29)
  39. #define LED_COLOR_BREATH (LED_OP_BREATH << 29)
  40. #define LED_COLOR_FLASH(period, pulse, start_state) (start_state << 31 | (LED_OP_BLINK << 29) | (period << 14) | pulse)
  41. int led_draw_pixel(int led_id, u32_t color, pwm_breath_ctrl_t *ctrl);
  42. #ifdef __cplusplus
  43. }
  44. #endif
  45. /**
  46. * @}
  47. */
  48. #endif /* __LED_DISPLAY_H */