基于VHDL语言的简易洗衣机控制器

整理文档很辛苦,赏杯茶钱您下走!

免费阅读已结束,点击下载阅读编辑剩下 ...

阅读已结束,您可以下载文档离线阅读编辑

资源描述

I电子课程设计——简易洗衣机控制器设计学院:班级:姓名:学号:指导老师:2013年12月II目录第一部分:设计任务与要求………………………………………1第二部分:总体框图………………………………………………1第三部分:选择器件………………………………………………2第四部分:功能模块………………………………………………34.1时间预置编码寄存模块(settime)………………………34.2减法计数器模块(counter)………………………………44.3数码管显示模块(showtime)……………………………74.4时序电路模块(analyse)…………………………………94.5译码器模块(move)………………………………………11第五部分:总体设计电路图………………………………………135.1总体(顶层)设计电路图………………………………135.2顶层文件仿真…………………………………………135.3管脚分配图……………………………………………145.4硬件实验效果图…………………………………………14第六部分:课程设计心得体会……………………………………15III1简易洗衣机控制器设计一、设计任务与要求设计一个洗衣机洗涤程序控制器,控制洗衣机的电动机按下图所示的规律运转:时间到用两位数码管预置洗涤时间(分钟数),洗涤过程在送入预置时间后开始运转,洗涤中按倒计时方式对洗涤过程作计时显示,用LED表示电动机的正、反转,如果定时时间到,则停机并发出音响信号。二、总体框图RUNREVPAUSEtime_overclkK5startK6loadK1K2K3K4各个部分的具体功能描述如下:(一)预设时间和编码电路(settime):接受用户通过按钮预置的时间信息,编码译码驱动模块(move)clkout_1out_2start时序电路模块(analyse)clktime_overstart十进制减法计数器模块(counter)洗涤预置时间编码寄存电路模块(settime)报警信号时间显示模块(showtime)定时启动停止正转暂停反转暂停2成八位之后转给减法计数器。(二)减法计数器电路(counter):接收编码之后的预置时间信息,向电机运转控制电路传递运行信号,并将预置时间信息和剩余时间信息发给数码管显示电路进行实时显示。(三)数码管显示电路(showtime):接收减法计数器电路传来的时间信息,进行实时译码显示。(四)电机运转时序控制电路(analyse):接收运行起止信号,安排电机运行状态并编码输出。(五)译码器(move):接收电机运行状态信号,译码后实时控制电机的正传、反转和暂停。三、选择器件1、pc机一台。2、CPLD/FPGA适配器板:标准配置EPF10K10LC84-4接口板,下载接口是数字芯片的下载接口(DIGITALJTAG),主要用于CPLD/FPGA芯片的数据下载。3、实验箱:装有七段数码管及蜂鸣器等,七段数码管字形及真值表如下七段数码管字形如下:七段数码管真值表如下:3四、功能模块4.1时间预置编码寄存模块(settime)1、时间预置编码寄存模块settime如图1所示,time_input为通过开发板上拨码开关K1、K2、K3、K4输入的信号,load为输入确认信号。本模块将输入的四位时间信号编码成八位二进制数输出到减法计数器电路。图1时间预置编码寄存模块settime2、仿真图图2时间预置编码寄存模块仿真图用K1、K2、K3、K4给time_input输入一个二进制数0111,让load有效,输出time_set为00000111。3、时间预置编码寄存模块源代码libraryieee;useieee.std_logic_1164.all;useieee.std_logic_unsigned.all;entitysettimeisport(load:instd_logic;4time_input:instd_logic_vector(3downto0);time_set:outstd_logic_vector(7downto0));endsettime;architecturesettimeofsettimeissignalp1:std_logic_vector(7downto0);beginprocess(load)beginif(load'eventandload='1')thencasetime_inputiswhen0000=p1=00000000;when0001=p1=00000001;when0010=p1=00000010;when0011=p1=00000011;when0100=p1=00000100;when0101=p1=00000101;when0110=p1=00000110;when0111=p1=00000111;when1000=p1=00001000;when1001=p1=00001001;whenothers=p1=00000000;endcase;endif;endprocess;time_set=p1;endsettime;4.2减法计数器模块(counter)1、减法计数模块counter如图3所示,本模块中clk为系统时序脉冲信号,start为系统开始运行的信号,time_set接收编码之后的预置时间信息,向电机运转控制电路传递运行信号,并将预置时间信息和剩余时间信息发给数码管显示电路进行实时显示。time_remain为输出到数码管显示电路的时间信号,time_over为系统运行结束信号,可以用来控制蜂鸣器的通断。5图3减法计数模块2、仿真图图4减法计数模块仿真图3、减法计数模块源程序libraryieee;useieee.std_logic_1164.all;useieee.std_logic_unsigned.all;entitycounterisport(clk,start:instd_logic;time_set:instd_logic_vector(7downto0);time_remain:bufferstd_logic_vector(7downto0);time_over:bufferstd_logic);endcounter;architecturecounterofcounterisbeginprocess(clk)6variabletime_second:integerrange0to59:=59;beginif(clk'eventandclk='1')thenif(start='0')thenif(time_remain(7downto0)=0)thentime_remain=time_set;elsetime_remain(7downto4)=time_remain(3downto0);time_remain(3downto0)=time_set(3downto0);endif;time_second:=59;time_over='1';elseif(time_over='1')thenif(time_second=0andtime_remain(7downto0)=0)thentime_over='0';elseif(time_second=0)thenif(time_remain(3downto0)=0)thentime_remain(7downto4)=time_remain(7downto4)-1;time_remain(3downto0)=1001;time_second:=59;elsetime_remain(7downto4)=time_remain(7downto4);time_remain(3downto0)=time_remain(3downto0)-1;time_second:=59;endif;elsetime_second:=time_second-1;endif;endif;7endif;endif;endif;endprocess;endcounter;4.3数码管显示模块(showtime)1、数码管显示模块showtime如图5所示,本模块clk为系统时序脉冲信号,time_remain接收减法计数器电路传来的时间信息,进行实时译码显示,a,b,c,d,e,f,g分别对应数码管的七段,minute和second分别位选两个数码管,显示十位和个位。图5数码管显示模块2、仿真图图6数码管显示模块仿真图83、数码管显示模块源程序libraryieee;useieee.std_logic_1164.all;useieee.std_logic_unsigned.all;entityshowtimeisport(time_remain:instd_logic_vector(7downto0);clk:instd_logic;minute,second:outstd_logic;a,b,c,d,e,f,g:outstd_logic);endshowtime;architectureshowtimeofshowtimeissignaltemp:std_logic_vector(6downto0);signalbcd:std_logic_vector(3downto0);signalchoose:std_logic;beginprocess(clk)beginif(clk'eventandclk='1')thenchoose=notchoose;if(choose='1')thenminute='0';second='1';bcd=time_remain(7downto4);elseminute='1';second='0';bcd=time_remain(3downto0);endif;endif;endprocess;process(bcd)begincasebcdiswhen0000=temp=1111110;when0001=temp=0110000;9when0010=temp=1101101;when0011=temp=1111001;when0100=temp=0110011;when0101=temp=1011011;when0110=temp=1011111;when0111=temp=1110000;when1000=temp=1111111;when1001=temp=1111011;whenothers=temp=1111011;endcase;a=temp(6);b=temp(5);c=temp(4);d=temp(3);e=temp(2);f=temp(1);g=temp(0);endprocess;endshowtime;4.4时序电路模块(analyse)1、时序电路模块analyse如图7所示,本模块由start控制使能控制,通过时钟的输入进行计算当前系统所处的状态,并进行编码输出电机的运转状态,out_1为高位时表示电机正转,out_2为高位时表示电机反转。由于在显示以及输入的时候只有分钟,故在模块内部设计了一个秒的计时变量。图7时序电路模块2、仿真图103、时序电路模块analyse源程序libraryieee;useieee.std_logic_1164.all;useieee.std_logic_unsigned.all;entityanalyseisport(clk,start,time_over:instd_logic;out_1,out_2:outstd_logic);endanalyse;architectureanalyseofanalyseisbeginprocess(clk)variablestate:std_logic;variablewash_time:integer:=0;variablewait_time

1 / 18
下载文档,编辑使用

©2015-2020 m.777doc.com 三七文档.

备案号:鲁ICP备2024069028号-1 客服联系 QQ:2149211541

×
保存成功