Search found 2228 matches

by chegewara
Mon Apr 15, 2024 2:23 am
Forum: ESP-IDF
Topic: Publishing Messages in Mesh Network
Replies: 5
Views: 1640

Re: Publishing Messages in Mesh Network

Hi, its not that i dont want to help you, but i believe it will be faster and with better results to you when you start from scratch. - grab espressif example - in custom callback (esp_ble_mesh_register_custom_model_callback) just print logs for event and opcode to see what you are receiving and to ...
by chegewara
Fri Apr 12, 2024 6:14 pm
Forum: ESP-IDF
Topic: Multi client ble mesh
Replies: 13
Views: 6669

Re: Multi client ble mesh

It would be best to describe:
- example code or source code you are using
- problems and/or issues you have
- steps you tried to make it work, including provisioner used to provisioning
- any extra info which can be helpful
by chegewara
Thu Apr 11, 2024 4:46 pm
Forum: Hardware
Topic: BLE 5.0 or 5.3 stack needed in ESP Wroom 32 E
Replies: 3
Views: 359

Re: BLE 5.0 or 5.3 stack needed in ESP Wroom 32 E

You should read that news.
BLE 5.0 certification is due to ble mesh support. There is no long range, 2mbit PHY etc. Those are only available in newer chips like S3, C3, H2.
by chegewara
Thu Apr 11, 2024 4:41 pm
Forum: ESP-IDF
Topic: Publishing Messages in Mesh Network
Replies: 5
Views: 1640

Re: Publishing Messages in Mesh Network

First, I don't understand why Sensor Data doesn't match the Message field. Also, what is this warning message about outbound bearer? I thought that 0xFFFF refers to all nodes in the network, but when I try to handle the publish message in the client code, it acts like no message has been received a...
by chegewara
Thu Apr 11, 2024 4:32 pm
Forum: General Discussion
Topic: Issue with ESP32 OTA Connection to AWS S3
Replies: 4
Views: 1227

Re: Issue with ESP32 OTA Connection to AWS S3

Thank you for your input. While I understand the concern about ensuring the WiFi connection is fully established before initiating OTA, I've verified that the WiFi connection is indeed stable and operational. Despite this, I'm still encountering the "ESP HTTPS OTA Begin failed" error. Are there any...
by chegewara
Fri Apr 05, 2024 6:28 am
Forum: ESP-IDF
Topic: Publishing Messages in Mesh Network
Replies: 5
Views: 1640

Re: Publishing Messages in Mesh Network

It is very simple, just compare both functions: esp_err_t esp_ble_mesh_server_model_send_msg(esp_ble_mesh_model_t *model, esp_ble_mesh_msg_ctx_t *ctx, uint32_t opcode, uint16_t length, uint8_t *data) { if (model == NULL || ctx == NULL || ctx->net_idx == ESP_BLE_MESH_KEY_UNUSED || ctx->app_idx == ESP...
by chegewara
Wed Apr 03, 2024 12:30 pm
Forum: ESP-IDF
Topic: ESP-IDF: ESP32S3 DFU when USB CDC is active
Replies: 3
Views: 1022

Re: ESP-IDF: ESP32S3 DFU when USB CDC is active

Its how USB library in arduino is prepared.
If you enable DFU then additional endpoint is added to your code.
by chegewara
Wed Apr 03, 2024 12:29 pm
Forum: Hardware
Topic: Is it possible to reduce RF transmiting power on ESP32 to such a low level ...
Replies: 10
Views: 1894

Re: Is it possible to reduce RF transmiting power on ESP32 to such a low level ...

It all depends what is the area on which all the devices will be placed. 100+ wifi APs its a lot and if you dont implement it really good all will be stick to the same channel. It is hell a lot of noise and RSSI wont be reliable most likely. If you add people with bluetooth devices around (just gues...
by chegewara
Wed Apr 03, 2024 12:21 pm
Forum: Showcase
Topic: ESP32 USB DFU Bootloader
Replies: 2
Views: 1507

Re: ESP32 USB DFU Bootloader

I am wondering when espressif start advertising ESP32 as USB capable, like they did with bluetooth and after adding ble mesh ESP32 become bluetooth 5.0 certified. :?:
by chegewara
Wed Apr 03, 2024 9:05 am
Forum: Hardware
Topic: Is it possible to reduce RF transmiting power on ESP32 to such a low level ...
Replies: 10
Views: 1894

Re: Is it possible to reduce RF transmiting power on ESP32 to such a low level ...

In your case i would just make softAP ssid based on MAC address, so every device would have different SSID and RFID sticker on it or even better with QR code. Sure, its not best solution if you have 100 devices, but you can easy write app on smartphone which can read RFID or QR code and connect that...