Compare commits

...

2 Commits
v1.0.0 ... main

Author SHA1 Message Date
5eff18c653 style: typo 2025-05-24 07:06:48 +03:00
07efba785e doc: added links for frameworks 2025-05-19 20:13:00 +03:00
2 changed files with 3 additions and 3 deletions

View File

@ -2,8 +2,8 @@
## Tested on
1. ESP8266 RTOS_SDK v3.4
2. ESP32 ESP-IDF v5.4
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)
## 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("CD74HC4067 initialization completed successfully in %d bit mode.", (_is_8bit_work_mode == true) ? 8 : 4);
ZH_1602A_LOGI("1602A initialization completed successfully in %d bit mode.", (_is_8bit_work_mode == true) ? 8 : 4);
return ESP_OK;
}