1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-11 10:29:01 +00:00
trezor-firmware/send_udp.py
2016-09-27 17:24:00 +02:00

10 lines
196 B
Python
Executable File

#!/usr/bin/python
import socket
UDP_IP = '127.0.0.1'
UDP_PORT = 21324
MESSAGE = b'Hello, World!'
sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
sock.sendto(MESSAGE, (UDP_IP, UDP_PORT))