鉴于大家对理学论文十分关注,我们编辑小组在此为大家搜集整理了“多媒体中央控制器设置写入程序上位机程序设计”一文,供大家参考学习!
论文编号:TX424 论文字数:19653,页数:71
摘 要
多媒体中央控制器是用于多媒体教学设备集中控制的多媒体设备,能极大方便多媒体设备的使用,减少管理成本,节约能源。
本设计为多媒体中央控制器设置写入程序上位机程序设计,是对多媒体中央控制器控制投影机参数设置的一个系统,其参数包括:时钟时间、八段控制时间和使用投影机的开机码、关机码、RGB1、RGB2、Video、S-video等,通过RS-232串行口与多媒体中央控制器进行通信。
本软件使用Visual C++软件进行开发程序,使用MSComm控件来开发串行口通信,并利用windows 下串行通信编程的ActiveX控件进行串行接口收发数据,利用ClassWizard定义CMSComm类控制对象,然后在对话框中添加控件并添加串行口事件消息处理函数OnComm(),打开串行口和设置串行口参数并发送数据,在发送部分加入一个复选接钮,用于选择以文本形式或十六进制形式发送。
关键词:投影机;Visual C++ 6.0;Mscomm控件;串行口通讯
Abstract
Multimedia central controller is multimedia equipment which is used for multimedia teaching equipment centralized control. It can greatly facilitate the use of multimedia equipment ,reduce the cost of management and conserve energy.
The design of the multimedia central controller installed into the PC procedural programming, the central controller multimedia projector parameter setting of a system whose parameters include : clock time, eight-time control and the use of the projector''s startup code, shutdown code, RGB1, RGB2, Video, S-video and so on, through the RS-232 serial port with the central controller for multimedia communications
The software use Visual C + + software for development programming, use MSComm controls to develop serial communication, ActiveX controls of serial communication Programming in windows, and ClassWizard to definite CMSComm type control object. Then, add controls and Serial incident message processing function OnComm()in the dialog box. Open the serial port, set serial port parameters and send data. Adding a check received button in sending part to choose the sending form in text or hexadecimal.
Keywords : projector; Visual C + + 6.0; Mscomm control; Serial Communication
目 录
1 绪论 1
1.1 开发思想 2
1.2 开发环境 2
1.2.1 硬件环境 2
1.2.2 软件环境 2
1.3 开发工具 3
2 串口通讯RS-232-C详解 4
2.1 RS-232-C概况 4
2.1.1 电气特性 5
2.1.2 连接器的机械特性 6
2.1.3 RS-232C的接口信号 8
2.2 远距离通信 10
2.2.1 采用Modem(DCE)和电话网通信时的信号连接 10
2.2.2 采用专用电话线通信 11
2.3 近距离通信 11
2.3.1 零Modem 的最简连线(3线制) 12
2.3.2 零Modem标准连接 13
3 VC Mscomm控件应用 15
3.1 Mscomm控件 15
3.1.1 MSComm控件两种处理通信的方式 16
3.1.2 MSComm 控件的常用属性 16
3.2 MSComm控件实现通信[VC] 23
3.2.1 串口通信基础知识 23
3.2.2 使用MSComm控件 25
4 系统实现 27
4.1 系统模块 27
4.1.1 建立项目 27
4.1.2 在项目中插入MSComm控件 27
4.1.3 利用ClassWizard定义CMSComm类控制对象 28
4.1.4 在对话框中添加控件 28
4.1.5 添加串口事件消息处理函数OnComm() 29
4.1.6 打开串口和设置串口参数 31
4.1.7 发送数据 31
4.2 其它功能模块 32
4.2.1 发送十六进制字符 32
4.2.2 在接收框中以十六进制显示 35
4.2.3 如何设置自动发送 37
4.2.4 什么是VARIANT数据类型及如何使用 38
5 系统调试 39
结 论 40
致 谢 41
参 考 文 献 42
附录A 43
附录B 58
附录C 67