From c3fb4d5f51787c9e1f1d4d51516991836145aeb9 Mon Sep 17 00:00:00 2001 From: SoulStar Date: Tue, 21 Jan 2025 11:06:03 +0700 Subject: [PATCH] =?UTF-8?q?feat=20-=20=E9=80=89=E6=8B=A9=E8=AF=BB=E5=8F=96?= =?UTF-8?q?=E6=AC=A1=E6=95=B0=E6=9C=80=E5=A4=9A=E7=9A=84=E6=A0=87=E7=AD=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- HighWayIot.Plc/PlcConnect.cs | 2 +- HighWayIot.Winform/Business/WorkStationBusiness.cs | 14 ++++++++------ 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/HighWayIot.Plc/PlcConnect.cs b/HighWayIot.Plc/PlcConnect.cs index c5d452f..11bd839 100644 --- a/HighWayIot.Plc/PlcConnect.cs +++ b/HighWayIot.Plc/PlcConnect.cs @@ -27,7 +27,7 @@ namespace HighWayIot.Plc /// /// 静态懒加载MelsecMcNet2 /// - private static readonly MelsecMcNet MelsecInstance2 = new PlcConnect().CreateAb("192.168.0.8"); + private static readonly MelsecMcNet MelsecInstance2 = new PlcConnect().CreateAb("10.20.48.225"); private PlcConnect() { diff --git a/HighWayIot.Winform/Business/WorkStationBusiness.cs b/HighWayIot.Winform/Business/WorkStationBusiness.cs index 6afff10..fde7ec2 100644 --- a/HighWayIot.Winform/Business/WorkStationBusiness.cs +++ b/HighWayIot.Winform/Business/WorkStationBusiness.cs @@ -148,12 +148,14 @@ namespace HighWayIot.Winform.Business public void ReciveRFIDSingal(byte[] bytes, string ip) { Receive02HEntity entity = _rfidDataAnalyse.Receive02H(bytes); - if(entity.TagCount != 1) - { - _logHelper.Error("返回多标签!"); - return; - } - byte[] data = entity.Data[0].EPC; + //if(entity.TagCount != 1) + //{ + // _logHelper.Error("返回多标签!"); + // return; + //} + + //找到读取次数最大的标签EPC + byte[] data = entity.Data.Where(x => x.Count == entity.Data.Max(y => y.Count)).First().EPC; //标签号byte数组转换成字符串 string result = string.Join(" ", data.Select(x => x.ToString("X2")));