-
射频卡读写程序,射频识别技术集成电路卡,美国…
射频卡读卡程序,射频IC卡识别技术,通常由载有密码的射频IC卡来代替传统的键盘密码。读卡模块读出密码后,即产生输出电信号,继而驱动执行机构动作,或将密码(如卡号)送给外围对接设备(如电脑或单片机等)。采用射频卡读卡模块及感应体构成的特定系统中,因射频卡内码信号唯一且不可复制,因此射频卡不仅杜绝了非法复制密码,还为各种控制采用信息化管理创造了条件。-RF card reader procedure, radio frequency identification technology IC cards, usually containing the password from the RF IC cards to replace the traditional keyboard password. Reader module read out a password, as a result, the output signal, and then drive the implementation agency action, or passwords (such as logging) gave the external docking equipment (such as computer or microcontroller, etc.). RF card reader module consisting of sensors and the specific system, RF signal code card but not the only copy, RF Card not only prevents illegal copying passwords, but also controls the use of information management to create the conditions.
- 2023-07-23 01:35:03下载
- 积分:1
-
有关地址通讯的J2ME例子-展示了一个在草原中跳跃的牛仔
有关地址通讯的J2ME例子-展示了一个在草原中跳跃的牛仔-address the communications J2ME example- showed a jump in the plains of cowboy
- 2022-03-22 02:55:00下载
- 积分:1
-
using the Gaussian quadrature signal in the channel source
采用汉明码的qpsk信号在高斯信道下的源程序-using the Gaussian quadrature signal in the channel source
- 2022-11-17 19:35:08下载
- 积分:1
-
hiperlan协议中mac接入仿真,one proposed way for random RCH number
hiperlan协议中mac接入仿真,one proposed way for random RCH number-hiperlan agreement mac access simulation, one proposed way for random number RCH
- 2022-01-25 16:12:55下载
- 积分:1
-
简化SPCOMM,去掉一些编程不常用功能 串口通讯控件
简化SPCOMM,去掉一些编程不常用功能 串口通讯控件-Serial Communication Control
- 2022-04-12 02:45:42下载
- 积分:1
-
很详细的介绍sip的文章,可以作为通信变成的参考,值得学习。...
很详细的介绍sip的文章,可以作为通信变成的参考,值得学习。-Sip a very detailed introduction of the article, can be used as communication becomes a reference, it is worth learning.
- 2022-02-13 02:20:17下载
- 积分:1
-
对第一种信令中继接口进行分析,并转换为T。
对中继接口一号信令进行解析,并转换为TCP/IP接口。-right on the 1st signaling relay interface for the analysis, and conversion to the TCP/IP interface.
- 2023-03-27 17:15:04下载
- 积分:1
-
Windows 管道通信
建立管道服务器、客户端实现双向通信,消息实行队列机制。
- 2022-02-28 09:31:34下载
- 积分:1
-
一个VB控制并口的通讯的源代码,显示如何用VB控制并口通讯
一个VB控制并口的通讯的源代码,显示如何用VB控制并口通讯-a VB control of the parameter of source code, and show how VB control Parallel Communications
- 2023-01-12 20:40:04下载
- 积分:1
-
VC++ 封装了队列类 /// /// /// ///// //this a example for using Queue /////////////////...
VC++ 封装了队列类 /// /// /// ///// //this a example for using Queue ///////////////////////////////////////// #include "Queue.h" //define queue data struct struct QueueData { char data[20] int nId } //define queue typedef TQueue TMyQueue //put data into queue { QueueData data memset(&data, 0, sizeof(data)) strcpy(data.data, "hello!") data.nId = 0 m_pMyQueue.TryPut(data) } //try put data into queue { QueueData data memset(&data, 0, sizeof(data)) strcpy(data.data, "hello!") data.nId = 0 if(m_pMyQueue.TryPut(data) != 0) { MessageBox("put queue error") } else { MessageBox("put queue success") } } //get data from queue { QueueData data memset(&data, 0, sizeof(data)) m_pMyQueue.Get(data) MessageBox(data.data) } //try get data from queue { QueueData data memset(&data, 0, sizeof(data)) m_pMyQueue.TryGet(data) MessageBox(data.data) }-cohort of VC Packaging category /////////////////////////////////////////// this is a example for using Queue ///////
- 2023-07-24 17:35:03下载
- 积分:1