Phyton Socket 송수신 Modbus 배열
# This is a sample Python script.
# Press Shift+F10 to execute it or replace it with your code.
# Press Double Shift to search everywhere for classes, files, tool windows, actions, and settings.
def print_hi(name):
# Use a breakpoint in the code line below to debug your script.
print(f'Hi, {name}') # Press Ctrl+F8 to toggle the breakpoint.
# Press the green button in the gutter to run the script.
if __name__ == '__main__':
print_hi('PyCharm')
import socket
import time
import struct
MaxBytes=1024*1024
host ='192.168.0.61'
port = 502
arr = [0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x04, 0x00, 0x00, 0x00, 0x20]
data=struct.pack("%dB"%(len(arr)),*arr)
num = 0
while True:
num=num+1
client = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
client.settimeout(30)
client.connect((host, port))
sendBytes = client.send(data)
if sendBytes<=0:
break;
recvData = client.recv(MaxBytes)
if not recvData:
print(' , ')
break
print(" :", num)
localTime = time.asctime( time.localtime(time.time()))
print(localTime, ' :',len(recvData))
'''print(recvData.decode()) '''
client.close()
print(" , ")
# See PyCharm help at https://www.jetbrains.com/help/pycharm/
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Modbus CRC 16 검증 알고리즘 - 검표 법 (테스트 를 거 쳐 잘 작 동)다음으로 이동:http://blog.csdn.net/zgrjkflmkyc/article/details/41073435 코드 는 다음 과 같 습 니 다: 학습 교류 의 용 도 는 참고 로 제공 할 뿐이다....
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.