求助!!!!VHDL 如何用按键来转换数码管的显示
应该用4对数码管显示的代码,现在只有2对数码管,可以用按键来选择显示那组数据,请问VHDL应该怎么写...
应该用4对数码管显示的代码,现在只有2对数码管,可以用按键来选择显示那组数据,请问VHDL应该怎么写
展开
2个回答
2015-06-26
展开全部
你可以把4对分成两组,当按键按一下,就换一组显示,或者两个按键控制,按下哪个按键就显示哪个,,,给你一个特例程序分别是以上两种方法 的,你可以参考参考,,,
port(input1,input2:in std_logic_vector(7 downto 0);--两组数据
key:in std_logic;--按键(应该是消抖后的)
output:out std_logic);
end entity;
architecture art of ... is
begin
process(input1,input2,key)
variable cnt:std_logic;;
begin
if key'event and key='1' then ---假设按键是高电平有效;
cnt:=not cnt;
if cnt='0' then
output<=input1;
else output<=input2;
end if;
end if;。
port(input1,input2:in std_logic_vector(7 downto 0);--两组数据
key:in std_logic;--按键(应该是消抖后的)
output:out std_logic);
end entity;
architecture art of ... is
begin
process(input1,input2,key)
variable cnt:std_logic;;
begin
if key'event and key='1' then ---假设按键是高电平有效;
cnt:=not cnt;
if cnt='0' then
output<=input1;
else output<=input2;
end if;
end if;。
深圳市容大彩晶科技有限公司
2024-11-14 广告
2024-11-14 广告
广告机代理优选容大彩晶,深圳市容大彩晶科技有限公司自2007年成立伊始,一直专注于液晶商用显示产品的技术研发及产品服务。公司依托具有自主研发能力、创新高效的技术团队,打造出行业优质商用液晶显示设备。容大彩晶产品涵盖商用液晶显示、多媒体广告机...
点击进入详情页
本回答由深圳市容大彩晶科技有限公司提供
展开全部
你可以把4对分成两组,当按键按一下,就换一组显示,或者两个按键控制,按下哪个按键就显示哪个!!!给你一个特例程序分别是以上两种方法 的,你可以参考参考,,,
port(input1,input2:in std_logic_vector(7 downto 0);--两组数据
key:in std_logic;--按键(应该是消抖后的)
output:out std_logic);
end entity;
architecture art of ... is
begin
process(input1,input2,key)
variable cnt:std_logic;;
begin
if key'event and key='1' then ---假设按键是高电平有效;
cnt:=not cnt;
if cnt='0' then
output<=input1;
else output<=input2;
end if;
end if;
end process;
end art;
port(input1,input2:in std_logic_vector(7 downto 0);--两组数据
key:in std_logic;--按键(应该是消抖后的)
output:out std_logic);
end entity;
architecture art of ... is
begin
process(input1,input2,key)
variable cnt:std_logic;;
begin
if key'event and key='1' then ---假设按键是高电平有效;
cnt:=not cnt;
if cnt='0' then
output<=input1;
else output<=input2;
end if;
end if;
end process;
end art;
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询