点击或拖拽改变大小

MemobusHelperWrite 方法 (IMemobus, String, Int16, FuncString, Int16, OperateResult)

写入short数据,返回是否成功
Write short data, returns whether success

命名空间:  HslCommunication.Profinet.YASKAWA.Helper
程序集:  HslCommunication (在 HslCommunication.dll 中) 版本:12.1.2.0 (12.1.2.0)
语法
public static OperateResult Write(
	IMemobus memobus,
	string address,
	short value,
	Func<string, short, OperateResult> writeShort
)

参数

memobus
类型:HslCommunication.Profinet.YASKAWA.HelperIMemobus

[缺少 "M:HslCommunication.Profinet.YASKAWA.Helper.MemobusHelper.Write(HslCommunication.Profinet.YASKAWA.Helper.IMemobus,System.String,System.Int16,System.Func{System.String,System.Int16,HslCommunication.OperateResult})" 的 <param name="memobus"/> 文档]

address
类型:SystemString
起始地址
value
类型:SystemInt16
写入值
writeShort
类型:SystemFuncString, Int16, OperateResult

[缺少 "M:HslCommunication.Profinet.YASKAWA.Helper.MemobusHelper.Write(HslCommunication.Profinet.YASKAWA.Helper.IMemobus,System.String,System.Int16,System.Func{System.String,System.Int16,HslCommunication.OperateResult})" 的 <param name="writeShort"/> 文档]

返回值

类型:OperateResult
带有成功标识的结果类对象
备注
单一保持寄存器的值变更,使用的主功能码为0x20, 默认子功能码为0x06,也可以写入扩展的保持型寄存器,子功能码为0x0B
The value of a single hold register is changed, using a primary function code of 0x20 and a default subfunction code of 0x06, or an extended holding register with a subfunction code of 0x0B
示例
以下为三菱的连接对象示例,其他的设备读写情况参照下面的代码:
Int16类型示例
MelsecMcNet melsec_net = new MelsecMcNet( "192.168.0.100", 6000 );

// 简单的写入
melsec_net.Write( "D100", (short)123 );

// 如果想要判断是否写入成功
OperateResult write = melsec_net.Write( "D100", (short)123 );
if (write.IsSuccess)
{
    // success
}
else
{
    // failed
}
参见