-
Notifications
You must be signed in to change notification settings - Fork 18
Open
Description
Hey all,
I can confirm that you have to use the same WiFi-Channel for ESPNow-Sender and ESPNow-to-WiFi-Gateways. If you have multiple routers with the same SSID (e.g. in university or company) and you always want to use the best WiFi (so no hardcoded channel) you have to try to send the message on each channel until you get a success reply.
- Gateway on random channel
`
channel = 1
send = false;
while(!send){
send = sendOnChannel(channel);
if(send){
break;
}else{
channel = channel % 13 + 1;
}
}
`
Metadata
Metadata
Assignees
Labels
No labels