Don't send discovery message if encrypting is disabled in espnow

This commit is contained in:
Oleg Kalachev
2026-07-20 19:01:38 +03:00
parent 81721abf91
commit df14a5678f
+1 -1
View File
@@ -58,7 +58,7 @@ void sendWiFi(const uint8_t *buf, int len) {
espnow.write(buf, len);
static Rate discovery(2);
if (discovery) espnowBroadcast.write((const uint8_t *)"flix", 4); // broadcast message to help finding this device
if (espnow.isEncrypted() && discovery) espnowBroadcast.write((const uint8_t *)"flix", 4); // broadcast message to help finding this device
return;
}