登录
首页 » Others » 温湿度传感器DHT11读写Verilog驱动源码Quartus工程文件.zip

温湿度传感器DHT11读写Verilog驱动源码Quartus工程文件.zip

于 2021-12-15 发布
0 155
下载积分: 1 下载次数: 1

代码说明:

温湿度传感器DHT11读写Verilog驱动源码Quartus工程文件,FPGA读取DHT11温度湿度数据并通过数码管显示输出,FPGA型号Cyclone4E系列中的EP4CE10F17C8,Quartus版本18.0。 module top_dht11( input sys_clk , //系统时钟 input sys_rst_n, //系统复位 inout dht11 , //DHT11总线 input key , //按键 output [5:0] sel , //数码管位选信号 output [7:0] seg_led //数码管段选信号 ); //wire define wire [31:0] data_valid; wire [19:0] data ; wire [5:0] point ; //***************************************************** //** main code //***************************************************** //dht11驱动模块 dht11_drive u_dht11_drive ( .sys_clk (sys_clk), .rst_n (sys_rst_n), .dht11 (dht11), .data_valid (data_valid) ); //按键消抖模块 key_debounce u_key_debounce( .sys_clk (sys_clk), .sys_rst_n (sys_rst_n), .key (key), .key_flag (key_flag), .key_value (key_value) ); //按键控制温/湿度显示 dht11_key u_dht11_key( .sys_clk (sys_clk), .sys_rst_n (sys_rst_n), .key_flag (key_flag), .key_value (key_value), .data_valid (data_valid), .data (data), .sign (sign), .en (en), .point (point) ); //动态数码管显示模块 seg_led u_seg_led ( .clk (sys_clk), .rst_n (sys_rst_n), .seg_sel (sel), .seg_led (seg_led), .data (data), .point (point), .en (en), .sign (sign) ); endmodule

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • DSP实验(10次实验有详细步骤)
    DSP整套实验资料,具有很强的实用性,掌握里面所有的东西,整个DSP技术都会有很大提升
    2019-10-30下载
    积分:1
  • PCIE SPEC 4.0 规格书
    PCIE SPEC 4.0 规格书PCI-SIG disclaims all warranties and liability for the use of this document and the information contained herein andassumes no responsibility for any errors that may appear in this document, nor does PCi-Sig make a commitment toupdate the intormation contained hereinContact the Pci-sig office to obtain the latest revision of this specificationQuestions regarding the PCI Express Base Specification or membership in PCI-SIG may be forwarded toMembership serviceswww.pcisg.comadministration(apcisig.comPhor503-619-0569503-644-6708Technical Supporttechsupp( apcisig comDISCLAIMERThis PCI Express Base Specification is provided "as is" with no warranties whatsoever, including any warranty olmerchantability, noninfringement, fitness for any particular purpose, or any warranty otherwise arising out of anyproposal, specification, or sample. PCT-SIG disclaims all liability for infringement of proprietary rights, relating touse of information in this specification. No license, express or implied, by estoppel or otherwise, to any intellectualproperty rights is granted hereinPCI, PCI Express, PCle, and PCi-Sig are trademarks or registered trademarks of PCI-SIgAll other product names are trademarks, registered trademarks, or servicemarks of their respective ownersCopyright O 2002-2014 PCI-SIG
    2020-07-04下载
    积分:1
  • matlab 交通流中机动车辆的检测
    交通流中机动车辆的轮廓提取与标识 附带视频
    2020-12-01下载
    积分:1
  • csma/ca和csma/cd的matlab源代码仿真
    可设置多个节点,code旁有详细的注释,完美的图形显示,希望能帮到各位
    2020-12-02下载
    积分:1
  • C/A产生matlab
    C/A码的产生,GPS抗干扰中用到,matlab程序仿真
    2021-05-06下载
    积分:1
  • PLECS STATCOM
    STATCOM PLECS 可用里面包含各种控制,仿真速度快,希望可以相互学习
    2020-12-10下载
    积分:1
  • 检测、估计和调制理论(卷1+卷2+卷3)——全
    检测估计和调制理论作者简介  Harry L.Van Trees 美国麻省理工学院电子工程系教授,曾担任美国空军首席科学家、美国国防通信署首席科学家等要职。  迄今为止,本书仍然是公认的关于检测、参数估计和线性与非线性调制波形估计方面的一本论述详尽、深入、成功的著作。也是一本较好的研究生教材。内容是研究发生在通信、雷达和声纳中被噪声污染了的各种线性与非线性调制、随机与非随机波形的最佳处理的数学方法和物理结构,各种系统可能达到的性能极限和影响它的各种因素。全书包括导论、经典检测和估计理论、随机过程的描述、信号检测与信号参数估计、连续波估计、线性估计和讨论等7章。每章附有相当数量的扩大内容
    2020-07-03下载
    积分:1
  • ORL人脸库的PCA人脸识别,GUI界面
    对ORL人脸库的PCA人脸识别,内涵11个m文件以及一个结果演示的Word。运行facegui.m可以直接运行,无需任何修改。这里使用了GUI界面,功能是查看识别成功率以及图片的识别。
    2020-11-27下载
    积分:1
  • 复旦大学出版社 李贤平 《概率论基础》课后习答案
    【实例简介】复旦大学出版社 李贤平 《概率论基础》课后习题答案 (不过是第一版的,与第二版差不太多,至今没有发现第二版的)
    2021-11-08 00:36:36下载
    积分:1
  • 卷积神经网络CNN代码解析-matlab.doc
    卷积神经网络CNN代码解析,对MATLAB-deep learning master工具箱的例子进行了说明。
    2020-12-04下载
    积分:1
  • 696518资源总数
  • 104269会员总数
  • 42今日下载