Merge pull request #12581 from ascillato/patch-1

KNX: Fix Telegrams UDP Overrun
This commit is contained in:
Theo Arends 2021-07-06 16:33:12 +02:00 committed by GitHub
commit 34346187e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -80,6 +80,7 @@ void ESPKNXIP::send(address_t const &receiver, knx_command_type_t ct, uint8_t da
udp.beginPacketMulticast(MULTICAST_IP, MULTICAST_PORT, WiFi.localIP());
udp.write(buf, len);
udp.endPacket();
delay(1);
}