欢迎来到传世资源网!
加载中...
正在加载,请耐心等待...
本站为收藏、学习站,如有侵权,请联系管理员删除!

多连接接收RFID数据

介绍 评论 失效链接反馈

【例子介绍】多连接接收RFID数据

【相关图片】

from clipboard

from clipboard

【源码结构】

.
├── UHFAPP20230404-多连接
│   ├── BaseForm.Designer.cs
│   ├── BaseForm.cs
│   ├── BaseForm.resx
│   ├── ChoiceNumberForm.Designer.cs
│   ├── ChoiceNumberForm.cs
│   ├── ChoiceNumberForm.resx
│   ├── ConfigForm.Designer.cs
│   ├── ConfigForm.cs
│   ├── ConfigForm.resx
│   ├── DeviceInfo.cs
│   ├── Entity
│   │   └── ReaderDeviceInfo.cs
│   ├── Kill_LockForm.Designer.cs
│   ├── Kill_LockForm.cs
│   ├── Kill_LockForm.resx
│   ├── MainForm.Designer.cs
│   ├── MainForm.cs
│   ├── MainForm.resx
│   ├── Program.cs
│   ├── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── Resources.Designer.cs
│   │   ├── Resources.resx
│   │   ├── Settings.Designer.cs
│   │   └── Settings.settings
│   ├── RFID-HF
│   │   ├── HF14443API.cs
│   │   ├── HF15693API.cs
│   │   ├── HFMainForm.Designer.cs
│   │   ├── HFMainForm.cs
│   │   ├── HFMainForm.resx
│   │   ├── ISO15693Entity.cs
│   │   └── PSAMAPI.cs
│   ├── ReadEPCForm.Designer.cs
│   ├── ReadEPCForm.cs
│   ├── ReadEPCForm.resx
│   ├── ReadEPCFormData.cs
│   ├── ReadWriteTagForm.Designer.cs
│   ├── ReadWriteTagForm.cs
│   ├── ReadWriteTagForm.resx
│   ├── Receive
│   │   ├── SerialPortReceive.cs
│   │   └── UdpReceive.cs
│   ├── ReceiveEPC.Designer.cs
│   ├── ReceiveEPC.cs
│   ├── ReceiveEPC.resx
│   ├── TestForm.Designer.cs
│   ├── TestForm.cs
│   ├── TestForm.resx
│   ├── TipForm.Designer.cs
│   ├── TipForm.cs
│   ├── TipForm.resx
│   ├── UHFAPI.cs
│   ├── UHFAPP.csproj
│   ├── UHFAPP.csproj.user
│   ├── UHFAPP.sln
│   ├── UHFAPP.suo
│   ├── UHFTAGInfo.cs
│   ├── UHFUpgradeForm.Designer.cs
│   ├── UHFUpgradeForm.cs
│   ├── UHFUpgradeForm.resx
│   ├── UHFUpgradeFormEx.Designer.cs
│   ├── UHFUpgradeFormEx.cs
│   ├── UHFUpgradeFormEx.resx
│   ├── WaitForm.Designer.cs
│   ├── WaitForm.cs
│   ├── WaitForm.resx
│   ├── app.config
│   ├── barcode
│   │   ├── HidInputForm.Designer.cs
│   │   ├── HidInputForm.cs
│   │   └── HidInputForm.resx
│   ├── barcode161s
│   │   ├── ParametersForm.Designer.cs
│   │   ├── ParametersForm.cs
│   │   ├── ParametersForm.resx
│   │   ├── R1DevcieConfig.Designer.cs
│   │   ├── R1DevcieConfig.cs
│   │   ├── R1DevcieConfig.resx
│   │   ├── R1MainForm.Designer.cs
│   │   ├── R1MainForm.cs
│   │   ├── R1MainForm.resx
│   │   ├── R1UhfConfigForm.Designer.cs
│   │   ├── R1UhfConfigForm.cs
│   │   └── R1UhfConfigForm.resx
│   ├── bin
│   │   └── Debug
│   │       ├── 20230404.log
│   │       ├── DEVICE.CFG
│   │       ├── Newtonsoft.Json.dll
│   │       ├── UHFAPI.dll
│   │       ├── UHFAPP.exe
│   │       ├── UHFControl.dll
│   │       └── ipConfig.txt
│   ├── custom
│   │   ├── CryptoTransmitForm.Designer.cs
│   │   ├── CryptoTransmitForm.cs
│   │   ├── CryptoTransmitForm.resx
│   │   ├── Form1.resx
│   │   ├── R5ModifyParametersForm.Designer.cs
│   │   ├── R5ModifyParametersForm.cs
│   │   ├── R5ModifyParametersForm.resx
│   │   ├── SetR3Form.Designer.cs
│   │   ├── SetR3Form.cs
│   │   ├── SetR3Form.resx
│   │   ├── TempertureTag
│   │   │   ├── MainForm2.Designer.cs
│   │   │   ├── MainForm2.cs
│   │   │   ├── MainForm2.resx
│   │   │   ├── ReadEPCForm2.Designer.cs
│   │   │   ├── ReadEPCForm2.cs
│   │   │   ├── ReadEPCForm2.resx
│   │   │   ├── TempertureTagForm.Designer.cs
│   │   │   ├── TempertureTagForm.cs
│   │   │   ├── TempertureTagForm.resx
│   │   │   └── UHFAPI_RFMicronMagnus_S3.cs
│   │   ├── TempertureTag2
│   │   │   ├── ReadEPCFormT2.Designer.cs
│   │   │   ├── ReadEPCFormT2.cs
│   │   │   ├── ReadEPCFormT2.resx
│   │   │   ├── TempertureInfo.cs
│   │   │   ├── TempertureTag2MainForm.Designer.cs
│   │   │   ├── TempertureTag2MainForm.cs
│   │   │   ├── TempertureTag2MainForm.resx
│   │   │   ├── TempertureTag2ReadEPCForm.Designer.cs
│   │   │   ├── TempertureTag2ReadEPCForm.cs
│   │   │   ├── TempertureTag2ReadEPCForm.resx
│   │   │   └── UHFAPI_Temperture.cs
│   │   ├── WriteEPCSimpleDemo.Designer.cs
│   │   ├── WriteEPCSimpleDemo.cs
│   │   ├── WriteEPCSimpleDemo.resx
│   │   ├── authenticate
│   │   │   ├── AuthenticateAPI.cs
│   │   │   ├── AuthenticateForm.Designer.cs
│   │   │   ├── AuthenticateForm.cs
│   │   │   └── AuthenticateForm.resx
│   │   └── m775Authenticate
│   │       ├── M775AuthenticateAPI.cs
│   │       ├── M775AuthenticateForm.Designer.cs
│   │       ├── M775AuthenticateForm.cs
│   │       └── M775AuthenticateForm.resx
│   ├── dll
│   │   ├── Microsoft.Office.Interop.Excel.dll
│   │   ├── Microsoft.Vbe.Interop.dll
│   │   ├── Newtonsoft.Json.dll
│   │   ├── UHFControl.dll
│   │   └── office.dll
│   ├── excel
│   │   └── ExcelUtils.cs
│   ├── frmWaitingBox.cs
│   ├── frmWaitingBox.designer.cs
│   ├── frmWaitingBox.resx
│   ├── img
│   │   ├── button_green_32px_500051_easyicon.net.png
│   │   └── button_light_blue_32px_500052_easyicon.net.png
│   ├── interfaces
│   │   ├── IAutoReceive.cs
│   │   ├── IUHF.cs
│   │   └── IUHFProtocolParse.cs
│   ├── multidevice
│   │   ├── DeviceListForm.Designer.cs
│   │   ├── DeviceListForm.cs
│   │   ├── DeviceListForm.resx
│   │   ├── MainForm.Designer.cs
│   │   ├── MainForm.cs
│   │   ├── MainForm.resx
│   │   └── TagInfo.cs
│   ├── obj
│   │   └── Debug
│   │       ├── Refactor
│   │       ├── ResolveAssemblyReference.cache
│   │       ├── TempPE
│   │       ├── UHFAPP.BaseForm.resources
│   │       ├── UHFAPP.ChoiceNumberForm.resources
│   │       ├── UHFAPP.ConfigForm.resources
│   │       ├── UHFAPP.Kill_LockForm.resources
│   │       ├── UHFAPP.MainForm.resources
│   │       ├── UHFAPP.MainForm2.resources
│   │       ├── UHFAPP.Properties.Resources.resources
│   │       ├── UHFAPP.RFID.RFIDMainForm.resources
│   │       ├── UHFAPP.ReadEPCForm.resources
│   │       ├── UHFAPP.ReadEPCForm2.resources
│   │       ├── UHFAPP.ReadEPCFormT2.resources
│   │       ├── UHFAPP.ReadWriteTagForm.resources
│   │       ├── UHFAPP.ReceiveEPC.resources
│   │       ├── UHFAPP.TempertureTag2MainForm.resources
│   │       ├── UHFAPP.TempertureTag2ReadEPCForm.resources
│   │       ├── UHFAPP.TempertureTagForm.resources
│   │       ├── UHFAPP.TestForm.resources
│   │       ├── UHFAPP.TipForm.resources
│   │       ├── UHFAPP.UHFUpgradeForm.resources
│   │       ├── UHFAPP.UHFUpgradeFormEx.resources
│   │       ├── UHFAPP.WaitForm.resources
│   │       ├── UHFAPP.barcode.HidInputForm.resources
│   │       ├── UHFAPP.csproj.FileListAbsolute.txt
│   │       ├── UHFAPP.csproj.GenerateResource.Cache
│   │       ├── UHFAPP.custom.CryptoTransmitForm.resources
│   │       ├── UHFAPP.custom.R5ModifyParametersForm.resources
│   │       ├── UHFAPP.custom.SetR3Form.resources
│   │       ├── UHFAPP.custom.WriteEPCSimpleDemo.resources
│   │       ├── UHFAPP.custom.authenticate.AuthenticateForm.resources
│   │       ├── UHFAPP.custom.m775Authenticate.M775AuthenticateForm.resources
│   │       ├── UHFAPP.exe
│   │       ├── UHFAPP.multidevice.DeviceListForm.resources
│   │       ├── UHFAPP.multidevice.MainForm.resources
│   │       ├── UHFAPP.pdb
│   │       └── WinForm_Test.frmWaitingBox.resources
│   └── utils
│       ├── CheckUtils.cs
│       ├── Common.cs
│       ├── DataConvert.cs
│       ├── Debug.cs
│       ├── EpcInfo.cs
│       ├── FileManage.cs
│       ├── IPConfig.cs
│       ├── MessageBoxEx.cs
│       ├── StringUtils.cs
│       └── Utils.cs
└── 多连接接收RFID数据_UHFAPP多连接(1).zip

24 directories, 196 files

下载声明:

本站资源均有第三方用户自行上传分享推荐,非本站自制,仅供玩家做交流学习之用!切勿用于商业用途!游戏作品版权归原作者享有,如有版权问题,请附带版权证明至邮件,本平台将应您的要求删除。
相关推荐:

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复