Closed as duplicate of#200
Description
My application scans available WiFi networks for a specific SSID ("xxxxxx") and I need to be able to connect to the node with the best RSSI.
However, WiFiNINA lacks built-in support for handling mesh networks with the same SSID and selecting the optimal node based on signal strength or channel.
Here’s an overview of my current approach:
- Scan with
WiFi.scanNetworks()
. - Filter for my SSID and pick the best RSSI (e.g., -50 dBm over -90 dBm).
- Connect using
WiFi.begin()
.
For mesh networks (multiple APs, same SSID), I need the library to:
- Identify all nodes under one SSID.
- A way for me to connect to the node with the strongest RSSI.
I believe it’d greatly enhance WiFiNINA for IoT use cases like mine.
I’d be happy to provide more details or test any beta versions.