摘要: CRC16 python实现 crc16_IBM def crc16_IBM(data): # parameter data :'01 00 00 80 00 00 00 ..... 00 ce c2 b6 c8 33 38 32 35 a1 e6' if isinstance(data, str) 阅读全文
posted @ 2021-11-22 16:08 Orientation 阅读(1117) 评论(0) 推荐(0) 编辑
摘要: 客户端 # -*- coding: UTF-8 -*- import socket import time socket.setdefaulttimeout(10) # 设置socket 接收超时 s = socket.socket() s.connect_ex(('101.37.*.*', 900 阅读全文
posted @ 2021-11-22 13:32 Orientation 阅读(32) 评论(0) 推荐(0) 编辑