From af1ec1630e093024b9564695fe145c16f17174ac Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Thu, 16 Oct 2025 16:04:06 -0700 Subject: [PATCH] Update udp.py --- modules/udp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/udp.py b/modules/udp.py index ae0362c..e214468 100644 --- a/modules/udp.py +++ b/modules/udp.py @@ -27,7 +27,7 @@ def initalize_mudp(): mudpInterface = UDPPacketStream(MCAST_GRP, MCAST_PORT, key=KEY) print(f"MUDP Interface initialized with multicast group", MCAST_GRP, "port", MCAST_PORT) node.node_id, node.long_name, node.short_name = "!deadbeef", "UDP Test", "UDP" - node.channel, node.key = "LongFast", "AQ==" + node.channel, node.key = "LongFast", KEY conn.setup_multicast(MCAST_GRP, MCAST_PORT) def on_recieve(packet: mesh_pb2.MeshPacket, addr=None):