Skip to content

Commit 0221705

Browse files
committed
Update UDP_Client.py
1 parent 4b681c9 commit 0221705

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Firmware/Tools/UDP_Client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ def client(server, port):
77
sock.bind((server, port))
88
while True:
99
payload = sock.recvfrom(1024)
10-
print(payload[0].decode(), end='')
10+
print(payload[0].decode('latin1'), end='')
1111

1212
if __name__ == "__main__":
1313

0 commit comments

Comments
 (0)