继电器就是开关功能,以下是UDP数据包发送软件测试结果

下面是我加入开关的配置页面

日志截图

以下是test.py代码
#!/usr/bin/python
import socket
import sys
import codecs
UDP_IP = '172.16.11.188'
UDP_PORT = 5000
INET_ADDR = (UDP_IP,UDP_PORT)
if action == "on1":
message_to_send = "6f6e31"
if action == "off1":
message_to_send = "6f666631"
if action == "on2":
message_to_send = "6f6e32"
if action == "off2":
message_to_send = "6f666632"
message_to_send = codecs.decode(message_to_send, "hex_codec")
sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
sock.sendto(message_to_send, INET_ADDR)