mb_display.h 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. /** @file
  2. * @brief BBC micro:bit display APIs.
  3. */
  4. /*
  5. * Copyright (c) 2017 Intel Corporation
  6. *
  7. * SPDX-License-Identifier: Apache-2.0
  8. */
  9. #ifndef ZEPHYR_INCLUDE_DISPLAY_MB_DISPLAY_H_
  10. #define ZEPHYR_INCLUDE_DISPLAY_MB_DISPLAY_H_
  11. /**
  12. * @brief BBC micro:bit display APIs
  13. * @defgroup mb_display BBC micro:bit display APIs
  14. * @ingroup display_interfaces
  15. * @{
  16. */
  17. #include <stdio.h>
  18. #include <zephyr/types.h>
  19. #include <stdbool.h>
  20. #include <sys/util.h>
  21. #include <toolchain.h>
  22. #ifdef __cplusplus
  23. extern "C" {
  24. #endif
  25. /**
  26. * @brief Representation of a BBC micro:bit display image.
  27. *
  28. * This struct should normally not be used directly, rather created
  29. * using the MB_IMAGE() macro.
  30. */
  31. struct mb_image {
  32. union {
  33. struct {
  34. uint8_t c1:1,
  35. c2:1,
  36. c3:1,
  37. c4:1,
  38. c5:1;
  39. } r[5];
  40. uint8_t row[5];
  41. };
  42. };
  43. /**
  44. * @brief Display mode.
  45. *
  46. * First 16 bits are reserved for modes, last 16 for flags.
  47. */
  48. enum mb_display_mode {
  49. /** Default mode ("single" for images, "scroll" for text). */
  50. MB_DISPLAY_MODE_DEFAULT,
  51. /** Display images sequentially, one at a time. */
  52. MB_DISPLAY_MODE_SINGLE,
  53. /** Display images by scrolling. */
  54. MB_DISPLAY_MODE_SCROLL,
  55. /* Display flags, i.e. modifiers to the chosen mode */
  56. /** Loop back to the beginning when reaching the last image. */
  57. MB_DISPLAY_FLAG_LOOP = BIT(16),
  58. };
  59. /**
  60. * @def MB_IMAGE
  61. * @brief Generate an image object from a given array rows/columns.
  62. *
  63. * This helper takes an array of 5 rows, each consisting of 5 0/1 values which
  64. * correspond to the columns of that row. The value 0 means the pixel is
  65. * disabled whereas a 1 means the pixel is enabled.
  66. *
  67. * The pixels go from left to right and top to bottom, i.e. top-left corner
  68. * is the first row's first value, top-right is the first rows last value,
  69. * and bottom-right corner is the last value of the last (5th) row. As an
  70. * example, the following would create a smiley face image:
  71. *
  72. * <pre>
  73. * static const struct mb_image smiley = MB_IMAGE({ 0, 1, 0, 1, 0 },
  74. * { 0, 1, 0, 1, 0 },
  75. * { 0, 0, 0, 0, 0 },
  76. * { 1, 0, 0, 0, 1 },
  77. * { 0, 1, 1, 1, 0 });
  78. * </pre>
  79. *
  80. * @param _rows Each of the 5 rows represented as a 5-value column array.
  81. *
  82. * @return Image bitmap that can be passed e.g. to mb_display_image().
  83. */
  84. #define MB_IMAGE(_rows...) { .r = { _rows } }
  85. /**
  86. * @brief Opaque struct representing the BBC micro:bit display.
  87. *
  88. * For more information see the following links:
  89. *
  90. * https://www.microbit.co.uk/device/screen
  91. *
  92. * https://lancaster-university.github.io/microbit-docs/ubit/display/
  93. */
  94. struct mb_display;
  95. /**
  96. * @brief Get a pointer to the BBC micro:bit display object.
  97. *
  98. * @return Pointer to display object.
  99. */
  100. struct mb_display *mb_display_get(void);
  101. /**
  102. * @brief Display one or more images on the BBC micro:bit LED display.
  103. *
  104. * This function takes an array of one or more images and renders them
  105. * sequentially on the micro:bit display. The call is asynchronous, i.e.
  106. * the processing of the display happens in the background. If there is
  107. * another image being displayed it will be canceled and the new one takes
  108. * over.
  109. *
  110. * @param disp Display object.
  111. * @param mode One of the MB_DISPLAY_MODE_* options.
  112. * @param duration Duration how long to show each image (in milliseconds), or
  113. * @ref SYS_FOREVER_MS.
  114. * @param img Array of image bitmaps (struct mb_image objects).
  115. * @param img_count Number of images in 'img' array.
  116. */
  117. void mb_display_image(struct mb_display *disp, uint32_t mode, int32_t duration,
  118. const struct mb_image *img, uint8_t img_count);
  119. /**
  120. * @brief Print a string of characters on the BBC micro:bit LED display.
  121. *
  122. * This function takes a printf-style format string and outputs it in a
  123. * scrolling fashion to the display.
  124. *
  125. * The call is asynchronous, i.e. the processing of the display happens in
  126. * the background. If there is another image or string being displayed it
  127. * will be canceled and the new one takes over.
  128. *
  129. * @param disp Display object.
  130. * @param mode One of the MB_DISPLAY_MODE_* options.
  131. * @param duration Duration how long to show each character (in milliseconds),
  132. * or @ref SYS_FOREVER_MS.
  133. * @param fmt printf-style format string
  134. * @param ... Optional list of format arguments.
  135. */
  136. __printf_like(4, 5) void mb_display_print(struct mb_display *disp,
  137. uint32_t mode, int32_t duration,
  138. const char *fmt, ...);
  139. /**
  140. * @brief Stop the ongoing display of an image.
  141. *
  142. * @param disp Display object.
  143. */
  144. void mb_display_stop(struct mb_display *disp);
  145. #ifdef __cplusplus
  146. }
  147. #endif
  148. /**
  149. * @}
  150. */
  151. #endif /* ZEPHYR_INCLUDE_DISPLAY_MB_DISPLAY_H_ */