本文主要是介绍国产温箱热策AH-662控制代码(TCP/IP通信模式),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
以下Python代码经实测验证OK,只要编写客户端(温箱端)的socket通信代码即可,服务器端(PC端)不需要。
import socketclass TempOver():'''该程序仅用于控制国产温箱热策AH-662'''def __init__(self,ipAddr):ip_port = (ipAddr, 8000)self.client = socket.socket()self.client.connect(ip_port)def decTo4hex(self,decNum):'''将十进制正负整数转换为4位十六进制数,用于设定温箱温度值'''if decNum < 0:strHexNum = hex(decNum%65536) #负数else:strHexNum = hex(decNum) #正数'''因为需要转换成4位十六进制数,加上字符串前面两个符号'0x'之后,需要补足到6位,所以,不足6位需要在前面补'0'。负数转换成十六进制之后都为6位(算上'0x'),所以,负数不需要在前面补'f'。'''strLen = len(strHexNum)strHexNewNum = '0' * (6 - strLen) + strHexNum[2:] # 去掉原字符串的前面两个符号'0x',并补'0'return strHexNewNumdef numHexToDec(self,str_HEX):'''将从温箱读出的4位十六进制读数转换成十进制数'''if str_HEX[0] == 'f':decNum = (int(str_HEX,16)-65536)/100 # 负数else:decNum = int(str_HEX,16)/100 # 正数return decNumdef tempSet(self,tempSet_DEC):'''设定温箱温度,温度范围-40°~150°,低于-40°无效'''tempSet_HEX = self.decTo4hex(tempSet_DEC * 100) # 乘100是该型号温箱的指令要求data_input = "00 00 00 00 00 06 01 06 00 02 " + tempSet_HEX # 设定温箱温度的固定指令格式self.client.send(bytes.fromhex(data_input))self.client.recv(1024)def tempGet(self):# 发送读当前温度值的指令data_input = "00 00 00 00 00 06 01 03 00 00 00 01"self.client.send(bytes.fromhex(data_input))data_output = self.client.recv(1024)# 将温箱读取到的多字节十六进制取出代表温度读书的最后两个字节str_Temp_HEX = bytes.hex(data_output)[-4:]# 将十六进制正负数转换成十进制数tempRead = self.numHexToDec(str_Temp_HEX)print("温箱当前温度为:", tempRead, "摄氏度")return tempReaddef startRun(self):data_input = "00 00 00 00 00 06 01 05 00 00 ff 00" # 启动self.client.send(bytes.fromhex(data_input))# 启动之后清空指令缓存空间,为温箱下一次接受指令做好准备self.client.recv(1024)def stopRun(self):data_input = "00 00 00 00 00 06 01 05 00 01 ff 00" # 停止self.client.send(bytes.fromhex(data_input))def close(self):self.client.close()if __name__ == '__main__':# 建立和温箱的连接tempIP_Addr = "192.168.52.11"tempX = TempOver(tempIP_Addr)# 启动温箱运行tempX.startRun()while True:if input("是否结束运行?(y/n):") == 'y':breakelse:# 设定温箱温度 必须大于等于-40°,小于-40°则设置失效tempSet = int(input("请输入温箱温度℃:"))if tempSet < -40:tempSet = int(input("请重新输入温箱温度℃(必须大于-40):"))tempX.tempSet(tempSet)while True:if input('是否查询当前温度?(y/n):') == 'y':# 查询温箱温度tempX.tempGet()else:break# 停止温箱运行tempX.stopRun()# 关闭温箱连接tempX.close()
串口调试软件SSCOM也可进行控制,选择端口号为“TCPClient”。
这篇关于国产温箱热策AH-662控制代码(TCP/IP通信模式)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!