Search found 19 matches
- Sun Aug 03, 2025 12:03 pm
- Forum: ESP-IDF
- Topic: Creating a mesh network without a router connected
- Replies: 2
- Views: 3226
Re: Creating a mesh network without a router connected
Hi, did you resolve this issue? Is it possible to share your solution? Thank you in advance
- Sun Dec 01, 2024 6:44 am
- Forum: ESP32 Arduino
- Topic: Dynamic lambdas pass to attachInterrupt
- Replies: 3
- Views: 3347
Re: Dynamic lambdas pass to attachInterrupt
I'm not sure a lambda really lends itself to making an ISR. The interrupt has to be attached to each pin you would want a response from, so you will have to call attachInterrupt multiple times in any case, which would mean multiple copies of the function resident in memory. Maybe you just want to ...
- Sat Nov 30, 2024 2:40 am
- Forum: ESP32 Arduino
- Topic: Dynamic lambdas pass to attachInterrupt
- Replies: 3
- Views: 3347
Dynamic lambdas pass to attachInterrupt
Hello,
I would like to have a common function that receives any PIN number as argument, then create a common ISR using attachInterrupt on that pin.
I decided to use lambda for dynamic purpose. However, I got stucked at how to pass the pin number to callback function.
For more details, please see ...
I would like to have a common function that receives any PIN number as argument, then create a common ISR using attachInterrupt on that pin.
I decided to use lambda for dynamic purpose. However, I got stucked at how to pass the pin number to callback function.
For more details, please see ...
- Sat Nov 30, 2024 2:35 am
- Forum: ESP32 Arduino
- Topic: Bluetooth A2DP Source failed to re-connect to Airpods headset
- Replies: 3
- Views: 4751
Re: Bluetooth A2DP Source failed to re-connect to Airpods headset
Nothing so far.I have the exact same issue. Has anyone found a solution?
- Mon Jun 17, 2024 8:56 am
- Forum: ESP32 Arduino
- Topic: ESP32 SPP connection dropped after 3 seconds
- Replies: 4
- Views: 2640
Re: ESP32 SPP connection dropped after 3 seconds
Hi tanmath, yes it can be captured. I followed the instructions in this Stackoverflow answer .
I'll copy them here in case the link ever goes bad:
To capture Bluetooth traffic using Wireshark you will need the BTP software package, you can get it here . Install the package and find the files ...
- Sun Jun 16, 2024 5:29 am
- Forum: ESP32 Arduino
- Topic: ESP 32 Keep rebooting/resetting
- Replies: 2
- Views: 3277
Re: ESP 32 Keep rebooting/resetting
Firstly, try Blink example if it works. After that, minimize your code to check where the problem is. Post your code if possible.
- Sun Jun 16, 2024 5:26 am
- Forum: ESP32 Arduino
- Topic: ESP32 SPP connection dropped after 3 seconds
- Replies: 4
- Views: 2640
Re: ESP32 SPP connection dropped after 3 seconds
Since you already figured it out, I'm here to ask for your help. Could you show me how to configure Wireshark to capture Bluetooth packages? I'm using Bluetooth classic, can it be captured? Thank you.
- Tue May 28, 2024 8:25 am
- Forum: ESP32 Arduino
- Topic: Dual SPI on ESP32-WROOM-32E
- Replies: 2
- Views: 1415
Re: Dual SPI on ESP32-WROOM-32E
Since CS, MOSI and SCLK are working on your scope, I doubt the issue is from your stepper. I suggest removing SD card out and check only stepper if it works firstly.
- Tue May 28, 2024 6:41 am
- Forum: ESP32 Arduino
- Topic: Bluetooth A2DP Source failed to re-connect to Airpods headset
- Replies: 3
- Views: 4751
Bluetooth A2DP Source failed to re-connect to Airpods headset
Hello,
I'm working on a project which involes esp32 works as an Audio source, connects to Bluetooth (bt) headset/speaker.
The requirement is that, esp32 first scans and pairs to bt headset then transfers the audio source.
After that, it will need to automatically reconnect to headset in either ...
I'm working on a project which involes esp32 works as an Audio source, connects to Bluetooth (bt) headset/speaker.
The requirement is that, esp32 first scans and pairs to bt headset then transfers the audio source.
After that, it will need to automatically reconnect to headset in either ...
- Tue Jan 02, 2024 3:41 am
- Forum: ESP-IDF
- Topic: How to change sample rate A2DP source to headphone
- Replies: 2
- Views: 2590
Re: How to change sample rate A2DP source to headphone
Hello, does anyone have any idea?