- 1、本文档共13页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
重庆大学EDA课程设计LM75A温度检测重庆大学EDA课程设计LM75A温度检测
重庆大学通信学院10 级EDA 课程设计之温度监测系统
a. 本程序硬件可利用LM75A 实现温度检测。
b. 重庆大学教学用LB0 开发板上LM75A 的硬件管脚标识应加以注意:
c. 作者,重大电子10 胡亚文cqu.edu.cn QQ:1376500259 TEL
、
d . 最终效果如下:
1. 顶层电路如下:其有三部分组成,分频、LM75控制,译码显示。
重庆大学10 电子胡亚文 1
分频:
(a )
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_arith.all;
use ieee.std_logic_unsigned.all;
entity div_500 is
port(
clk:in std_logic;
clk_fp:out std_logic);
end entity;
architecture one of div_500 is
signal n:integer range 0 to 249;
signal cp:std_logic;
begin
process(clk)
begin
if clkevent and clk=1 then
if n249 then
n=n+1;
else
n=0;cp=not cp;
end if;
end if;
end process;
clk_fp=cp;
end one;
(b)
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_arith.all;
重庆大学10 电子胡亚文 2
use ieee.std_logic_unsigned.all;
entity div_5000 is
port(
clk:in std_logic;
clk_fp:out std_logic);
end entity;
architecture one of div_5000 is
signal n:integer range 0 to 2499;
signal cp:std_logic;
begin
process(clk)
begin
if clkevent and clk=1 then
if n2499 then
n=n+1;
else
n=0;cp=not cp;
end if;
end if;
end process;
clk_fp=cp;
end one;
(c )
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_arith.all;
use ieee.std_logic_unsigned.all;
entity div_50 is
port(
clk:in std_logic;
clk_fp:out std_logic);
end entity;
architecture one of div_50 is
signal n:integer range 0 to 24;
signal cp:std_logic;
begin
process(clk)
begin
if clkevent and clk=1 then
if n24 then
n=n+1;
else
n=0;cp=not cp;
重庆大学10 电子胡亚文 3
end if;
end if;
end process;
clk_fp=cp;
end one;
分频系数任意控制,但需满足器件的时序要求。即SCL 速率低于400Khz(0.5us) 。
LM7
文档评论(0)