We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b681c9 commit 0221705Copy full SHA for 0221705
Firmware/Tools/UDP_Client.py
@@ -7,7 +7,7 @@ def client(server, port):
7
sock.bind((server, port))
8
while True:
9
payload = sock.recvfrom(1024)
10
- print(payload[0].decode(), end='')
+ print(payload[0].decode('latin1'), end='')
11
12
if __name__ == "__main__":
13
0 commit comments