Search found 2 matches

by fkremer
Fri Jul 03, 2020 10:57 pm
Forum: ESP-IDF
Topic: Ble Mesh Pub/Sub Example
Replies: 4
Views: 7006

Re: Ble Mesh Pub/Sub Example

Hello everyone, hello Juanchu98,

I'm on the same situation like Juanchu98.
Can someone explain the initial steps or provide an example for pub/sub in ble mesh?

Thank you in advance
Frank
by fkremer
Thu Jun 25, 2020 10:55 am
Forum: ESP-IDF
Topic: HTTP client response data corrupted
Replies: 7
Views: 12095

Re: HTTP client response data corrupted

Hi, i had a same problem as described above, so i've managed with it by setting buffer size of client large enough, By default it will be just 512 bytes esp_http_client_config_t config = {}; config.url = reqInfo.url.c_str(); config.is_async = false; config.timeout_ms = reqInfo.timeoutMs; config.buf...