From 0aa6e9c5adc08f58fce42bd700fef1bfc9797047 Mon Sep 17 00:00:00 2001 From: Stedd Date: Sun, 22 Oct 2023 14:30:14 +0200 Subject: [PATCH] Forgot to call PackUdpData after refactor --- UDP.ino | 1 + 1 file changed, 1 insertion(+) diff --git a/UDP.ino b/UDP.ino index 7c97938..1cd44f4 100644 --- a/UDP.ino +++ b/UDP.ino @@ -15,6 +15,7 @@ void UdpInit() { } void UdpLoop() { + PackUdpData(); udp.writeTo(data, sizeof(data), multicastIP, port); }