2 Commits
v3.0.0 ... main

Author SHA1 Message Date
faec97f6a6 doc: changed example 2025-06-15 14:14:27 +03:00
168315bb26 doc: changed function description 2025-06-14 17:54:31 +03:00
2 changed files with 4 additions and 4 deletions

View File

@@ -96,7 +96,7 @@ void app_main(void)
for (;;)
{
zh_160x_set_cursor(&lcd_160x_handle, 0, 0);
zh_160x_print_char(&lcd_160x_handle, "LCD 1602A");
zh_160x_print_char(&lcd_160x_handle, "LCD 160X");
zh_160x_set_cursor(&lcd_160x_handle, 1, 0);
zh_160x_print_char(&lcd_160x_handle, "Hello World!");
vTaskDelay(5000 / portTICK_PERIOD_MS);

View File

@@ -33,7 +33,7 @@ extern "C"
* @brief Sets the cursor to a specific position on the LCD.
*
* @param[in] handle Pointer to unique PCF8574 handle.
* @param[in] row The row number (0 or 1).
* @param[in] row The row number.
* @param[in] col The column number (015).
*
* @return ESP_OK if success or an error code otherwise.
@@ -75,7 +75,7 @@ extern "C"
* @brief Displays a progress bar on a specific row of the LCD.
*
* @param[in] handle Pointer to unique PCF8574 handle.
* @param[in] row The row number (0 or 1).
* @param[in] row The row number.
* @param[in] progress The progress percentage (0100).
*
* @return ESP_OK if success or an error code otherwise.
@@ -86,7 +86,7 @@ extern "C"
* @brief Clears a specific row on the LCD.
*
* @param[in] handle Pointer to unique PCF8574 handle.
* @param[in] row The row number (0 or 1).
* @param[in] row The row number.
*
* @return ESP_OK if success or an error code otherwise.
*/