ModbusRtuOverTcpStation 属性 |
获取或者重新修改服务器的默认站号信息,当然,你可以再读写的时候动态指定,例如地址 "s=2;100", 更详细的例子可以参考DEMO界面上的地址示例。
Get or re-modify the server's default station number information, of course, you can dynamically specify when reading and writing,
such as the address "s=2; 100", a more detailed example can refer to the DEMO interface address example.
命名空间:
HslCommunication.ModBus
程序集:
HslCommunication (在 HslCommunication.dll 中) 版本:12.1.2.0 (12.1.2.0)
语法 public byte Station { get; set; }
Public Property Station As Byte
Get
Set
public:
virtual property unsigned char Station {
unsigned char get () sealed;
void set (unsigned char value) sealed;
}
abstract Station : byte with get, set
override Station : byte with get, set
属性值
类型:
Byte实现
IModbusStation备注
当你调用 ReadCoil("100") 时,对应的站号就是本属性的值,当你调用 ReadCoil("s=2;100") 时,就忽略本属性的值,读写寄存器的时候同理
参见