grove_lcd.h 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. /* grove_lcd.h - Public API for the Grove RGB LCD device */
  2. /*
  3. * Copyright (c) 2015 Intel Corporation
  4. *
  5. * SPDX-License-Identifier: Apache-2.0
  6. */
  7. #ifndef ZEPHYR_INCLUDE_DISPLAY_GROVE_LCD_H_
  8. #define ZEPHYR_INCLUDE_DISPLAY_GROVE_LCD_H_
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12. /**
  13. * @brief Display Drivers
  14. * @defgroup display_interfaces Display Drivers
  15. * @{
  16. * @}
  17. */
  18. /**
  19. * @brief Grove display APIs
  20. * @defgroup grove_display Grove display APIs
  21. * @ingroup display_interfaces
  22. * @{
  23. */
  24. #define GROVE_LCD_NAME "GLCD"
  25. /**
  26. * @brief Send text to the screen
  27. *
  28. * @param port Pointer to device structure for driver instance.
  29. * @param data the ASCII text to display
  30. * @param size the length of the text in bytes
  31. */
  32. void glcd_print(const struct device *port, char *data, uint32_t size);
  33. /**
  34. * @brief Set text cursor position for next additions
  35. *
  36. * @param port Pointer to device structure for driver instance.
  37. * @param col the column for the cursor to be moved to (0-15)
  38. * @param row the row it should be moved to (0 or 1)
  39. */
  40. void glcd_cursor_pos_set(const struct device *port, uint8_t col, uint8_t row);
  41. /**
  42. * @brief Clear the current display
  43. *
  44. * @param port Pointer to device structure for driver instance.
  45. */
  46. void glcd_clear(const struct device *port);
  47. /* Defines for the GLCD_CMD_DISPLAY_SWITCH options */
  48. #define GLCD_DS_DISPLAY_ON (1 << 2)
  49. #define GLCD_DS_DISPLAY_OFF (0 << 2)
  50. #define GLCD_DS_CURSOR_ON (1 << 1)
  51. #define GLCD_DS_CURSOR_OFF (0 << 1)
  52. #define GLCD_DS_BLINK_ON (1 << 0)
  53. #define GLCD_DS_BLINK_OFF (0 << 0)
  54. /**
  55. * @brief Function to change the display state.
  56. * @details This function provides the user the ability to change the state
  57. * of the display as per needed. Controlling things like powering on or off
  58. * the screen, the option to display the cursor or not, and the ability to
  59. * blink the cursor.
  60. *
  61. * @param port Pointer to device structure for driver instance.
  62. * @param opt An 8bit bitmask of GLCD_DS_* options.
  63. *
  64. */
  65. void glcd_display_state_set(const struct device *port, uint8_t opt);
  66. /**
  67. * @brief return the display feature set associated with the device
  68. *
  69. * @param port the Grove LCD to get the display features set
  70. *
  71. * @return the display feature set associated with the device.
  72. */
  73. uint8_t glcd_display_state_get(const struct device *port);
  74. /* Defines for the GLCD_CMD_INPUT_SET to change text direction */
  75. #define GLCD_IS_SHIFT_INCREMENT (1 << 1)
  76. #define GLCD_IS_SHIFT_DECREMENT (0 << 1)
  77. #define GLCD_IS_ENTRY_LEFT (1 << 0)
  78. #define GLCD_IS_ENTRY_RIGHT (0 << 0)
  79. /**
  80. * @brief Function to change the input state.
  81. * @details This function provides the user the ability to change the state
  82. * of the text input. Controlling things like text entry from the left or
  83. * right side, and how far to increment on new text
  84. *
  85. * @param port Pointer to device structure for driver instance.
  86. * @param opt A bitmask of GLCD_IS_* options
  87. *
  88. */
  89. void glcd_input_state_set(const struct device *port, uint8_t opt);
  90. /**
  91. * @brief return the input set associated with the device
  92. *
  93. * @param port the Grove LCD to get the input features set
  94. *
  95. * @return the input set associated with the device.
  96. */
  97. uint8_t glcd_input_state_get(const struct device *port);
  98. /* Defines for the LCD_FUNCTION_SET */
  99. #define GLCD_FS_8BIT_MODE (1 << 4)
  100. #define GLCD_FS_ROWS_2 (1 << 3)
  101. #define GLCD_FS_ROWS_1 (0 << 3)
  102. #define GLCD_FS_DOT_SIZE_BIG (1 << 2)
  103. #define GLCD_FS_DOT_SIZE_LITTLE (0 << 2)
  104. /* Bits 0, 1 are not defined for this register */
  105. /**
  106. * @brief Function to set the functional state of the display.
  107. * @param port Pointer to device structure for driver instance.
  108. * @param opt A bitmask of GLCD_FS_* options
  109. *
  110. * @details This function provides the user the ability to change the state
  111. * of the display as per needed. Controlling things like the number of rows,
  112. * dot size, and text display quality.
  113. */
  114. void glcd_function_set(const struct device *port, uint8_t opt);
  115. /**
  116. * @brief return the function set associated with the device
  117. *
  118. * @param port the Grove LCD to get the functions set
  119. *
  120. * @return the function features set associated with the device.
  121. */
  122. uint8_t glcd_function_get(const struct device *port);
  123. /* Available color selections */
  124. #define GROVE_RGB_WHITE 0
  125. #define GROVE_RGB_RED 1
  126. #define GROVE_RGB_GREEN 2
  127. #define GROVE_RGB_BLUE 3
  128. /**
  129. * @brief Set LCD background to a predefined color
  130. * @param port Pointer to device structure for driver instance.
  131. * @param color One of the predefined color options
  132. */
  133. void glcd_color_select(const struct device *port, uint8_t color);
  134. /**
  135. * @brief Set LCD background to custom RGB color value
  136. *
  137. * @param port Pointer to device structure for driver instance.
  138. * @param r A numeric value for the red color (max is 255)
  139. * @param g A numeric value for the green color (max is 255)
  140. * @param b A numeric value for the blue color (max is 255)
  141. */
  142. void glcd_color_set(const struct device *port, uint8_t r, uint8_t g,
  143. uint8_t b);
  144. /**
  145. * @brief Initialize the Grove LCD panel
  146. *
  147. * @param port Pointer to device structure for driver instance.
  148. *
  149. * @return Returns 0 if all passes
  150. */
  151. int glcd_initialize(const struct device *port);
  152. /**
  153. * @}
  154. */
  155. #ifdef __cplusplus
  156. }
  157. #endif
  158. #endif /* ZEPHYR_INCLUDE_DISPLAY_GROVE_LCD_H_ */