当前位置:   article > 正文

PLC通讯实现-C#实现欧姆龙以太网通讯FINS UDP(三)_c# new omronfinsudp();

c# new omronfinsudp();

PLC通讯实现-C#实现欧姆龙以太网通讯FINS UDP(三)

背景

本人近十年的工作都与工业软件相关、其中工控系统开发过程中有一个必要环节就是跟各大厂商的PLC进行通讯,而对于从互联网行业跨入工业互联网行业的从业人员来说要实现各型号PLC通讯还是需要一个过程的,本人在此对主流型号PLC通讯实现进行总结以便大家参考。

抽象设计

首先我们要进行一下抽象设计,先设计一个抽象类(接口也可以,此处因为还有其他业务使用了抽象类)BaseEquip,对PLC的常规操作进行定义,即Open、Read、Write、Close,业务代码调用BaseEquip进行PLC的读写,然后在实现各型号的Equip类,对Open、Read、Write、Close进行实现,根据配置在业务代码中对BaseEquip进行实例化,这样后期更改PLC型号后,只需修改配置即可,不用修改业务代码。

欧姆龙以太网通讯实现FINS UDP

实现语言C#

抽象基类BaseEquip

public class BaseEquip
{
	/// <summary>
    /// 打开设备
    /// </summary>
    /// <returns>成功返回true,失败返回false</returns>
	public abstract bool Open();
	/// <summary>
    /// 读取信息
    /// </summary>
    /// <param name="block">数据块</param>
    /// <param name="start">起始地址</param>
    /// <param name="len">长度</param>
    /// <param name="buff">读取返回信息</param>
    /// <returns>成功返回true,失败返回false</returns>
    public abstract bool Read(string block, int start, int len, out object[] buff);
    /// <summary>
    /// 写入信息
    /// </summary>
    /// <param name="block">数据块</param>
    /// <param name="start">起始地址</param>
    /// <param name="buff">要写入的数据</param>
    /// <returns>成功返回true,失败返回false</returns>
    public abstract bool Write(int block, int start, object[] buff);
    /// <summary>
    /// 关闭设备
    /// </summary>
    public abstract void Close();
}
  • 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

设备实现类Equip实现

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Net;
using System.Net.Sockets;
using Mesnac.Equips;

namespace Mesnac.Equip.OMRON.FINS.UDP
{
    public class Equip : BaseEquip
    {
        #region 字段定义

        private string _plcIp = "192.168.1.50";
        private int _plcPort = 9600;
        private string _pcIp = "192.168.1.131";

        private Socket server = null;       //Socket Server
        IPEndPoint plcIpEndPoint = null;
        IPEndPoint receiveEndPoint = null;
        EndPoint remote = null;
        private bool _isOpen = false;   //是否打开连接

        #endregion

        #region 属性定义

        /// <summary>
        /// PLC的IP地址
        /// </summary>
        public string PlcIp
        {
            get
            {
                return _plcIp;
            }
        }
        /// <summary>
        /// PLC的端口号
        /// </summary>
        public int PlcPort
        {
            get
            {
                return _plcPort;
            }
        }

        public string PcIp
        {
            get
            {
                return _pcIp;
            }
        }

        #endregion

        #region 实现BaseEquip成员

        public override bool Open()
        {
            try
            {

                if (this._isOpen == true && (server != null))
                {
                    return true;
                }
                this.State = false;
                this.server = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp);
                this.plcIpEndPoint = new IPEndPoint(IPAddress.Parse(this.PlcIp), 9600);
                this.receiveEndPoint = new IPEndPoint(IPAddress.Any, 0);
                this.remote = (EndPoint)this.receiveEndPoint;

                this.State = this.Connection();

                if (!this.State)
                {
                    return this.State;
                }
                else
                {
                    this.State = true;
                    this._isOpen = true;
                    Console.WriteLine("连接成功!");
                    return this.State;
                }

            }
            catch (Exception ex)
            {
                this.State = false;
                this._isOpen = false;
                Console.WriteLine(ex.Message);
                return this.State;
            }
        }

