Search found 268 matches

by ESP_Piyush
Wed Mar 11, 2020 1:35 pm
Forum: ESP-IDF
Topic: `example/provisioning/manager`, no Internet connection error
Replies: 1
Views: 3219

Re: `example/provisioning/manager`, no Internet connection error

Hello, The mDNS warning is expected and can be ignored. If you explicitly start mDNS, appropriate Wi-Fi provisioning mDNS service will be announced. This is for future enhancements in the phone apps, for a smoother provisioning flow. The "No Internet Connection" message is also expected since your p...
by ESP_Piyush
Fri Feb 07, 2020 10:32 am
Forum: ESP IoT Solution
Topic: Uninitialized var request_id causing compiler failure for Release
Replies: 1
Views: 6095

Re: Uninitialized var request_id causing compiler failure for Release

Since that code is part of an external codebase, we cannot change it as of now. However, we have aded a fix to suppress that error. Going ahead, when we move to a newer azure-iot-sdk-c , we will ensure that the error is fixed in the actual source itself.
by ESP_Piyush
Mon Nov 18, 2019 8:26 am
Forum: ESP-IDF
Topic: Jumpstart : How to detect a BLE client connected ?
Replies: 6
Views: 7014

Re: Jumpstart : How to detect a BLE client connected ?

If you are using code from the example, then on boot up, if the device is already provisioned, it will not start the BLE, and instead connect to the network directly. However, for your other use wherein you want to have a time-out and the time-out should also check for "BLE client connectivity", the...
by ESP_Piyush
Fri Nov 15, 2019 9:25 am
Forum: ESP-IDF
Topic: Jumpstart : How to detect a BLE client connected ?
Replies: 6
Views: 7014

Re: Jumpstart : How to detect a BLE client connected ?

Hello,

We will check how the events which are currently being handled in esp-idf/components/protocomm/src/simple_ble/simple_ble.c can be exposed to applications. Meanwhile, what exactly is your use case?
by ESP_Piyush
Thu Oct 31, 2019 7:38 am
Forum: ESP-IDF
Topic: BLE provisioning
Replies: 2
Views: 4398

Re: BLE provisioning

Hello,

The softap_prov and ble_prov examples were added before the Wi-Fi scan feature was introduced. Please use the newer "manager" example for the scan feature (https://github.com/espressif/esp-idf/tr ... ng/manager).
by ESP_Piyush
Wed Oct 30, 2019 8:54 am
Forum: ESP-IDF
Topic: app_prov_get_wifi_state() returns "connecting" even after wifi is connected?
Replies: 3
Views: 4679

Re: app_prov_get_wifi_state() returns "connecting" even after wifi is connected?

Hello, Re-provisioning an ESP32 already connected to a network is not an intended use case for the Unified Wi-Fi provisioning component. You must explicitly reset the ESP32's saved Wi-Fi credentials and reboot it to restart provisioning. Hope this helps. If you specify your exact use case, I can che...
by ESP_Piyush
Thu Oct 17, 2019 9:33 am
Forum: ESP-IDF
Topic: v4.0-beta1 breaks esp-azure due to #include search order differences
Replies: 2
Views: 4050

Re: v4.0-beta1 breaks esp-azure due to #include search order differences

We have updated https://github.com/espressif/esp-azure a couple of days back so that it can now compile with IDF 4.0. Can you check with that?
by ESP_Piyush
Thu Oct 17, 2019 6:24 am
Forum: ESP-IDF
Topic: Protocomm Commands are not able to Decrypted by ESP32 During WIFI Provisioing using HTTPD
Replies: 3
Views: 4343

Re: Protocomm Commands are not able to Decrypted by ESP32 During WIFI Provisioing using HTTPD

Hello Nirav, We will check what the problem is, however, the solution proposed doesn't seem the right one. The server cannot change the socket id of an accepted socket. A change in the socket id can happen only if the client initiates a new HTTP connection. In that case, the secure session establish...