VB编程使用485转换USB再连接计算机
发布网友
发布时间:2022-04-24 11:05
我来回答
共1个回答
热心网友
时间:2023-10-10 18:27
首先你得知道下位机的通讯协议,然后在VB中增加一个串口控件,取一个名字,比如SerialPort,向下位机发送命令:
SerialPort.Output=OutCommandString
然后读取串口返回的值:
InputString=SerialPort.Input
OutCommandString、InputString为你自己定义的两个变量。
OutCommandString:根据通讯协议组成的发送命令。
InputString:为收到的返回值,根据通讯协议解析。