        public override bool Read(string block, int start, int len, out object[] buff)
        {
            buff = new object[len];
            try
            {
                if (len > 256)
                {
                    for (int i = 0; i < len; i++)
                    {
                        buff[i] = 0;
                    }
                    base.State = false;
                    return false;
                }
                int maxOneLen = 100;                    //单次允许读取的最大长度,欧姆龙限制为100个字
                int count = len / maxOneLen;            //要读取的次数
                int mod = len % maxOneLen;              //剩余的长度
                bool flag = true;                       //保存读取标志
                for (int i = 0; i < count; i++)
                {
                    object[] _buff = new object[maxOneLen];
                    flag = this.ReadByLen(block, start + i * maxOneLen, maxOneLen, out _buff);
                    if (flag == false)
                    {
                        base.State = flag;
                        return false;
                    }
                    for (int k = i * maxOneLen; k < (i + 1) * maxOneLen; k++)
                    {
                        buff[k] = _buff[k - i * maxOneLen];
                    }
                }
                if (mod > 0)
                {
                    object[] _buff = new object[mod];
                    flag = this.ReadByLen(block, start + count * maxOneLen, mod, out _buff);
                    if (flag == false)
                    {
                        base.State = flag;
                        return false;
                    }
                    for (int k = count * maxOneLen; k < count * maxOneLen + mod; k++)
                    {
                        buff[k] = _buff[k - count * maxOneLen];
                    }
                }
                base.State = flag;
                return flag;
            }
            catch (Exception ex)
            {
                ICSharpCode.Core.LoggingService.Error(String.Format("读取PLC(OMRON)设备失败-({0})!", ex.Message));
                base.State = false;
                return false;
            }
        }

        /// <summary>
        /// 单次读取最长100个字的方法
        /// </summary>
        /// <param name="block">块号</param>
        /// <param name="start">起始字</param>
        /// <param name="len">长度,最长不超过100</param>
        /// <param name="buff">数据缓冲区,存放读取的数据</param>
        /// <returns>读取成功返回true,读取失败返回false</returns>
        private bool ReadByLen(string block, int start, int len, out object[] buff)
        {
            lock (this)
            {
                buff = new object[len];
                if (!this.Open())
                {
                    return false;
                }
                int state = len;
                object[] _buff = new object[len];
                int iblock = Convert.ToInt32(block);
                //iblock = iblock + start;
                byte[] readCmd = this.GetReadCmd(iblock + start, len);
                int size = this.server.SendTo(readCmd, readCmd.Length, SocketFlags.None, this.plcIpEndPoint);
                byte[] buffer = new byte[len * 2 + 14];
                if (size < readCmd.Length)
                {
                    //ICSharpCode.Core.LoggingService.Warn("PLC读取失败:" + this.GetErrInfo(result));
                    this.State = false;
                    return false;
                }
                else
                {
                    int recv = server.ReceiveFrom(buffer, ref this.remote);//返回收到的字节数
                    if (recv != 0)
                    {
                        for(int i = 0; i < len; i++)
                        {
                            byte[] a = new byte[2];
                            a[0] = buffer[15 + i * 2];
                            a[1] = buffer[14 + i * 2];
                            _buff[i] = BitConverter.ToInt16(a, 0);
                        }
                    }
                    this.State = true;
                }
                int iReadLen = len;
                if (iReadLen > state)
                {
                    iReadLen = state;
                }
                for (int i = 0; i < iReadLen; i++)
                {

                    int value = 0;
                    int.TryParse(_buff[i].ToString(), out value);
                    if (value > ushort.MaxValue)
                    {
                        value = ushort.MaxValue - value;
                    }
                    buff[i] = value;
                }
                return true;
            }
        }

