Wanting to roam between 2 APs with the same SSID #1092
-
I'm using an ESP32S3 module that is grabbing an Opus stream via UDP. I'm trying to grab this stream off a WiFi mesh network. This network has 2 APs with the same SSID. I am getting a lot of glitches as if the device keeps trying to grab both APs. This happens even if the ESP32 is right beside one of the APs. I found a version of the Arduino libraries that integrates roaming for ESP32s. Wondering if there is a way to integrate this into my code which uses audio tools . Below is my current code. /**
#include "AudioTools.h" const char *ssid = "NETGEAR41"; Serial.println("starting I2S..."); cfgi.buffer_size = 1024; out.begin(cfgi);
} |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 2 replies
-
This is the repository with the roaming enabled. Wondering if it's possible to integrate this into my program above.https://github.com/Roobuck-RnD/arduino-esp32-roaming/ |
Beta Was this translation helpful? Give feedback.
-
It seems to me that audio tools has all the wifi stuff embedded in it and isn't using the arduino WiFi.h for example. I figured I would somehow have to take stuff from the roaming library and integrate it into the audio tools source tree? |
Beta Was this translation helpful? Give feedback.
-
Sorry,
Just so I'm clear. So you are saying I can just replace the traditional
Arduino core with the one in the link above and add your library to that
and the program should use the roaming version?
Thanks
…On Mon, Dec 11, 2023 at 5:29 PM Phil Schatzmann ***@***.***> wrote:
Not at all: just do the login in your sketch
—
Reply to this email directly, view it on GitHub
<#1092 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AHBBBCQMYFDRWMWHDSG5JCTYI6CNPAVCNFSM6AAAAABAOCXWPCVHI2DSMVQWIX3LMV43SRDJONRXK43TNFXW4Q3PNVWWK3TUHM3TQMRUHA4TS>
.
You are receiving this because you authored the thread.Message ID:
<pschatzmann/arduino-audio-tools/repo-discussions/1092/comments/7824899@
github.com>
|
Beta Was this translation helpful? Give feedback.
-
Yes, and I am also saying that if you do not like the optional login functionality, you are free to login into the Wifi by using your login logic in your sketch. |
Beta Was this translation helpful? Give feedback.
-
Great, thank you so much for clarifying this.
…On Tue, Dec 12, 2023 at 12:40 AM Phil Schatzmann ***@***.***> wrote:
Yes, and I am also saying that if you do not like the *optional login*
functionality, you are free to login into the Wifi by using your login
logic in your sketch.
—
Reply to this email directly, view it on GitHub
<#1092 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AHBBBCXYWHK6PC7OZH7QPCLYI7U57AVCNFSM6AAAAABAOCXWPCVHI2DSMVQWIX3LMV43SRDJONRXK43TNFXW4Q3PNVWWK3TUHM3TQMRWHA4DM>
.
You are receiving this because you authored the thread.Message ID:
<pschatzmann/arduino-audio-tools/repo-discussions/1092/comments/7826886@
github.com>
|
Beta Was this translation helpful? Give feedback.
Where do you see any challenge?