Piyush Shah
Piyush Shah
A port for ESP32/ESP32S2 has been made available here: https://github.com/espressif/esp-apple-homekit-adk
@ESP3235 , the error message you shared indicates that you are trying to update the thing shadow and not just publishing to some generic topic. The default max size of...
@asurti9 , the entire Just in Time Registration/Provisioning is independent of the MQTT client side implementation. From the client's perspective, you still have a private key, a client certificate and...
@akshayvernekar , we recently found an issue which was causing an incorrect default value of task watchdog timer, leading to such crashes. It has been fixed here: https://github.com/espressif/ESP8266_RTOS_SDK/commit/f03e81b0927fd0eabfc996692c01e440aa251d63 Please check...
@romocitto88 , we will check this, but calling `vTaskDelete()` directly isn't really recommended, especially when the task being deleted could be in the middle of something. A better approach would...
@knarfmeister99 , were you able to get the correct mbedtls?
@enerdata , is this also resolved, considering that https://github.com/espressif/esp-azure/issues/59 is closed?
The code in app_wifi.c was taken from the esp idf Wi-Fi station example. Ofcourse, the logic of trying just 5 times at the beginning and also unsubscribing from the events...
@AQIBRIAZ , if you are looking for OTA over MQTT, then we do not have any example for that. Normally, we prefer hosting the firmware image somewhere (say AWS S3)...
@AQIBRIAZ , there are two possible options 1. Use AWS IoT certificates to authorise the device to access other AWS services (https://docs.aws.amazon.com/iot/latest/developerguide/authorizing-direct-aws.html). This seems a bit complicated though, and I...