Search found 8 matches

by imovit
Wed Aug 01, 2018 8:21 pm
Forum: ESP-IDF
Topic: Is Lolin32 CE and FCC compliant or just the SOC Transceiver?
Replies: 4
Views: 5352

Re: Is Lolin32 CE and FCC compliant or just the SOC Transceiver?

It is clear that WROOM-32 is certified because it has the logos. But the LOLIN32 board could not be. Hence my question to the board.
I thought it was a ready-to-market board but may be it is not. :-(

I have to find an alternative.

Thanks a lot
by imovit
Tue Jul 31, 2018 6:14 pm
Forum: ESP-IDF
Topic: Is Lolin32 CE and FCC compliant or just the SOC Transceiver?
Replies: 4
Views: 5352

Re: Is Lolin32 CE and FCC compliant or just the SOC Transceiver?

Which module? Do you mean the transceiver module or the whole board? Imagine I just want to implement a gateway BLE->Wifi. The board will be used as is (just an USB cable for power) Is the whole board certified (Lolin32) or just the transceiver SOC? Are you the manufacturer? Certificate publishing w...
by imovit
Tue Jul 31, 2018 12:44 pm
Forum: ESP-IDF
Topic: esp_http_client: how to post using json?
Replies: 3
Views: 10128

Re: esp_http_client: how to post using json?

Finally "done"...
I was creating a destroying all the rest things per request. o, the first run well but the other ones do not .
Now, recycling all the things and changing only the post data, it works...
Thanks a lot
by imovit
Tue Jul 31, 2018 8:47 am
Forum: ESP-IDF
Topic: Is Lolin32 CE and FCC compliant or just the SOC Transceiver?
Replies: 4
Views: 5352

Is Lolin32 CE and FCC compliant or just the SOC Transceiver?

Hi I know that lolin32 is retired... I probably will use the new boards in order to implement a 'commercial' project part. As I can not get into the product website, my question is: Is the entire board CE and FCC compliant (ready to market) or only the soc transceiver is CE and FCC compliant? Lookin...
by imovit
Mon Jul 30, 2018 11:08 pm
Forum: ESP-IDF
Topic: esp_http_client: how to post using json?
Replies: 3
Views: 10128

esp_http_client: how to post using json?

Hi I can issue a post action with success but body arrives to rest server as text and then is not well interpreted. I need to send body as json. I did ... const char *post_data = "{\"channel\":\"A\",\"value\":\"X\"}"; esp_http_client_set_method(client, HTTP_METHOD_POST); esp_http_client_set_post_fie...
by imovit
Mon Jul 30, 2018 1:11 pm
Forum: ESP-IDF
Topic: Any lib for invoking REST API?
Replies: 2
Views: 6861

Re: Any lib for invoking REST API?

Thanks!
esp_http_client seems to be the right thing

Now I am having a small big problem:

When using platformio, how to include the .h file?
I tryied

#include "esp_http_client.h"

and

#include "esp_http_client/include/esp_http_client.h"

but without success

Thank you
by imovit
Sun Jul 29, 2018 10:22 pm
Forum: ESP-IDF
Topic: Any lib for invoking REST API?
Replies: 2
Views: 6861

Any lib for invoking REST API?

Hi
IS there any lib or sample code that alows to call Post verb passing json?
Thanks a lot
by imovit
Sun Jul 29, 2018 1:58 pm
Forum: ESP32 Arduino
Topic: How to change task watchdog timeout?
Replies: 1
Views: 6093

How to change task watchdog timeout?

Hello I am using lolin32 listening to BLE and posting to REST (WiFi). Hence, sometimes I get : Task watchdog got triggered. The following tasks did not reset the watchdog in time: - IDLE (CPU 0) Tasks currently running: CPU 0: wifi CPU 1: IDLE I have put already some delay(500) in the post routine b...