OmronFinsUdp.cs
13.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
using HslCommunication.Core;
using HslCommunication.Core.Net;
using System;
using System.Linq;
namespace HslCommunication.Profinet.Omron
{
/// <summary>
/// 欧姆龙的Udp的数据对象
/// </summary>
/// <remarks>
/// <note type="warning">如果在测试的时候报错误码64,经网友 上海-Lex 指点,是因为PLC中产生了报警,如伺服报警,模块错误等产生的,但是数据还是能正常读到的,屏蔽64报警或清除plc错误可解决</note>
/// 地址支持的列表如下:
/// <list type="table">
/// <listheader>
/// <term>地址名称</term>
/// <term>地址代号</term>
/// <term>示例</term>
/// <term>地址进制</term>
/// <term>字操作</term>
/// <term>位操作</term>
/// <term>备注</term>
/// </listheader>
/// <item>
/// <term>DM Area</term>
/// <term>D</term>
/// <term>D100,D200</term>
/// <term>10</term>
/// <term>√</term>
/// <term>√</term>
/// <term></term>
/// </item>
/// <item>
/// <term>CIO Area</term>
/// <term>C</term>
/// <term>C100,C200</term>
/// <term>10</term>
/// <term>√</term>
/// <term>√</term>
/// <term></term>
/// </item>
/// <item>
/// <term>Work Area</term>
/// <term>W</term>
/// <term>W100,W200</term>
/// <term>10</term>
/// <term>√</term>
/// <term>√</term>
/// <term></term>
/// </item>
/// <item>
/// <term>Holding Bit Area</term>
/// <term>H</term>
/// <term>H100,H200</term>
/// <term>10</term>
/// <term>√</term>
/// <term>√</term>
/// <term></term>
/// </item>
/// <item>
/// <term>Auxiliary Bit Area</term>
/// <term>A</term>
/// <term>A100,A200</term>
/// <term>10</term>
/// <term>√</term>
/// <term>√</term>
/// <term></term>
/// </item>
/// </list>
/// </remarks>
public class OmronFinsUdp : NetworkUdpDeviceBase<ReverseWordTransform>
{
#region Constructor
/// <summary>
/// 实例化一个默认的欧姆龙Udp的对象
/// </summary>
/// <param name="ipAddress">Ip地址</param>
/// <param name="port">端口号</param>
public OmronFinsUdp(string ipAddress, int port)
{
WordLength = 1;
IpAddress = ipAddress;
Port = port;
ByteTransform.DataFormat = DataFormat.CDAB;
}
/// <summary>
/// 实例化一个默认的欧姆龙Udp的对象
/// </summary>
public OmronFinsUdp()
{
WordLength = 1;
ByteTransform.DataFormat = DataFormat.CDAB;
}
#endregion
#region IpAddress Override
/// <summary>
/// 设备的Ip地址信息
/// </summary>
public override string IpAddress
{
get => base.IpAddress;
set
{
DA1 = Convert.ToByte(value.Substring(value.LastIndexOf(".") + 1));
base.IpAddress = value;
}
}
#endregion
#region Public Member
/// <summary>
/// 信息控制字段,默认0x80
/// </summary>
public byte ICF { get; set; } = 0x80;
/// <summary>
/// 系统使用的内部信息
/// </summary>
public byte RSV { get; private set; } = 0x00;
/// <summary>
/// 网络层信息,默认0x02,如果有八层消息,就设置为0x07
/// </summary>
public byte GCT { get; set; } = 0x02;
/// <summary>
/// PLC的网络号地址,默认0x00
/// </summary>
public byte DNA { get; set; } = 0x00;
/// <summary>
/// PLC的节点地址,这个值在配置了ip地址之后是默认赋值的,默认为Ip地址的最后一位
/// </summary>
/// <remarks>
/// <note type="important">假如你的PLC的Ip地址为192.168.0.10,那么这个值就是10</note>
/// </remarks>
public byte DA1 { get; set; } = 0x13;
/// <summary>
/// PLC的单元号地址
/// </summary>
/// <remarks>
/// <note type="important">通常都为0</note>
/// </remarks>
public byte DA2 { get; set; } = 0x00;
/// <summary>
/// 上位机的网络号地址
/// </summary>
public byte SNA { get; set; } = 0x00;
/// <summary>
/// 上位机的节点地址,假如你的电脑的Ip地址为192.168.0.13,那么这个值就是13
/// </summary>
/// <remarks>
/// <note type="important">假如你的电脑的Ip地址为192.168.0.13,那么这个值就是13</note>
/// </remarks>
public byte SA1 { get; set; } = 13;
/// <summary>
/// 上位机的单元号地址
/// </summary>
public byte SA2 { get; set; }
/// <summary>
/// 设备的标识号
/// </summary>
public byte SID { get; set; } = 0x00;
#endregion
#region Build Command
/// <summary>
/// 将普通的指令打包成完整的指令
/// </summary>
/// <param name="cmd"></param>
/// <returns></returns>
private byte[] PackCommand(byte[] cmd)
{
byte[] buffer = new byte[10 + cmd.Length];
buffer[0] = ICF;
buffer[1] = RSV;
buffer[2] = GCT;
buffer[3] = DNA;
buffer[4] = DA1;
buffer[5] = DA2;
buffer[6] = SNA;
buffer[7] = SA1;
buffer[8] = SA2;
buffer[9] = SID;
cmd.CopyTo(buffer, 10);
return buffer;
}
/// <summary>
/// 根据类型地址长度确认需要读取的指令头
/// </summary>
/// <param name="address">起始地址</param>
/// <param name="length">长度</param>
/// <param name="isBit">是否是位读取</param>
/// <returns>带有成功标志的报文数据</returns>
public OperateResult<byte[]> BuildReadCommand(string address, ushort length, bool isBit)
{
var command = OmronFinsNetHelper.BuildReadCommand(address, length, isBit);
if (!command.IsSuccess) return command;
return OperateResult.CreateSuccessResult(PackCommand(command.Content));
}
/// <summary>
/// 根据类型地址以及需要写入的数据来生成指令头
/// </summary>
/// <param name="address">起始地址</param>
/// <param name="value">真实的数据值信息</param>
/// <param name="isBit">是否是位操作</param>
/// <returns>带有成功标志的报文数据</returns>
public OperateResult<byte[]> BuildWriteCommand(string address, byte[] value, bool isBit)
{
var command = OmronFinsNetHelper.BuildWriteWordCommand(address, value, isBit);
if (!command.IsSuccess) return command;
return OperateResult.CreateSuccessResult(PackCommand(command.Content));
}
#endregion
#region Read Support
/// <summary>
/// 从欧姆龙PLC中读取想要的数据,返回读取结果,读取单位为字
/// </summary>
/// <param name="address">读取地址,格式为"D100","C100","W100","H100","A100"</param>
/// <param name="length">读取的数据长度</param>
/// <returns>带成功标志的结果数据对象</returns>
/// <example>
/// 假设起始地址为D100,D100存储了温度,100.6℃值为1006,D101存储了压力,1.23Mpa值为123,D102,D103存储了产量计数,读取如下:
/// <code lang="cs" source="HslCommunication_Net45.Test\Documentation\Samples\Profinet\OmronFinsNet.cs" region="ReadExample2" title="Read示例" />
/// 以下是读取不同类型数据的示例
/// <code lang="cs" source="HslCommunication_Net45.Test\Documentation\Samples\Profinet\OmronFinsNet.cs" region="ReadExample1" title="Read示例" />
/// </example>
public override OperateResult<byte[]> Read(string address, ushort length)
{
// 获取指令
var command = BuildReadCommand(address, length, false);
if (!command.IsSuccess) return OperateResult.CreateFailedResult<byte[]>(command);
// 核心数据交互
OperateResult<byte[]> read = ReadFromCoreServer(command.Content);
if (!read.IsSuccess) return OperateResult.CreateFailedResult<byte[]>(read);
// 数据有效性分析
OperateResult<byte[]> valid = OmronFinsNetHelper.UdpResponseValidAnalysis(read.Content, true);
if (!valid.IsSuccess) return OperateResult.CreateFailedResult<byte[]>(valid);
// 读取到了正确的数据
return OperateResult.CreateSuccessResult(valid.Content);
}
/// <summary>
/// 从欧姆龙PLC中批量读取位软元件,返回读取结果
/// </summary>
/// <param name="address">读取地址,格式为"D100","C100","W100","H100","A100"</param>
/// <param name="length">读取的长度</param>
/// <returns>带成功标志的结果数据对象</returns>
/// <example>
/// <code lang="cs" source="HslCommunication_Net45.Test\Documentation\Samples\Profinet\OmronFinsNet.cs" region="ReadBool" title="ReadBool示例" />
/// </example>
public override OperateResult<bool[]> ReadBool(string address, ushort length)
{
// 获取指令
var command = BuildReadCommand(address, length, true);
if (!command.IsSuccess) return OperateResult.CreateFailedResult<bool[]>(command);
// 核心数据交互
OperateResult<byte[]> read = ReadFromCoreServer(command.Content);
if (!read.IsSuccess) return OperateResult.CreateFailedResult<bool[]>(read);
// 数据有效性分析
OperateResult<byte[]> valid = OmronFinsNetHelper.UdpResponseValidAnalysis(read.Content, true);
if (!valid.IsSuccess) return OperateResult.CreateFailedResult<bool[]>(valid);
// 返回正确的数据信息
return OperateResult.CreateSuccessResult(valid.Content.Select(m => m != 0x00 ? true : false).ToArray());
}
#endregion
#region Write Base
/// <summary>
/// 向PLC写入数据,数据格式为原始的字节类型
/// </summary>
/// <param name="address">初始地址</param>
/// <param name="value">原始的字节数据</param>
/// <returns>结果</returns>
/// <example>
/// 假设起始地址为D100,D100存储了温度,100.6℃值为1006,D101存储了压力,1.23Mpa值为123,D102,D103存储了产量计数,读取如下:
/// <code lang="cs" source="HslCommunication_Net45.Test\Documentation\Samples\Profinet\OmronFinsNet.cs" region="WriteExample2" title="Write示例" />
/// 以下是写入不同类型数据的示例
/// <code lang="cs" source="HslCommunication_Net45.Test\Documentation\Samples\Profinet\OmronFinsNet.cs" region="WriteExample1" title="Write示例" />
/// </example>
public override OperateResult Write(string address, byte[] value)
{
// 获取指令
var command = BuildWriteCommand(address, value, false);
if (!command.IsSuccess) return command;
// 核心数据交互
OperateResult<byte[]> read = ReadFromCoreServer(command.Content);
if (!read.IsSuccess) return read;
// 数据有效性分析
OperateResult<byte[]> valid = OmronFinsNetHelper.UdpResponseValidAnalysis(read.Content, false);
if (!valid.IsSuccess) return valid;
// 成功
return OperateResult.CreateSuccessResult();
}
#endregion
#region Write bool[]
/// <summary>
/// 向PLC中位软元件写入bool数组,返回值说明,比如你写入D100,values[0]对应D100.0
/// </summary>
/// <param name="address">要写入的数据地址</param>
/// <param name="values">要写入的实际数据,可以指定任意的长度</param>
/// <returns>返回写入结果</returns>
/// <example>
/// <code lang="cs" source="HslCommunication_Net45.Test\Documentation\Samples\Profinet\OmronFinsNet.cs" region="WriteBool" title="WriteBool示例" />
/// </example>
public override OperateResult Write(string address, bool[] values)
{
// 获取指令
var command = BuildWriteCommand(address, values.Select(m => m ? (byte)0x01 : (byte)0x00).ToArray(), true);
if (!command.IsSuccess) return command;
// 核心数据交互
OperateResult<byte[]> read = ReadFromCoreServer(command.Content);
if (!read.IsSuccess) return read;
// 数据有效性分析
OperateResult<byte[]> valid = OmronFinsNetHelper.UdpResponseValidAnalysis(read.Content, false);
if (!valid.IsSuccess) return valid;
// 写入成功
return OperateResult.CreateSuccessResult();
}
#endregion
#region Object Override
/// <summary>
/// 返回表示当前对象的字符串
/// </summary>
/// <returns>字符串</returns>
public override string ToString()
{
return $"OmronFinsUdp[{IpAddress}:{Port}]";
}
#endregion
}
}