Files
Table-Python/Test/udp_test.py
2026-04-28 12:14:58 +02:00

8 lines
208 B
Python

import socket, struct, time
sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
sock.sendto(
struct.pack("<4sBIQB", b"HAND", 1, 123, int(time.time()*1000), 0),
("127.0.0.1", 9000)
)
print("sent")