STM32F407單片機開發板PDF原理圖+AD集成封裝庫+主要器件技術手冊資料:AD集成封裝庫列表:Library Component Count : 54Name Description----------------------------------------------------------------------------------------------------24C256 AMS1117ATK-HC05 ATK-HC05BAT BEEP BUTTONC CAPCH340G USB2UARTDDB9 DHT11 數字溫濕度傳感器HEAD2HEAD2*22 HR911105 HS0038Header 16 Header, 16-PinHeader 2 Header, 2-PinHeader 2X2 Header, 2-Pin, Dual rowHeader 3X2 Header, 3-Pin, Dual rowHeader 4 Header, 4-PinHeader 9X2 Header, 9-Pin, Dual rowIS62WV51216 JTAG KEY_M L LAN8720 ETH PHYLED2 Typical red, GREEN, YELLOW, AMBER GaAs LEDLSENS LIGHT SENSL_SOP MAX3232 MAX3485 MIC MOS-P IRLML6401/SI2301MP2359 DC DC Step Down ICMPU6050 9軸運動處理傳感器NPN 8050/BCW846/BCW847NRF24L01 PHONE_M PNP 8550/BCW68POW R SMBJ TVSSN65HVD230D STM32F407ZET6 STM32F407ZET6TEST-POINT 測試點TFT_LCD TPAD ALIENTEK TPADUSB5USB_A_90 USB-A-90W25X16
上傳時間: 2021-12-15
上傳用戶:ttalli
FPGA讀取OV5640攝像頭數據并通過VGA或LCD屏顯示輸出的Verilog邏輯源碼Quartus工程文件+文檔說明,FPGA型號Cyclone4E系列中的EP4CE6F17C8,Quartus版本17.1。module top( input clk, input rst_n, output cmos_scl, //cmos i2c clock inout cmos_sda, //cmos i2c data input cmos_vsync, //cmos vsync input cmos_href, //cmos hsync refrence,data valid input cmos_pclk, //cmos pxiel clock output cmos_xclk, //cmos externl clock input [7:0] cmos_db, //cmos data output cmos_rst_n, //cmos reset output cmos_pwdn, //cmos power down output vga_out_hs, //vga horizontal synchronization output vga_out_vs, //vga vertical synchronization output[4:0] vga_out_r, //vga red output[5:0] vga_out_g, //vga green output[4:0] vga_out_b, //vga blue output sdram_clk, //sdram clock output sdram_cke, //sdram clock enable output sdram_cs_n, //sdram chip select output sdram_we_n, //sdram write enable output sdram_cas_n, //sdram column address strobe output sdram_ras_n, //sdram row address strobe output[1:0] sdram_dqm, //sdram data enable output[1:0] sdram_ba, //sdram bank address output[12:0] sdram_addr, //sdram address inout[15:0] sdram_dq //sdram data);
上傳時間: 2021-12-18
上傳用戶:
基于FPGA設計的字符VGA LCD顯示實驗Verilog邏輯源碼Quartus工程文件+文檔說明,通過字符轉換工具將字符轉換為 8 進制 mif 文件存放到單端口的 ROM IP 核中,再從ROM 中把轉換后的數據讀取出來顯示到 VGA 上,FPGA型號Cyclone4E系列中的EP4CE6F17C8,Quartus版本17.1。module top( input clk, input rst_n, //vga output output vga_out_hs, //vga horizontal synchronization output vga_out_vs, //vga vertical synchronization output[4:0] vga_out_r, //vga red output[5:0] vga_out_g, //vga green output[4:0] vga_out_b //vga blue );wire video_clk;wire video_hs;wire video_vs;wire video_de;wire[7:0] video_r;wire[7:0] video_g;wire[7:0] video_b;wire osd_hs;wire osd_vs;wire osd_de;wire[7:0] osd_r;wire[7:0] osd_g;wire[7:0] osd_b;assign vga_out_hs = osd_hs;assign vga_out_vs = osd_vs;assign vga_out_r = osd_r[7:3]; //discard low bit dataassign vga_out_g = osd_g[7:2]; //discard low bit dataassign vga_out_b = osd_b[7:3]; //discard low bit data//generate video pixel clockvideo_pll video_pll_m0( .inclk0 (clk ), .c0 (video_clk ));color_bar color_bar_m0( .clk (video_clk ), .rst (~rst_n ), .hs (video_hs ), .vs (video_vs ), .de (video_de ), .rgb_r (video_r ), .rgb_g (video_g ), .rgb_b (video_b ));osd_display osd_display_m0( .rst_n (rst_n ), .pclk (video_clk ), .i_hs (video_hs ), .i_vs (video_vs ), .i_de (video_de ), .i_data ({video_r,video_g,video_b} ), .o_hs (osd_hs ), .o_vs (osd_vs ), .o_de (osd_de ), .o_data ({osd_r,osd_g,osd_b} ));endmodule
上傳時間: 2021-12-18
上傳用戶:
基于FPGA設計的vga顯示測試實驗Verilog邏輯源碼Quartus工程文件+文檔說明,FPGA型號Cyclone4E系列中的EP4CE6F17C8,Quartus版本17.1。module top( input clk, input rst_n, //vga output output vga_out_hs, //vga horizontal synchronization output vga_out_vs, //vga vertical synchronization output[4:0] vga_out_r, //vga red output[5:0] vga_out_g, //vga green output[4:0] vga_out_b //vga blue );wire video_clk;wire video_hs;wire video_vs;wire video_de;wire[7:0] video_r;wire[7:0] video_g;wire[7:0] video_b;assign vga_out_hs = video_hs;assign vga_out_vs = video_vs;assign vga_out_r = video_r[7:3]; //discard low bit dataassign vga_out_g = video_g[7:2]; //discard low bit dataassign vga_out_b = video_b[7:3]; //discard low bit data//generate video pixel clockvideo_pll video_pll_m0( .inclk0(clk), .c0(video_clk));color_bar color_bar_m0( .clk(video_clk), .rst(~rst_n), .hs(video_hs), .vs(video_vs), .de(video_de), .rgb_r(video_r), .rgb_g(video_g), .rgb_b(video_b));endmodule
標簽: fpga vga顯示 verilog quartus
上傳時間: 2021-12-19
上傳用戶:kingwide
LED 線陣顯示裝置, 分為 LED 線性旋轉顯示主機和圖文錄入器兩部分。主機用直流電機帶動由紅綠 LED 組成的線陣旋轉, 同時線陣按照時序依次切換顯示狀態, 在固定區域利用視覺暫留效果形成 16×16 點陣, 用以顯示圖文;圖文錄入器用 HMI 觸控屏作為人機交互界面, 實現圖文錄入和回放功能。主機與圖文錄入器通過無線通信方式進行信息交互,可由圖文錄入器控制主機切換不同工作任務, 以及改變線陣顯示內容。The LED linear array display device is divided into two parts:the one is the main unit used to display content,and the other one is used to input the contents.The main unit is driven by a DC motor to rotate the linear array composed by red and green light emitting diodes.At the same time,the 16×16 dot matrix that switching the display state according to the time sequence on the main unit displays pictures and texts in the fixed area,by using the visual temporary effect.The HMI touch screen is used as human machine interface to realize the function that input and playback pictures and texts.The two parts of the device communicate with each other through wireless communication.The image and text input controller can control the main unit to switch different tasks and change the content of linear array displayed.
標簽: stc12c5a60s2 單片機 led
上傳時間: 2022-03-28
上傳用戶:jiabin
eeworm.com VIP專區 單片機源碼系列 71資源包含以下內容:1. PWM模塊單片機的步進電機細分驅動的理論和方法介紹.pdf2. 基于狀態分析的鍵盤管理軟件設計.pdf3. 單片機的步進電機控制器設計介紹.pdf4. 單片機溫度控制系統的設計及實現.pdf5. 基于單片機的步進電機細分技術介紹.pdf6. 基于單片機的太陽能電池自動跟蹤系統的設計.zip7. 單片機的步進電機細分技術研究介紹.pdf8. 氣體壓縮因子Z的在線修正與單片機實現.pdf9. Emulating a synchronous serial.pdf10. 基于單片機的霍爾傳感器測試系統介紹.pdf11. 使用軟件程序仿真C500微控制器系列SSC(同步串行通道)功.pdf12. MPC106 PCI Bridge/Memory Contr.pdf13. 單片機以太網通訊的實現介紹.pdf14. MPC106 PCI橋/存儲器控制器硬件規范說明.pdf15. USB Demonstration for DK3200 w.pdf16. 對帶有uPSD3234A的DK3200的USB演示.pdf17. An easy way to work with Exter.pdf18. 用外部設備設置32位微控制器TriCore的中斷的指令及方法.pdf19. P90CL301 I2C driver routines.pdf20. Input Signal Rise and Fall Tim.pdf21. P90CL301 IIC驅動電路的例行測試及其程序.pdf22. 用51單片機實現公歷與農歷星期的轉換.pdf23. 介紹C16x系列微控制器的輸入信號升降時序圖及特性.pdf24. XA-S3 I2C driver software.pdf25. 萬年歷算法.pdf26. MCS-51單片機對步進電機控制的實現.pdf27. XA-S3的IIC接口的驅動器軟件程序(C語言).pdf28. Reading and Writing iButtons v.pdf29. 通用單片機試驗板原理圖.pdf30. I2C slave routines for the 87L.pdf31. Philips微控制器在LIN中的應用.pdf32. MPC7400 Part Number Speci&THOR.pdf33. 87LPC76X的IIC從程序.pdf34. 基于P87C591的CAN總線系統智能節點設計.pdf35. MPC7400l零件號碼規范說明.pdf36. Using the 87LPC76X microcontro.pdf37. Control System of Stepp ingMot.pdf38. 68HC05K0 Infra-red Remote Cont.pdf39. 87C576微控制器的在線編程.pdf40. CAN與RS232轉換節點的設計與實現.pdf41. 68HC05K0實現紅外遠程控制鍵盤的應用.pdf42. 單片機外圍線路設計.rar43. 單片機常用芯片和器件手冊.rar44. IO口狀態切換說明.pdf45. 中斷技術.ppt.ppt46. 并行接口.ppt47. DMA技術 -ppt.ppt48. 結構緊湊的Li+電池充電器.pdf49. 定時與計數技術.ppt50. 微機總線與接口標準.ppt51. 中斷的概念及51單片機的中斷系統.ppt52. 輸入輸出與接口技術.ppt53. 單片機應用概述.ppt54. 現代微機原理與接口技術.rar55. 單片機應用系統設計的基本方法.ppt56. PCB可測性設計布線規則之建議―從源頭改善可測率.pdf57. 單片機A/D和D/A應用接口技術.ppt58. 匯編語言上機過程.ppt.ppt59. PWM的調速原理與應用—小車調速.ppt60. 匯編語言在數據處理中的應用.ppt61. 定時器/計數器基礎.ppt62. 驅動程序與應用程序的接口.doc63. 外部中斷應用程序設計范例.ppt64. 實驗指導書 (TPC-H實驗臺C語言版).pdf65. 匯編語言程序設計案例—動態顯示/障礙物檢測/障礙物方位檢測.rar66. 指令功能及匯編語言程序設計.rar67. ispdown V2.3 最新版 (可用Altera下載線進.rar68. MCS-51單片機的編程應用范例.pdf69. 51編程指南--MCSÉ-51 Program.rar70. 多運動目標跟蹤及連通域標記方法.pdf71. 很經典的仿真器自制資料.rar72. mcs-51指令集.rar73. 自制51單片機編程器.rar74. CAN總線與USB的轉接技術.pdf75. 自制ATMEL 89系列FLASH單片機編程器.rar76. 基于ARM處理器LPC2142的高速數據采集卡設計.pdf77. 微機測量系統中的抗干擾措施.pdf78. PGM89 51Flash單片機編程器V3.0.rar79. 改善基于微控制器的應用的瞬態免疫性能.rar80. KEIL C51開發軟件操作使用視頻教程.rar81. 自制微型51/AVR通用編程器.rar82. C51單片機視頻教程.RAR83. 自制51編程器資料.rar84. 基于單片機89C51和89C2051點陣LED圖文顯示.pdf85. 全遙控6聲道AV機的匯編程序.rar86. keil c51中文說明.pdf87. 基于AT89C2051的紅外遙控學習器源程序.rar88. 微型計算機課程設計論文—通用微機發聲程序的匯編設計.rar89. 從PCI總線的-12V電源獲得3.3V電壓.pdf90. DS1302+AT89S52+LED時鐘程序(C語言源代碼+.rar91. 樂曲發聲及動畫程序.rar92. 單片開關電源的設計和應用.rar93. 51單片機試驗板電路圖-原理圖.rar94. DS1820 C51 子程序 (一線數據傳輸).doc95. 模擬串口通訊程序(51匯編代碼編寫).doc96. 8051單片機教程 (word版).rar97. 串行編程器源程序(Keil C語言).rar98. 用C51寫的普通拼音輸入法源程序代碼.zip99. EasyIsp下載線電路圖.rar100. 采用18b20芯片的溫度測量C51源程序.rar
上傳時間: 2013-06-02
上傳用戶:eeworm
This release supports Microsoft Windows NT 4.0, Windows 2000, Windows 95, Windows 98, Windows Me, Windows XP, red Hat Linux 6.1, red Hat Linux 7.2, Solaris 2.6, 2.7 (7.0), 8.0, HP-UX 10.20, and 11 (see important note below)." multice22.rar
上傳時間: 2013-05-15
上傳用戶:eeworm