您现在的位置:多问网软件下载毕业设计论文电子毕业设计单片机毕业设计基于单片机的中文输入系统设计(程序+电路原理图+PCB图)精品☆下载

基于单片机的中文输入系统设计(程序+电路原理图+PCB图)精品☆

  • 名称:基于单片机的中文输入系统设计(程序+电路原理图+PCB图)精品☆
  • 类型:单片机毕业设计
  • 授权方式:免费版
  • 更新时间:06-10 00:08:11
  • 下载要求:无需注册
  • 下载次数:325
  • 语言简体中文
  • 大小:0 Bytes
  • 推荐度:3 星级
基于单片机的中文输入系统设计(程序+电路原理图+PCB图)精品☆简介

标签:单片机毕业设计论文,毕业论文,毕业设计下载, 本站提供基于单片机的中文输入系统设计(程序+电路原理图+PCB图)精品☆免费下载,http://www.duowen123.com

摘  要
随着我国嵌入式技术的迅猛发展,中文汉字的输入与显示在高端电子产品以及智能终端中的应用越来越广泛。目前广泛应用于数字终端的中文输入法是Nokia的T9输入法、Motorola的iTAP输入法和Erics-son的字能输入法。目前,以LCD和数字键盘实现的人机交互式界面在智能终端中广泛采用,在不同的应用场合,对人机界面的要求也不同,一些情况下只要求简单参数的显示和选择,而在一些信息终端中,还要求文字的输入。
本设计方案在AT89C55WD单片机平台上构造简易的拼音输入法,输入形式是用户通过数字键盘输入一个数字串,LCD显示出该数字串对应的各种拼音让用户进行选择, 拼音数组中的每一个元素都指向一个同音汉字串。用户在同音汉字串中选择一个汉字就可以得到该汉字的GB2312编码。通过这个GB2312码可以在汉字点阵字模库中检索到该汉字字模的起始位置,最后用带字库的128×64点阵式LCD模块为输出显示设备,实现汉字、英文字母、数字,标点符号等文本信息的输入。

关键字:AT89C55WD;拼音输入法;TS12864A-3液晶;中文字库原理

Abstract
With the rapid development of embedding technology, the inputting and displaying of the Chinese character in high-end electronic products, as well as the application of intelligent terminals are widely used more and more. At present, the number of terminals are widely used in the inputting method of Chinese character which are Nokia's T9 inputting method, Motorola's iTAP inputting method and Erics-son's words inputting method. At present, LCD and digital keyboard to achieving the man-machine interactive interface are widely used in intelligent terminals. In different applications, the requirements of human-computer interface is different, some cases require only some simple showing and choosing of parameters, and  some information terminals, as well as require the inputting about text.
The design in AT89C55WD single-chip platform makes up simple phonetic inputting method,  the inputting form is to enter a number string through the numeric keypad by users, the system shows the number of strings which corresponds to the alphabet ,choosing by users, the array of a homonym elements point to a string of Chinese characters. when users choose r a Chinese character can be encoded in the GB2312 Chinese characters. It can retrieve the starting position of the character matrix through the GB2312 Chinese character dot-matrix code matrix in the database . Finaly the 128 × 64 dot matrix LCD module is used for the output showing device, to realize the inputting about the Chinese characters, English letters, numbers, punctuation marks, text input and so on.
 
Key words:  AT89C55WD; Pinyin input method; TS12864A-3 LCD; Chinese font Principle

1.1 设计任务
(1)用单片机作为主控制器;
(2)用LCD显示出来;
(3)具有全拼输入法功能;
(4)具有英文、数字和标点符号的输入功能;
(5)具有模糊音输入功能;
(6)具有五笔、笔画或区位码输入法功能(选做)。
1.2 设计要求
(1)掌握单片机电路的设计和使用方法;
(2)学习掌握中文字库原理及使用;   
(3)确定电路原理图及系统工作原理;
(4)制作PCB板,硬件安装;
(5)拼音输入法的设计;
(6)伟福软件仿真运行:仿真器与目标板联调;
(7)程序烧写:仿真运行正常后用编程器将可执行文件写入AT89C55WD;
(8)脱机运行。

设计思路
本课题的预期设计构思是采用S52单片机作为主控制器,输入通过自制4×4键盘采取逐行扫描方式获取键值,将键盘输入的数字序列转换为拼音编码,然后搜索到该拼音编码对应的汉字编码,最后采用LCD12864液晶显示模组附带的驱动程序输出来。为实现以上设计思想,整个系统分为按键扫描、拼音输入法,液晶显示三部分。






目  录    13000字
引言    1
1  设计任务及要求    2
1.1 设计任务    2
1.2 设计要求    2
1.3 设计思路    2
1.4 方案选择与论证    2
1.4.1 人机接口模块的选择    2
1.4.2 拼音输入法方案    3
1.4.3 12864液晶    3
1.5 工作原理简介    3
1.6 系统原理框图    4
2  硬件设计    4
2.1 4×4按键    4
2.2 AT89C55WD单片机    5
2.3 12864液晶    6
3  软件设计    8
3.1 按键扫描模块    9
3.2  LCD显示模块    9
3.3 文字输入模块    10
4  系统制作过程    16
4.1 硬件制作和调试    16
4.2 软件调试    17
4.2.1 按键部分调试    17
4.2.2 12864LCD部分    17
4.2.3 中文全拼输入法调试    18
5   操作说明    19
5.1 输入汉字    20
5.2 输入英文字母    21
5.3 输入数字    21
5.4 输入符号    22
5.5 退格键    22
5.6 总效果图    22
6  结论    22
谢  辞    24
参考文献    25
附录一  电路原理图    26
附录二  电路PCB    26
附录三  显示过程图    27
附录四  实物图    28

单片机(43)程序(5)电路(2)原理图(6)PCB图(4)中文输入(1)

,大小:0 Bytes
相关热词搜索: tag: 单片机毕业设计,单片机毕业设计论文,毕业论文,毕业设计下载,毕业设计论文 - 电子毕业设计 - 单片机毕业设计
上一篇:农业暖棚(温室)温湿度控制系统的设计☆
下载评论
联系我们 | 网站地图 | 范文大全 | 管理资料 | 驾照考试 | 教学资料 | 名言大全 | 软件下载
Copyright @ 多问网 all rights reserved
学生评语_教案设计_小学语文试卷
1 2 3 4 5 6 7 8 9 10 11 12