        public override bool Write(int block, int start, object[] buff)
        {
            lock(this)
            {
                byte[] writeCmd = this.GetWriteCmd(block + start, buff);
                try
                {
                    int size = this.server.SendTo(writeCmd, writeCmd.Length, SocketFlags.None, this.plcIpEndPoint);
                    if (size < writeCmd.Length)
                    {
                        return false;
                    }
                    this.server.ReceiveTimeout = 1000; 
                    byte[] buffer = new byte[20];
                    int recv = server.ReceiveFrom(buffer, ref remote);
                    if (recv != 0)
                    {
                        return true;
                    }
                    else
                    {
                        return false;
                    }
                }
                catch(Exception ex)
                {
                    ICSharpCode.Core.LoggingService.Error(String.Format("block={0}, start={1}, len={2} 写入PLC失败,{3}", block, start, buff.Length, ex.Message), ex);
                    return false;
                }
            }
        }

        public override void Close()
        {
            try
            {
                if (this.server != null)
                {
                    this.server.Close();
                    this.server = null;
                }
            }
            catch(Exception ex)
            {
                ICSharpCode.Core.LoggingService.Error("断开PLC连接异常:" + ex.Message, ex);
            }
        }

        #endregion

        #region 辅助方法

        /// <summary>
        /// 获取IP地址中最后一部分的值,比如:192.168.1.50,则返回50
        /// </summary>
        /// <param name="ip">ip地址</param>
        /// <returns>返回IP地址中最后一部分的值</returns>
        private byte GetLastIpScopeValue(string ip)
        {
            try
            {
                IPAddress ipAddress = IPAddress.Parse(ip);
                byte[] ipValues = ipAddress.GetAddressBytes();
                return ipValues[ipValues.Length - 1];
            }
            catch(Exception ex)
            {
                ICSharpCode.Core.LoggingService.Error(String.Format("IP地址格式不合法,IP = [{0}]", ip), ex);
                return 0;
            }
        }

        /// <summary>
        /// 获取读取数据的指令
        /// </summary>
        /// <param name="start">起始地址</param>
        /// <param name="len">要读取的长度</param>
        /// <returns>返回合法的读取指令</returns>
        private byte[] GetReadCmd(int start, int len)
        {
            byte[] starts = BitConverter.GetBytes((short)start);
            byte[] lens = BitConverter.GetBytes((short)len);

            byte[] readCmd = new byte[18];
            readCmd[0] = 0X80;
            readCmd[1] = 0X00;
            readCmd[2] = 0X02;
            readCmd[3] = 0X00;
            //下标从0开始,第4个字节表示PLC的IP地址(IP地址4部分的最后一部分的值)
            readCmd[4] = this.GetLastIpScopeValue(this.PlcIp);          //对方IP地址,即PLC
            readCmd[5] = 0X00;
            readCmd[6] = 0X00;
            //下标从0开始,第7个字节表示PC的IP地址(IP地址4部分的最后一部分的值)
            readCmd[7] = 0X01;  // this.GetLastIpScopeValue(this.PcIp);           //本机IP地址,即上位机电脑,只要是大于0的值就行
            readCmd[8] = 0X00;
            readCmd[9] = 0X00;
            readCmd[10] = 0X01;
            readCmd[11] = 0X01;         //0101 读取数据
            readCmd[12] = 0X82;         //82 地址区域DM区
            //下标从0开始,第13和14这2个字节表示起始地址
            readCmd[13] = starts[1];    //读/写数据区的起始地址
            readCmd[14] = starts[0];    //读/写数据区的起始地址
            readCmd[15] = 0X00;
            //下标从0开始,第16和17这2个字节表示读取数据的长度
            readCmd[16] = lens[1];      //读/写数据个数
            readCmd[17] = lens[0];      //读/写数据个数
            Console.WriteLine(BitConverter.ToString(readCmd).Replace("-", String.Empty));
            return readCmd;
        }

