esp32-tutorial
esp32-tutorial copied to clipboard
Hello, nice example! I just have an issue that the mqtt automatic reconnection is not working. I think it is the while loop that prevents the disconnect callback so the...
Fixed a Bug in the New mDNS
Hello. I'm using Your example 23_ap_http (HTTP server + SoftAP mode) and tries to run it on ESP-WROOM-32, but when i compiles it using IDF Stable 3.2 there were some...
Hi Luca, You have a memory leak here: ```cJSON *json = cJSON_Parse(rcv_buffer);``` You need to call the following line to free it: ```cJSON_Delete(json);``` Reference document for the cJSON library is...
I have a problem using the function from your example. ``` esp_http_client_config_t ota_client_config = { .url = file->valuestring, .cert_pem = (char *)server_cert_pem_start }; esp_err_t ret = esp_https_ota(&ota_client_config); ``` It returns...
Hello, With 3.1.2 esp-idf version, I'm struggling to connect iPhones to Wifi AP while it is working fine with Androids' phones. Did you already face this issue ? Any tricks...
current alreadyDiscovered function only looks for a one byte difference, this way checks for all possible combinations and does it faster with memcmp. discovered_devices_num is the number of discovered devices,...
i fix the Bug with the new Version of mDNS ;) i check this Code, and for me it works well..
Hello. First of all thank you for the informative guides you made on the I2C topic. I'm following this in particular right now: http://www.lucadentella.it/en/2017/10/09/esp32-23-i2c-basic/ and I got a solid understanding...