Hello,
I am facing exactly same issue.
I am using Arduino IDE to code ESP-32 module. Currently I am using BLE functionality to communicate with our mobile app.
There seems to be limitation on number of BLE services which can be created. Even If I create more than 7 services, only 6 are visible.
I ...
Search found 8 matches
- Tue Nov 09, 2021 2:10 pm
- Forum: ESP32 Arduino
- Topic: BLE: limited number of services and characteristics
- Replies: 6
- Views: 18277
- Mon Aug 17, 2020 3:52 pm
- Forum: ESP32 Arduino
- Topic: Automatic bootloader mode in ESP32_dev_kitc_v4
- Replies: 1
- Views: 6107
Re: Automatic bootloader mode in ESP32_dev_kitc_v4
Hello Everyone,
Just an update, after hours of debugging, I came across solution.
Added 10uf capacitor between EN and GND pin. Now I can upload firmware without pressing boot button.
Just an update, after hours of debugging, I came across solution.
Added 10uf capacitor between EN and GND pin. Now I can upload firmware without pressing boot button.
- Mon Aug 17, 2020 9:45 am
- Forum: ESP32 Arduino
- Topic: Working With Wifi and BLE (Problem)
- Replies: 3
- Views: 7357
Re: Working With Wifi and BLE (Problem)
I had similar issue.
See if this helps you: https://www.esp32.com/viewtopic.php?f=19&t=16747
See if this helps you: https://www.esp32.com/viewtopic.php?f=19&t=16747
- Mon Aug 17, 2020 9:34 am
- Forum: ESP32 Arduino
- Topic: Automatic bootloader mode in ESP32_dev_kitc_v4
- Replies: 1
- Views: 6107
Automatic bootloader mode in ESP32_dev_kitc_v4
Hello Everyone,
I am new to ESP32 and recently purchased ESP32_dev_kitc_v4.
I am using arduino IDE with esp32 core provided.
Query:
I need to press boot button everytime to start firmware upload. However, the adafruit huzzah feather esp32 module (https://www.adafruit.com/product/3405) doesn't ...
I am new to ESP32 and recently purchased ESP32_dev_kitc_v4.
I am using arduino IDE with esp32 core provided.
Query:
I need to press boot button everytime to start firmware upload. However, the adafruit huzzah feather esp32 module (https://www.adafruit.com/product/3405) doesn't ...
- Tue Aug 04, 2020 4:47 am
- Forum: ESP32 Arduino
- Topic: Wifi BLE coexistence using Arduino IDE
- Replies: 6
- Views: 14690
Re: Wifi BLE coexistence using Arduino IDE
I tested this, I am unable to make POST call.advertisedDevice.getScan()->stop();
But when I use "btStop()" at the start of post call, it works. Problem is if I use btStart(), esp32 resets. If I don't use btStart() then esp32 is unable to receive data via BLE as its not advertised.
- Fri Jul 31, 2020 3:38 pm
- Forum: ESP32 Arduino
- Topic: Wifi BLE coexistence using Arduino IDE
- Replies: 6
- Views: 14690
Re: Wifi BLE coexistence using Arduino IDE
I tried btstop() and btstart(). It works properly, however ESP32 resets everytime btstart() method is called.
- Fri Jul 31, 2020 1:26 pm
- Forum: ESP32 Arduino
- Topic: Wifi BLE coexistence using Arduino IDE
- Replies: 6
- Views: 14690
Re: Wifi BLE coexistence using Arduino IDE
Thanks for the response :)
You can also try to stop scan during wifi connection.
Can I use the function mentioned below?
btStop(); or
advertisedDevice.getScan()->stop();
If you set it also to 0x100 then radio is 100% occupied by bluetooth and no time for wifi.
Understood. I will try lesser ...
You can also try to stop scan during wifi connection.
Can I use the function mentioned below?
btStop(); or
advertisedDevice.getScan()->stop();
If you set it also to 0x100 then radio is 100% occupied by bluetooth and no time for wifi.
Understood. I will try lesser ...
- Thu Jul 30, 2020 11:27 am
- Forum: ESP32 Arduino
- Topic: Wifi BLE coexistence using Arduino IDE
- Replies: 6
- Views: 14690
Wifi BLE coexistence using Arduino IDE
Hello Everyone,
I am new to Esp32 and currently using ESP32 NodeMCU-ESP32 with arduino IDE. Please forgive me if I have posted it in incorrect forum.
I am working on application which requires co-existence of BLE and Wifi.
Here's the data flow;
ESP32 act as Master -> connects to BLE device ...
I am new to Esp32 and currently using ESP32 NodeMCU-ESP32 with arduino IDE. Please forgive me if I have posted it in incorrect forum.
I am working on application which requires co-existence of BLE and Wifi.
Here's the data flow;
ESP32 act as Master -> connects to BLE device ...