led_strip.h 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. /*
  2. * Copyright (c) 2017 Linaro Limited
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief Public API for controlling linear strips of LEDs.
  9. *
  10. * This library abstracts the chipset drivers for individually
  11. * addressable strips of LEDs.
  12. */
  13. #ifndef ZEPHYR_INCLUDE_DRIVERS_LED_STRIP_H_
  14. #define ZEPHYR_INCLUDE_DRIVERS_LED_STRIP_H_
  15. /**
  16. * @brief LED Strip Interface
  17. * @defgroup led_strip_interface LED Strip Interface
  18. * @ingroup io_interfaces
  19. * @{
  20. */
  21. #include <zephyr/types.h>
  22. #include <device.h>
  23. #ifdef __cplusplus
  24. extern "C" {
  25. #endif
  26. /**
  27. * @brief Color value for a single RGB LED.
  28. *
  29. * Individual strip drivers may ignore lower-order bits if their
  30. * resolution in any channel is less than a full byte.
  31. */
  32. struct led_rgb {
  33. #ifdef CONFIG_LED_STRIP_RGB_SCRATCH
  34. /*
  35. * Pad/scratch space needed by some drivers. Users should
  36. * ignore.
  37. */
  38. uint8_t scratch;
  39. #endif
  40. /** Red channel */
  41. uint8_t r;
  42. /** Green channel */
  43. uint8_t g;
  44. /** Blue channel */
  45. uint8_t b;
  46. };
  47. /**
  48. * @typedef led_api_update_rgb
  49. * @brief Callback API for updating an RGB LED strip
  50. *
  51. * @see led_strip_update_rgb() for argument descriptions.
  52. */
  53. typedef int (*led_api_update_rgb)(const struct device *dev,
  54. struct led_rgb *pixels,
  55. size_t num_pixels);
  56. /**
  57. * @typedef led_api_update_channels
  58. * @brief Callback API for updating channels without an RGB interpretation.
  59. *
  60. * @see led_strip_update_channels() for argument descriptions.
  61. */
  62. typedef int (*led_api_update_channels)(const struct device *dev,
  63. uint8_t *channels,
  64. size_t num_channels);
  65. /**
  66. * @brief LED strip driver API
  67. *
  68. * This is the mandatory API any LED strip driver needs to expose.
  69. */
  70. struct led_strip_driver_api {
  71. led_api_update_rgb update_rgb;
  72. led_api_update_channels update_channels;
  73. };
  74. /**
  75. * @brief Update an LED strip made of RGB pixels
  76. *
  77. * Important:
  78. * This routine may overwrite @a pixels.
  79. *
  80. * This routine immediately updates the strip display according to the
  81. * given pixels array.
  82. *
  83. * @param dev LED strip device
  84. * @param pixels Array of pixel data
  85. * @param num_pixels Length of pixels array
  86. * @return 0 on success, negative on error
  87. * @warning May overwrite @a pixels
  88. */
  89. static inline int led_strip_update_rgb(const struct device *dev,
  90. struct led_rgb *pixels,
  91. size_t num_pixels) {
  92. const struct led_strip_driver_api *api =
  93. (const struct led_strip_driver_api *)dev->api;
  94. return api->update_rgb(dev, pixels, num_pixels);
  95. }
  96. /**
  97. * @brief Update an LED strip on a per-channel basis.
  98. *
  99. * Important:
  100. * This routine may overwrite @a channels.
  101. *
  102. * This routine immediately updates the strip display according to the
  103. * given channels array. Each channel byte corresponds to an
  104. * individually addressable color channel or LED. Channels
  105. * are updated linearly in strip order.
  106. *
  107. * @param dev LED strip device
  108. * @param channels Array of per-channel data
  109. * @param num_channels Length of channels array
  110. * @return 0 on success, negative on error
  111. * @warning May overwrite @a channels
  112. */
  113. static inline int led_strip_update_channels(const struct device *dev,
  114. uint8_t *channels,
  115. size_t num_channels) {
  116. const struct led_strip_driver_api *api =
  117. (const struct led_strip_driver_api *)dev->api;
  118. return api->update_channels(dev, channels, num_channels);
  119. }
  120. #ifdef __cplusplus
  121. }
  122. #endif
  123. /**
  124. * @}
  125. */
  126. #endif /* ZEPHYR_INCLUDE_DRIVERS_LED_STRIP_H_ */