This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| В ESP-IDF для OTA використовується власна система — `esp_ota_ops.h`. Ось як це працює: | |
| **Базовий OTA flow в ESP-IDF:** | |
| ```c | |
| #include "esp_ota_ops.h" | |
| #include "esp_http_client.h" | |
| void ota_task(void *pvParameter) { | |
| esp_ota_handle_t ota_handle; |