目 录 摘 要 2 第一章 课题综述 4 1.1门禁系统的发展 4 1.2 门禁系统的功能 5 第二章 门禁系统的结构与总体分析 6 2.1 门禁系统的构成 6 2.2 门禁系统工作过程的软硬件实现框图 6 第三章 门禁控制系统的硬件设计 8 3.1 IC卡的读写 8 3.1.1 IC卡的种类和特点 8 3.1.2 读卡器 9 3.2 门禁控制器 10 3.2.1 门禁控制器的功能 10 3.2.2 门禁控制器的总体设计 11 3.3 步进电机 14 第四章 系统软件的设计 15 4.1 控制中心管理软件 15 4.2 门控制器上的软件 15 第五章 课题设计总结 27 致 谢 28 参考文献 29 门禁系统设计 摘 要 门禁控制子系统是采用现代电子与信息技术在建筑物内外的出/入对人(或物)的进/出、实行放、行、拒绝、记录和报警等操作的一种电子自动化系统,通常又叫做出/入控制系统。门禁系统在建筑物内的主要管理区,出/入口电梯厅,设备控制中心机房,贵重物品的库房等重要部位的通道口安装门磁,电控锁或控制器,读卡器等控制装置,有管理人员在中心控制室监控,能够对各通道口的位置,通行对象及通行时间,方向进行实时控制或设定程序控制,从而实现对出/入口的安全控制。系统的前端设备为各种出/入口目标的识别装置和门锁启闭装置(执行机构),传输一般采用专线或网络传输,系统的终端为显示/控制/通信设备,可采用独立的控制器,也可以通过计算机网络对各控制器实施集中监控。门禁系统一般要与防盗系统,视频监控系统和消防系统联动,才能有效的实施安全防范。 关键字:电子与信息技术、电子自动化、门磁、电控锁、控制器、读卡器、网络传输。 The abstract entrance guard control subsystem is uses the modern electron and the information technology/enters inside and outside the building to the human (or thing) enters/, implements puts, the line, refuses, to record and to report to the police and so on the operation one kind of electron automated systems, usually is called/enters the control system.The entrance guard system in building main administrative district, leaves/the entrance elevator lobby, the device control center engine room, the valuables storehouse and so on the important spot passes the road junction to install the gate magnetism, the electrically controlled lock or the controller, read control devices and so on the card, has the administrative personnel in the central control room monitoring, can to each road junction position, the general object and the general time, the direction carries on the real-time control or the hypothesis procedure control, thus realizes to leaves/the entrance safety control.The system front end equipment for each kind of/entrance goal recognition system and the door lock start-stop system (implementing agency), the transmission uses the special line or the networktransmissiongenerally,thesystemterminalforthedemonstration/control/communicatio
1
网络修复工具是一款简单易用的断网修复软件,该程序旨在帮助您修复由于非正常关机、更新系统、安装程序、安装驱动原因而造成的断网问题,其具备了简单直观的操作界面,打开程序后,即可一键开始修复,在修复前,您也可以查看详细的描述信息,便于查看是否符合您的实际情况,此外,软件还提供了设备管理器、无线软开关、移动中心、网络连接、删除无线配置、系统文件检查、创建宽带连接等多种功能,可辅助完成修复。
2021-11-27 21:01:06 1.15MB 网络 网络传输 计算机网络 断网
该国际标准规定了为支持海事组织msc.191(79)和msc.302(87)号决议而提交与船舶导航显示有关的导航信息的一般要求、测试方法和所要求的测试结果。
2021-11-22 14:05:31 1.24MB IEC
1
语音聊天源码 namespace VoiceChat.Model { // Подтверждения public enum Flags { Accept, BeginVideoSend, EndVideoSend } // Состояния модели public enum ModelStates { WaitCall, OutgoingCall, IncomingCall, Talk, Close } public class VoiceChatModel : INotifyPropertyChanged { private const int LINES_COUNT = 2; public AudioSharing audio; public VideoSharing video; public BdtpClient bdtpClient; private Thread waitCall; public bool Connected { get { return bdtpClient.Connected; } } public IPAddress RemoteIP { get { return remoteIP; } set { remoteIP = value; OnPropertyChanged("RemoteIP"); } } private IPAddress remoteIP; public IPAddress LocalIP { get { return bdtpClient.LocalIP; } } // Текущее состояние public ModelStates State { get { return state; } set { state = value; OnPropertyChanged("State"); mediaSounds.ControlSounds(); } } private ModelStates state; public CallTimer callTimer; private MediaSounds mediaSounds; public event PropertyChangedEventHandler PropertyChanged; private void OnPropertyChanged(string PropertyName) { PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(PropertyName)); } public VoiceChatModel() { bdtpClient = new BdtpClient(GetLocalIP(), LIN
2021-11-19 12:51:21 722KB 语音聊天源码 用tcp与udp网
1
java socket 多线程网络传输多个文件
2021-11-19 07:51:48 278KB java
1
对比较常用的网络通信方式进行了封装,包括Http、WebSocket、Socket和SignalR。BestHttp比Unity3D自带的www功能丰富很多.
2021-11-16 13:46:50 3.11MB websoc Best   webgl
1
网络传输 http3 QUIC C/C++
2021-11-06 09:04:49 3.36MB QUIC HTTP3 网络传输 c++
1
本代码主要实现的是利用网络传输图片,用在我的树莓派项目之上。该项目在PC上运行服务端,树莓派上运行客户端,两者连接到同一局域网中,修改代码中的IP地址,就可以实现将树莓派采集到的图像数据实时传输到PC端。先运行服务端代码,然后运行客户端代码即可。树莓派摄像头使用的是普通的USB摄像头,并且在树莓派上安装了opencv,在树莓派上安装opencv的过程可以参考https://www.pyimagesearch.com/2017/09/04/raspbian-stretch-install-opencv-3-python-on-your-raspberry-pi/。最后,该代码稍加修改就可以传输其
2021-11-05 08:23:38 70KB c nc op
1
pycurl 统计网络传输时间,下载数据包大小,建立连接时间,平均下载速度
2021-11-01 21:02:54 2KB pycurl
1
控件名称: DICOM3 网络传输 ActiveX 控件 适用系统: VB、VB.NET、VC++、DELPHI、C++ Builder、PB开发平台 控件特点: *支持Store SCP传输(DICOM文件接收) *支持Store SCU传输(DICOM文件发送) *支持Query/Retrive服务(DICOM查询取回) 下载试用: 下载 控件名称: DICOM3 胶片打印 ActiveX 控件 适用系统: VB、VB.NET、VC++、DELPHI、C++ Builder、PB开发平台 控件特点: *DICOM标准打印协议
2021-10-27 17:23:53 2.02MB PACS DICOM3.0 插件
1