Anyone?
Is there a way to avoid the pairing dialog that pops up on ios when trying to connect to provision?
Search found 8 matches
- Thu Jan 26, 2023 9:52 pm
- Forum: ESP-IDF
- Topic: How to remove "Bluetooth Pairing Request" dialog during provisioning
- Replies: 2
- Views: 1520
- Thu Jan 12, 2023 8:21 pm
- Forum: ESP-IDF
- Topic: How to remove "Bluetooth Pairing Request" dialog during provisioning
- Replies: 2
- Views: 1520
How to remove "Bluetooth Pairing Request" dialog during provisioning
If I remember right, several version ago (currently on esp-idf 4.4.3), when I tried to provision over bluetooth, I never saw a pairing dialog. Now it shows up all the time.
I would like there to not be a pairing dialog during the provisioning process.
Is this possible?
I would like there to not be a pairing dialog during the provisioning process.
Is this possible?
- Sat Jan 23, 2021 7:49 pm
- Forum: ESP-IDF
- Topic: No way to capture and handle BT_BTC errors?
- Replies: 0
- Views: 1565
No way to capture and handle BT_BTC errors?
Is there any way to capture this event at the application layer to correctly handle it? BT_BTC: btc_gattc_cback transfer failed This problem occurs when a block of data spanning several packets is being transferred from a BT device to this ESP32 via notify. I believe it is because of a low signal or...
- Tue Nov 24, 2020 1:42 am
- Forum: ESP-IDF
- Topic: Is it possible to connect while scanning (ble)
- Replies: 0
- Views: 1918
Is it possible to connect while scanning (ble)
I am using 4.1. I add 10 macs to the whitelist, I scan and find the mac, then I connect fine BUT only when I stop scanning before connecting. Advertising: ble_scan_params.scan_type = BLE_SCAN_TYPE_PASSIVE; ble_scan_params.own_addr_type = BLE_ADDR_TYPE_PUBLIC; ble_scan_params.scan_filter_policy = BLE...
- Thu Oct 15, 2020 2:11 am
- Forum: ESP-IDF
- Topic: ESP32 DEV KIT C debug setup
- Replies: 3
- Views: 3977
Re: ESP32 DEV KIT C debug setup
Interesting. Is it possible to debug a devkitc board directly from USB via the Visual Studio plugin?
I am blown away that there isn't a simple set of instructions on how to debug a DEVKITC board. Nordic couldn't be any easier.
I am blown away that there isn't a simple set of instructions on how to debug a DEVKITC board. Nordic couldn't be any easier.
- Mon Oct 12, 2020 9:08 pm
- Forum: ESP-IDF
- Topic: ESP32 DEV KIT C debug setup
- Replies: 3
- Views: 3977
ESP32 DEV KIT C debug setup
Most of my recent experience is with Nordic chips which are easy to debug using the DK. I've been writing code using ESP-IDF and I'd like to setup a debugger. I've been to this link already: https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-guides/jtag-debugging/index.html#jtag-debuggi...
- Fri Sep 04, 2020 6:17 pm
- Forum: ESP-IDF
- Topic: wifi_prov_scheme_ble: bt_mem_release of classic BT failed 259
- Replies: 1
- Views: 3016
wifi_prov_scheme_ble: bt_mem_release of classic BT failed 259
I'm using 4.1 and I get that error after this sequence. My sdkconfig is: - Bluedroid dual mode - BLE Only - Everything (wifi bluetooth) running on Core 0 // INIT TCP/IP ESP_ERROR_CHECK(esp_netif_init()); // INIT EVENT LOOP ESP_ERROR_CHECK(esp_event_loop_create_default()); // REGISTER EVENT HANDLERS ...
- Wed Sep 02, 2020 12:51 am
- Forum: ESP-IDF
- Topic: BLE to WIFI Gateway
- Replies: 1
- Views: 2437
BLE to WIFI Gateway
Hello, I am using ESP-IDF v4.1 and want to make a bluetooth to wifi gateway. The idea is (and what is working so far): 1) Boot and check if provisioned, if not use the built in wifi_prov_mgr in BLE Mode 2) Add up to 10 devices to the whitelist and scan for advertisements 3) Hook up to AWS Iot to pub...