Search found 16 matches

by hetal.panara82
Sun Jan 19, 2020 3:34 am
Forum: ESP-MDF
Topic: How to test ESP Mesh Network
Replies: 1
Views: 9169

How to test ESP Mesh Network

I have three ESP32 modules and I have made one of the module as fixed root node. Other two nodes should connect to root for sending request. I see that both the nodes are able to send http request and receive response. However I see that both the nodes are directly connecting to root node, but I wan...
by hetal.panara82
Mon Dec 09, 2019 4:14 am
Forum: ESP-IDF
Topic: ESP32 interface with Beacon
Replies: 0
Views: 1806

ESP32 interface with Beacon

Hi, I am developing application to interface with Beacon and send the available beacon information to cloud using ESP32. I have couple of questions, 1. Is interface to iBeacon and Eddystone protocol supported on ESP32? 2. Is it possible to have Beacon connected over bluetooth with ESP32 and at the s...
by hetal.panara82
Thu Oct 10, 2019 3:51 pm
Forum: General Discussion
Topic: Error when rename the example project
Replies: 2
Views: 3636

Re: Error when rename the example project

Clean also did not help.

Finally I followed as below,
1. Delete build directory
2. Rename the project in CMakeList and Makefile
3. execute make to build
4. Change the directory name (same as project name in my case)

It works then!
by hetal.panara82
Thu Oct 10, 2019 3:16 am
Forum: ESP-IDF
Topic: Way to get ethernet Packet capture
Replies: 1
Views: 2511

Re: Way to get ethernet Packet capture

Hello Experts,

Any pointers on the packet capture?

Thanks
/Hp
by hetal.panara82
Wed Oct 02, 2019 10:44 am
Forum: General Discussion
Topic: Error when rename the example project
Replies: 2
Views: 3636

Error when rename the example project

I am working on esp32 and have setup esp-mdf. I copied https_request example project and did make, it works fine. I did flash to esp32 module and all works fine. Now, I want to rename the example project to something else like "my_test". For this, 1. I deleted build directory 2. Changed the project ...
by hetal.panara82
Thu Sep 26, 2019 9:33 am
Forum: ESP-IDF
Topic: Way to get ethernet Packet capture
Replies: 1
Views: 2511

Way to get ethernet Packet capture

Hi,

I am working on ESP32. Trying to send data using https url but it is failing with error.

Is there a way to get network packet capture to debug the https network request and response?

Thanks
/Hp
by hetal.panara82
Thu Sep 26, 2019 2:09 am
Forum: ESP-IDF
Topic: ESP32: POST request over https without certificate
Replies: 5
Views: 14865

Re: ESP32: POST request over https without certificate

Tried with the suggest example, still facing the same issue.... static void https_rest() { esp_http_client_config_t config = { .url = "https://my-server-url.com/api/Test/TestCall/", .event_handler = _http_event_handler, //.cert_pem = howsmyssl_com_root_cert_pem_start, }; esp_http_client_handle_t cli...
by hetal.panara82
Wed Sep 25, 2019 2:24 am
Forum: ESP-IDF
Topic: ESP32: POST request over https without certificate
Replies: 5
Views: 14865

Re: ESP32: POST request over https without certificate

Hello, Yes, ESP is sending part. It sends data to server. I am referring "https_async" from https://github.com/espressif/esp-idf/blob/master/examples/protocols/esp_http_client/main/esp_http_client_example.c The example works fine with the test url in method but if I change the url to my server url w...
by hetal.panara82
Tue Sep 24, 2019 5:29 pm
Forum: ESP-IDF
Topic: ESP32: POST request over https without certificate
Replies: 5
Views: 14865

ESP32: POST request over https without certificate

Hi,

I am using ESP32

I am looking for sample example for sending the data using POST method over HTTPS without certificate.
How can I send post request without specifying the certificate?
Is there a way to mark the connection insecure?
Appreciate any pointers/sample regarding the issue.

Thanks
/Hp
by hetal.panara82
Mon Aug 19, 2019 4:26 pm
Forum: ESP-IDF
Topic: Stopping esp timer generates exception
Replies: 0
Views: 2588

Stopping esp timer generates exception

I am working with ESP32 Dev kit V1. As I load example program, esp_timer from package it works fine and I see one shot timer and periodic timer working fine as expected. However if I create a task and initialize timer (copy paste from example), I see timer is started as expected (based on the logs i...