|
|
|
@ -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")));
|
|
|
|
|