|
| void | glcd_print (const struct device *dev, char *data, uint32_t size) |
| | Send text to the screen.
|
| |
| void | glcd_cursor_pos_set (const struct device *dev, uint8_t col, uint8_t row) |
| | Set text cursor position for next additions.
|
| |
| void | glcd_clear (const struct device *dev) |
| | Clear the current display.
|
| |
| void | glcd_display_state_set (const struct device *dev, uint8_t opt) |
| | Function to change the display state.
|
| |
| uint8_t | glcd_display_state_get (const struct device *dev) |
| | return the display feature set associated with the device
|
| |
| void | glcd_input_state_set (const struct device *dev, uint8_t opt) |
| | Function to change the input state.
|
| |
| uint8_t | glcd_input_state_get (const struct device *dev) |
| | return the input set associated with the device
|
| |
| void | glcd_function_set (const struct device *dev, uint8_t opt) |
| | Function to set the functional state of the display.
|
| |
| uint8_t | glcd_function_get (const struct device *dev) |
| | return the function set associated with the device
|
| |
| void | glcd_color_select (const struct device *dev, uint8_t color) |
| | Set LCD background to a predefined color.
|
| |
| void | glcd_color_set (const struct device *dev, uint8_t r, uint8_t g, uint8_t b) |
| | Set LCD background to custom RGB color value.
|
| |