基于语音识别的家居智能监控系统 - 图文

2019-01-19 13:33

内蒙古科技大学

本科生毕业设计说明书(毕业论文)

题 目:基于语音识别的家居智能监控系统学生姓名:学 号:专 业:测控技术与仪器班 级:指导教师:

内蒙古科技大学毕业设计说明书(毕业论文)

基于语音识别的家居智能监控系统

摘 要

智能家居系统大体而言可分为高层的信息娱乐网络和底层的数据采集与网络控制,在底层以微控制器为核心作为智能家居网络结点是目前智能家居的主要实现方式,语音识别技术在我国的研究成果也不是很高,但是用语音识别技术来与家居智能控制相结合是非常创新的。

本设计是采用AT89C52单片机为核心控制器的智能家居监控系统,系统通过无线nrf905作为信息传输媒介,将语音识别软件收到的具体指令发送至现场对单片机进行控制,从而控制家居的动作;同时现场单片机将数据通过无线发送至主控单片机,通过PC界面实时监控家居各模块的运行状态。

该系统的功能模块分为:语音控制窗帘模块、温度检测模块、火焰检测模块和防盗报警模块。通过C#编程,在Microsoft Speech SDK的基础上实现对家具的智能监控,在PC机界面上直观的看到家居所有情况。

关键字:单片机;语音识别; nrf905;温度检测;防盗报警

I

内蒙古科技大学毕业设计说明书(毕业论文)

Speech recognition-based smart home monitoring system

Abstaract

Generally speaking the smart home system can be divided into high-level information and entertainment network,the underlying data collection and network control in the bottom to the microcontroller as the core as a smart home network node,this is the main achievement of smart home way,the speech recognition technology inour research is not very high,but the voice recognition technology to the home intelligent combination of the control is very innovative.

The design is using AT89S52 MCU core controller intelligent home monitoring system, the system through wireless nrf905 as information transmission medium,that specific instructions received by the voice recognition software is sent to the scene to control the MCU to control the actions of home;at the same time the scene SCM data through the wireless sent to the host microcontroller,real-time monitoring via a PC interface home run of the module state.

The functional modules of the system is divided into,the voice control the curtains module temperature detection module,the flame detection module,and burglar alarm module. On the basis of the Microsoft Speech SDK, C # Programming,intelligent monitoring of the furniture intuitive interface of the PC,see the home in all cases.

Keywords: SCM;speech recognition;nrf905;temperature detection;burglar alarm

II

内蒙古科技大学毕业设计说明书(毕业论文)

目 录

摘 要 ......................................................................................................................................... I Abstaract .................................................................................................................................... II 第一章 引言 .............................................................................................................................. 1

1.1 智能家居概述 ............................................................................................................. 1 1.2 智能家居的发展现状 ................................................................................................. 2 1.3 智能家居的功能及意义 ............................................................................................. 3 1.4 Speech SDK简介 .......................................................................................................... 3

1.4.1 语音识别引擎接口 .......................................................................................... 4 1.4.2 语音合成引擎接口 .......................................................................................... 4 1.5 语音识别的发展历史及应用领域 ............................................................................. 5

1.5.1 国外研究历史及现状 ...................................................................................... 5 1.5.2 国内研究历史及现状 ...................................................................................... 6

第二章 智能家居监控系统的方案设计 .................................................................................. 8

2.1 系统实现过程分析 ..................................................................................................... 8 2.2 单片机最小系统板设计 ............................................................................................. 8

2.2.1 主控模块 .......................................................................................................... 9 2.2.2 现场控制模块 ................................................................................................ 10 2.2.3 无线通信模块 ................................................................................................ 11 2.2.4 电源模块 ........................................................................................................ 12 2.2.5 串口通信 ........................................................................................................ 13 2.3 智能家居监控系统模块化设计 ............................................................................... 13 第三章 智能家居监控系统硬件设计 .................................................................................... 15

3.1 直流电机驱动电路设计 ........................................................................................... 15

3.1.1 直流电机的工作原理 .................................................................................... 15 3.1.2 直流电机驱动芯片L298简介 ........................................................................ 15 3.1.3 直流电机硬件电路设计 ................................................................................ 16 3.2 通风模块硬件设计 ................................................................................................... 17

3.2.1 温度传感器DS18B20概述 ............................................................................ 17

III

内蒙古科技大学毕业设计说明书(毕业论文)

3.2.2 通风模块硬件电路设计 ................................................................................ 18 3.3 防盗报警模块硬件设计 ........................................................................................... 20 3.4 无线通信模块电路设计 ........................................................................................... 21 第四章 智能家居监控系统软件系统设计 ............................................................................ 23

4.1 主控模块程序设计 ................................................................................................... 23

4.1.1 主要实现功能分析 ........................................................................................ 23 4.1.2 主控模块系统流程图 .................................................................................... 23 4.2 现场控制模块程序设计 ........................................................................................... 24

4.2.1 现场控制模块功能分析 ................................................................................ 24 4.2.2 现场控制模块程序流程图 ............................................................................ 24 4.3 温度检测及通风模块软件设计 ............................................................................... 25

4.3.1 DS18B20测温数据的读取程序设计 ............................................................. 25 4.3.2 DS18B20温度读取流程 ................................................................................. 29 4.4 无线nrf905模块程序设计 ........................................................................................ 30

4.4.1 ShockBurst TX 发送流程 .............................................................................. 30 4.4.2 ShockBurst RX 接收流程 .............................................................................. 31 4.4.3 节能模式及SPI时序 ...................................................................................... 31 4.4.4 无线nrf905程序流程图 ................................................................................. 32

第五章 上位机界面设计 ........................................................................................................ 36

5.1 C#及.NET简介 ........................................................................................................... 36

5.1.1 C#的发展历程 ................................................................................................ 36 5.1.2 .NET的发展及应用 ........................................................................................ 37 5.2 上位机登录界面的开发过程 ................................................................................... 38

5.2.1 登录界面简介 ................................................................................................ 38 5.2.2 登录界面设计过程 ........................................................................................ 38 5.3 主界面的开发过程 ................................................................................................... 43

5.3.1 具体代码添加 ................................................................................................ 47 5.3.2 数据的读取及显示 ........................................................................................ 47

第六章 语音识别功能的设计与实现 .................................................................................... 48

IV


基于语音识别的家居智能监控系统 - 图文.doc 将本文的Word文档下载到电脑 下载失败或者文档不完整,请联系客服人员解决!

下一篇:光缆线路维护规程范本 - 图文

相关阅读
本类排行
× 注册会员免费下载(下载后可以自由复制和排版)

马上注册会员

注:下载文档有可能“只有目录或者内容不全”等情况,请下载之前注意辨别,如果您已付费且无法下载或内容有问题,请联系我们协助你处理。
微信: QQ: