Lines Matching full:display
2 * @brief BBC micro:bit display APIs.
15 * @brief BBC micro:bit display APIs
16 * @defgroup mb_display BBC micro:bit display APIs
32 * @brief Representation of a BBC micro:bit display image.
51 * @brief Display mode.
59 /** Display images sequentially, one at a time. */
62 /** Display images by scrolling. */
65 /* Display flags, i.e. modifiers to the chosen mode */
99 * @brief Opaque struct representing the BBC micro:bit display.
105 * https://lancaster-university.github.io/microbit-docs/ubit/display/
110 * @brief Get a pointer to the BBC micro:bit display object.
112 * @return Pointer to display object.
117 * @brief Display one or more images on the BBC micro:bit LED display.
120 * sequentially on the micro:bit display. The call is asynchronous, i.e.
121 * the processing of the display happens in the background. If there is
125 * @param disp Display object.
136 * @brief Print a string of characters on the BBC micro:bit LED display.
139 * scrolling fashion to the display.
141 * The call is asynchronous, i.e. the processing of the display happens in
145 * @param disp Display object.
157 * @brief Stop the ongoing display of an image.
159 * @param disp Display object.