        /// <summary>
        /// 获取写入PLC的指令
        /// </summary>
        /// <param name="start"></param>
        /// <param name="buff"></param>
        /// <returns></returns>
        private byte[] GetWriteCmd(int start, object[] buff)
        {
            Random ra = new Random(unchecked((int)DateTime.Now.Ticks));
            int SID = ra.Next(1, 100);
            int num = buff.Length;
            int amount = 18 + num * 2;
            byte[] writeCmd = new byte[amount];
            byte[] startBytes = new byte[2];
            startBytes = BitConverter.GetBytes((short)start);
            byte[] lenBytes = new byte[2];
            lenBytes = BitConverter.GetBytes((short)num);

            writeCmd[0] = 0X80;             //ICF
            writeCmd[1] = 0X00;             //RSV
            writeCmd[2] = 0X02;             //GCT
            writeCmd[3] = 0X00;             //DNA
            //下标从0开始,第4个字节表示PLC的IP地址(IP地址4部分的最后一部分的值)
            writeCmd[4] = this.GetLastIpScopeValue(this.PlcIp);          //DA1,对方IP地址,即PLC
            writeCmd[5] = 0X00;             //DA2
            writeCmd[6] = 0X00;             //SNA
            //下标从0开始,第7个字节表示PC的IP地址(IP地址4部分的最后一部分的值)
            writeCmd[7] = 0X01;     // this.GetLastIpScopeValue(this.PcIp);           //SA1,本机IP地址,即上位机电脑,只要是大于0的值就行
            writeCmd[8] = 0X00;              //SA2
            writeCmd[9] = Convert.ToByte(SID.ToString(), 16);//SID //0x00;
            writeCmd[10] = 0X01;            //Command code
            writeCmd[11] = 0X02;            //Command code,0101表示读取,0102 写入数据
            writeCmd[12] = 0X82;            //82 地址区域DM区
            //下标从0开始,第13和14这2个字节表示起始地址
            writeCmd[13] = startBytes[1];
            writeCmd[14] = startBytes[0];
            writeCmd[15] = 0x00;
            writeCmd[16] = lenBytes[1];
            writeCmd[17] = lenBytes[0];
            for (int i = 0; i < buff.Length; i++)
            {
                int value = 0;
                if (buff[i] != null)
                {
                    int.TryParse(buff[i].ToString(), out value);
                }
                byte[] byteValues = BitConverter.GetBytes((short)value);
                writeCmd[18 + i * 2] = byteValues[1];
                writeCmd[18 + i * 2 + 1] = byteValues[0];
            }

            Console.WriteLine(BitConverter.ToString(writeCmd).Replace("-", String.Empty));

            return writeCmd;
        }

        /// <summary>
        /// 连接测试
        /// </summary>
        /// <returns></returns>
        private bool Connection()
        {
            byte[] readCmd = this.GetReadCmd(0, 1);
            int size = this.server.SendTo(readCmd, readCmd.Length, SocketFlags.None, this.plcIpEndPoint);
            if (size < readCmd.Length)
            {
                this.State = false;
                return this.State;
            }
            byte[] buffer = new byte[256 + 14];
            int recv = server.ReceiveFrom(buffer, ref this.remote);//返回收到的字节数
            if (recv != 0)
            {
                return true;
            }
            return false;
        }

        #endregion
    }
}
  • 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
  • 377
  • 378
  • 379
  • 380
  • 381
  • 382
  • 383
  • 384
  • 385
  • 386
  • 387
  • 388
  • 389
  • 390
  • 391
  • 392
  • 393
  • 394
  • 395
  • 396
  • 397
  • 398
  • 399
  • 400
  • 401
  • 402
  • 403
  • 404
  • 405
  • 406
  • 407
  • 408
  • 409
  • 410
  • 411
  • 412
  • 413

测试效果

在这里插入图片描述

相关链接

欧姆龙PLC之Fins UDP与Fins TCP协议解析与通讯测试.pptx
完整源代码下载

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/309576
推荐阅读
相关标签
  

闽ICP备14008679号