Display Interface APIs

Grove LCD Display

group grove_display

Grove display APIs.

Defines

GROVE_LCD_NAME
GLCD_DS_DISPLAY_ON
GLCD_DS_DISPLAY_OFF
GLCD_DS_CURSOR_ON
GLCD_DS_CURSOR_OFF
GLCD_IS_SHIFT_INCREMENT
GLCD_IS_SHIFT_DECREMENT
GLCD_IS_ENTRY_LEFT
GLCD_IS_ENTRY_RIGHT
GLCD_FS_8BIT_MODE
GLCD_FS_ROWS_2
GLCD_FS_ROWS_1
GLCD_FS_DOT_SIZE_BIG
GLCD_FS_DOT_SIZE_LITTLE
GROVE_RGB_WHITE
GROVE_RGB_RED
GROVE_RGB_GREEN
GROVE_RGB_BLUE

Functions

void glcd_print(struct device *port, char *data, u32_t size)

Send text to the screen.

Parameters
  • port: Pointer to device structure for driver instance.
  • data: the ASCII text to display
  • size: the length of the text in bytes

void glcd_cursor_pos_set(struct device *port, u8_t col, u8_t row)

Set text cursor position for next additions.

Parameters
  • port: Pointer to device structure for driver instance.
  • col: the column for the cursor to be moved to (0-15)
  • row: the row it should be moved to (0 or 1)

void glcd_clear(struct device *port)

Clear the current display.

Parameters
  • port: Pointer to device structure for driver instance.

void glcd_display_state_set(struct device *port, u8_t opt)

Function to change the display state.

This function provides the user the ability to change the state of the display as per needed. Controlling things like powering on or off the screen, the option to display the cursor or not, and the ability to blink the cursor.

Parameters
  • port: Pointer to device structure for driver instance.
  • opt: An 8bit bitmask of GLCD_DS_* options.

u8_t glcd_display_state_get(struct device *port)

return the display feature set associated with the device

Return
the display feature set associated with the device.
Parameters
  • port: the Grove LCD to get the display features set

void glcd_input_state_set(struct device *port, u8_t opt)

Function to change the input state.

This function provides the user the ability to change the state of the text input. Controlling things like text entry from the left or right side, and how far to increment on new text

Parameters
  • port: Pointer to device structure for driver instance.
  • opt: A bitmask of GLCD_IS_* options

u8_t glcd_input_state_get(struct device *port)

return the input set associated with the device

Return
the input set associated with the device.
Parameters
  • port: the Grove LCD to get the input features set

void glcd_function_set(struct device *port, u8_t opt)

Function to set the functional state of the display.

This function provides the user the ability to change the state of the display as per needed. Controlling things like the number of rows, dot size, and text display quality.

Parameters
  • port: Pointer to device structure for driver instance.
  • opt: A bitmask of GLCD_FS_* options

u8_t glcd_function_get(struct device *port)

return the function set associated with the device

Return
the function features set associated with the device.
Parameters
  • port: the Grove LCD to get the functions set

void glcd_color_select(struct device *port, u8_t color)

Set LCD background to a predefined color.

Parameters
  • port: Pointer to device structure for driver instance.
  • color: One of the predefined color options

void glcd_color_set(struct device *port, u8_t r, u8_t g, u8_t b)

Set LCD background to custom RGB color value.

Parameters
  • port: Pointer to device structure for driver instance.
  • r: A numeric value for the red color (max is 255)
  • g: A numeric value for the green color (max is 255)
  • b: A numeric value for the blue color (max is 255)

int glcd_initialize(struct device *port)

Initialize the Grove LCD panel.

Return
Returns 0 if all passes
Parameters
  • port: Pointer to device structure for driver instance.

BBC micro:bit Display

group mb_display

BBC micro:bit display APIs.

Defines

MB_IMAGE(_rows...)

Generate an image object from a given array rows/columns.

This helper takes an array of 5 rows, each consisting of 5 0/1 values which correspond to the columns of that row. The value 0 means the pixel is disabled whereas a 1 means the pixel is enabled.

The pixels go from left to right and top to bottom, i.e. top-left corner is the first row’s first value, top-right is the first rows last value, and bottom-right corner is the last value of the last (5th) row. As an example, the following would create a smiley face image:

Return
Image bitmap that can be passed e.g. to mb_display_image().
Parameters
  • _rows: Each of the 5 rows represented as a 5-value column array.

Enums

enum mb_display_mode

Display mode.

First 16 bits are reserved for modes, last 16 for flags.

Values:

MB_DISPLAY_MODE_DEFAULT

Default mode (“single” for images, “scroll” for text).

MB_DISPLAY_MODE_SINGLE

Display images sequentially, one at a time.

MB_DISPLAY_MODE_SCROLL

Display images by scrolling.

MB_DISPLAY_FLAG_LOOP = BIT(16)

Loop back to the beginning when reaching the last image.

Functions

struct mb_display *mb_display_get(void)

Get a pointer to the BBC micro:bit display object.

Return
Pointer to display object.

void mb_display_image(struct mb_display *disp, u32_t mode, s32_t duration, const struct mb_image *img, u8_t img_count)

Display one or more images on the BBC micro:bit LED display.

This function takes an array of one or more images and renders them sequentially on the micro:bit display. The call is asynchronous, i.e. the processing of the display happens in the background. If there is another image being displayed it will be canceled and the new one takes over.

Parameters
  • disp: Display object.
  • mode: One of the MB_DISPLAY_MODE_* options.
  • duration: Duration how long to show each image (in milliseconds).
  • img: Array of image bitmaps (struct mb_image objects).
  • img_count: Number of images in ‘img’ array.

void mb_display_print(struct mb_display *disp, u32_t mode, s32_t duration, const char *fmt, ...)

Print a string of characters on the BBC micro:bit LED display.

This function takes a printf-style format string and outputs it in a scrolling fashion to the display.

The call is asynchronous, i.e. the processing of the display happens in the background. If there is another image or string being displayed it will be canceled and the new one takes over.

Parameters
  • disp: Display object.
  • mode: One of the MB_DISPLAY_MODE_* options.
  • duration: Duration how long to show each character (in milliseconds).
  • fmt: printf-style format string
  • ...: Optional list of format arguments.

void mb_display_stop(struct mb_display *disp)

Stop the ongoing display of an image.

Parameters
  • disp: Display object.

struct mb_image
#include <mb_display.h>

Representation of a BBC micro:bit display image.

This struct should normally not be used directly, rather created using the MB_IMAGE() macro.