Search found 8 matches
- Fri Mar 25, 2022 4:13 am
- Forum: General Discussion
- Topic: Can ESP32- WROVER-IE be programmed to use BLE without connecting to external MCU?
- Replies: 1
- Views: 1480
Can ESP32- WROVER-IE be programmed to use BLE without connecting to external MCU?
Is there any example program which uses BLE features with out using external MCU and tx/rx some data using UART.
- Tue Feb 08, 2022 9:16 am
- Forum: General Discussion
- Topic: Range of esp32-wrover module without external antenna?
- Replies: 1
- Views: 2673
Range of esp32-wrover module without external antenna?
May i know if any one tested the BLE-range(distance) of ESP32-worver-ie as server and with out connecting the external antenna
- Tue Feb 01, 2022 9:49 am
- Forum: General Discussion
- Topic: esp_ble_gap_set_device_name does not update the name
- Replies: 8
- Views: 9593
Re: esp_ble_gap_set_device_name does not update the name
by using advertisement data we can update name, its enough for connection. 2) 0x02, 0x01, 0x06, tells about flags in 0x06 - Bit 0 :Indicates LE Limited Discoverable mode Bit 1:Indicates LE General Discoverable mode Bit 2:Indicates whether BR/EDR is not supported . Bit 3:Indicates whether LE and BR/E...
- Tue Feb 01, 2022 9:41 am
- Forum: General Discussion
- Topic: esp_ble_gap_set_device_name does not update the name
- Replies: 8
- Views: 9593
Re: esp_ble_gap_set_device_name does not update the name
https://www.bluetooth.com/specification ... d-numbers/
follow above link and see generic access profile for advertisement types.
Advertisement data helps the client to know about the device link name, services, flags...
follow above link and see generic access profile for advertisement types.
Advertisement data helps the client to know about the device link name, services, flags...
- Tue Feb 01, 2022 5:53 am
- Forum: General Discussion
- Topic: esp_ble_gap_set_device_name does not update the name
- Replies: 8
- Views: 9593
Re: esp_ble_gap_set_device_name does not update the name
static uint8_t ext_adv_raw_data[] = { 0x02, 0x01, 0x06, 0x02, 0x0a, 0xeb, 0x03, 0x03, 0xab, 0xcd, 0x11, 0X09, 'E', 'S', 'P', '_', 'B', 'L', 'E', '5', '0', '_', 'S', 'E', 'R', 'V', 'E', 'R', }; you can find the advertisement raw data like above, in that array based on your required name change the le...
- Mon Jan 31, 2022 10:12 am
- Forum: General Discussion
- Topic: esp_ble_gap_set_device_name does not update the name
- Replies: 8
- Views: 9593
Re: esp_ble_gap_set_device_name does not update the name
Try to change name in BLE advertisement data, you will see name change in light blue application after connection.
- Mon Jan 31, 2022 7:54 am
- Forum: General Discussion
- Topic: Can esp32- wrover-ie can be programmed to use ble with out connecting to external mcu?
- Replies: 2
- Views: 3364
Re: Can esp32- wrover-ie can be programmed to use ble with out connecting to external mcu?
Thanks for your replay ,
Is there any example which uses BLE features with out using external MCU and send some data using UART.
Is there any example which uses BLE features with out using external MCU and send some data using UART.
- Thu Jan 27, 2022 6:18 am
- Forum: General Discussion
- Topic: Can esp32- wrover-ie can be programmed to use ble with out connecting to external mcu?
- Replies: 2
- Views: 3364
Can esp32- wrover-ie can be programmed to use ble with out connecting to external mcu?
I am using esp32-Wrover-IE for developing, downloaded provided BIN files and connected UART1 to external MCU for BLE application.
now my question is, is there any way to use MODULE itself for BLE application(Server) without external MCU
now my question is, is there any way to use MODULE itself for BLE application(Server) without external MCU