Search found 4 matches
- Mon Sep 10, 2018 9:07 pm
- Forum: Showcase
- Topic: Video animation with ESP32 - example
- Replies: 5
- Views: 13376
- Fri Aug 10, 2018 7:41 am
- Forum: ESP-IDF
- Topic: NVS use in BLE
- Replies: 0
- Views: 3013
NVS use in BLE
Hello, I need your help to find the exact location of the following problem:
I have two implementations of the same function. Connect a BLE Server, activate notifications, write to a Characteristic, get Notifications back.
One is implemented by using the API from N.Kolban (-> App_K), the other by ...
I have two implementations of the same function. Connect a BLE Server, activate notifications, write to a Characteristic, get Notifications back.
One is implemented by using the API from N.Kolban (-> App_K), the other by ...
- Fri Aug 03, 2018 10:35 am
- Forum: General Discussion
- Topic: Error: "BT: bta_gattc_cmpl_cback unknown conn_id = 1, ignore data"
- Replies: 1
- Views: 4438
- Fri Aug 03, 2018 9:05 am
- Forum: ESP-IDF
- Topic: BLE UUID128
- Replies: 6
- Views: 13019
Re: BLE UUID128
why not:
static esp_bt_uuid_t remote_filter_char_uuid = {
.len = ESP_UUID_LEN_128,
.uuid = {
.uuid128 = {
REMOTE_NOTIFY_CHAR_UUID[0],
REMOTE_NOTIFY_CHAR_UUID[1],
REMOTE_NOTIFY_CHAR_UUID[2],
REMOTE_NOTIFY_CHAR_UUID[3],
REMOTE_NOTIFY_CHAR_UUID[4],
REMOTE_NOTIFY_CHAR_UUID[5],
REMOTE_NOTIFY ...
static esp_bt_uuid_t remote_filter_char_uuid = {
.len = ESP_UUID_LEN_128,
.uuid = {
.uuid128 = {
REMOTE_NOTIFY_CHAR_UUID[0],
REMOTE_NOTIFY_CHAR_UUID[1],
REMOTE_NOTIFY_CHAR_UUID[2],
REMOTE_NOTIFY_CHAR_UUID[3],
REMOTE_NOTIFY_CHAR_UUID[4],
REMOTE_NOTIFY_CHAR_UUID[5],
REMOTE_NOTIFY ...