Compare commits

..

No commits in common. "main" and "v1.0.0" have entirely different histories.
main ... v1.0.0

2 changed files with 3 additions and 3 deletions

View File

@ -2,8 +2,8 @@
## Tested on
1. [ESP8266 RTOS_SDK v3.4](https://docs.espressif.com/projects/esp8266-rtos-sdk/en/latest/index.html#)
2. [ESP32 ESP-IDF v5.4](https://docs.espressif.com/projects/esp-idf/en/release-v5.4/esp32/index.html)
1. ESP8266 RTOS_SDK v3.4
2. ESP32 ESP-IDF v5.4
## Note

View File

@ -45,7 +45,7 @@ esp_err_t zh_1602a_init(const zh_1602a_init_config_t *config)
ZH_1602A_CHECK(err == ESP_OK, ESP_FAIL, "1602A initialization failed. GPIO initialization failed.");
_zh_1602a_lcd_init();
_is_initialized = true;
ZH_1602A_LOGI("1602A initialization completed successfully in %d bit mode.", (_is_8bit_work_mode == true) ? 8 : 4);
ZH_1602A_LOGI("CD74HC4067 initialization completed successfully in %d bit mode.", (_is_8bit_work_mode == true) ? 8 : 4);
return ESP_OK;
}