Search found 4 matches

by Esp_Eugen
Mon Apr 08, 2024 10:30 am
Forum: ESP-IDF
Topic: ESP32 C3 mini. Where are the bytes from?
Replies: 3
Views: 1479

Re: ESP32 C3 mini. Where are the bytes from?

Thanks guys! The problem was in the function ble_indicate, or rather in passing parameters to it static void ble_indicate(int *value, uint8_t len, uint16_t attr_handle) { esp_err_t error; system_infos.timerTime_sec = 0; if (gatts_if_for_indicate == ESP_GATT_IF_NONE) { printf("cannot indicate because...
by Esp_Eugen
Sun Apr 07, 2024 1:44 pm
Forum: ESP-IDF
Topic: ESP32 C3 mini. Where are the bytes from?
Replies: 3
Views: 1479

ESP32 C3 mini. Where are the bytes from?

Hello. I have implemented a project with 4 characteristics. three of them update the data via notify. I get extra bytes in the message. I can't figure out where they come from. I am sending only 4 bytes in the program.
by Esp_Eugen
Mon Feb 26, 2024 7:25 pm
Forum: ESP-IDF
Topic: Multiple server BLE connections
Replies: 0
Views: 416

Multiple server BLE connections

Hello everyone. Implemented the BLE server by example. 1 user service 4 characteristics. Everything works fine, but with only one connection. I need several users to be able to connect to my server. In the configuration file, the settings are as follows: CONFIG_BT_GATTC_CONNECT_RETRY_COUNT=3 CONFIG_...
by Esp_Eugen
Sun Feb 18, 2024 5:26 pm
Forum: ESP-IDF
Topic: Get characteristic UUID
Replies: 1
Views: 446

Get characteristic UUID

Hi all!
I recently started studying ESP32 and ran into the following problem: I created 3 characteristics. How can I determine the UUYD characteristics that they want to read or to which data has been written?