亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

蟲蟲首頁| 資源下載| 資源專輯| 精品軟件
登錄| 注冊

red-Button

  • STM32L475開發(fā)板PDF原理圖+AD集成3D封裝庫+主要器件技術(shù)手冊

    STM32L475開發(fā)板PDF原理圖+AD集成3D封裝庫+主要器件技術(shù)手冊,集成封裝庫型號列表如下:Library Component Count : 44Name                Description----------------------------------------------------------------------------------------------------ANT-2.4G            ANT,2.4G,PCB天線ATK-TEST-1*4-2.54mm 測試點ATK_MODULE          單排母,1*6,2.54mmBEEP                3.3V有源蜂鳴器BUTTON_DIP3         撥動開關(guān)SS-12F44C-0402-SMD          C-0603-SMD          C-CAP-SMD-220uF/10V C-CEP-220uF/16V     D-1N4148            Header-1*3-2.54mm   單排針-2.54mmHeader-2*10-2.54mm  雙排針-2.54mmHeader-2*2-2.54mm   雙排針-2.54mmHeader-2*3-2.54mm   雙排針-2.54mmHeader-2*4-2.54mm   雙排座-2.54mmIR-LED              1206紅外發(fā)射管(側(cè))IR-LF0038GKLL-1     紅外接收管SMDJ-MICRO-USB-5S      Micro USB 5.9有柱腳長1.25加長針L-0420-4.7uH        電感,4.7uH,3ALCD-TFT-H13TS38A    LCD,TFT,1.3'240*240,禹龍LED-0603-RED        發(fā)光二極管-紅色LED-RGB-1615-0603   RGB,共陽,1615,0603MIC-6022            MICMotor-SMD           電機,SMDPhone-3-M           耳機座,三節(jié)R-0402-SMD          貼片電阻R-0805-SMD          貼片電阻RT9193-3.3S-KEY-SMD-324225    KEY,SMD,324225S8050-SMD           SD-MICRO-TF         SD,MICRO,TFU-AHT10             Sensor,溫濕度傳感器U-AP3216C           Sensor.光照/距離U-AP6181            WIFI Module,SDIOU-ES8388            AUDIO,2-ch DAC,2-ch ADCU-ICM-20608         三軸陀螺儀/三軸加速度計,U-L9110S            電機驅(qū)動,800mAU-RT9013-3.3        LDO,500mAU-STM32F103C8T6     U-STM32L475VET6     MCU,LQFP100,512K FLASH,128K RAMU-W25Q128           SPI FLASH,16MY-12M-SMD           晶振 - 12M貼片Y-3215-32.768K      XTAL,3215,32.768KY-3215-8M           XTAL,3215,8MHz

    標簽: stm32l475 開發(fā)板

    上傳時間: 2021-12-15

    上傳用戶:

  • FPGA讀取OV5640攝像頭數(shù)據(jù)并通過VGA或LCD屏顯示輸出的Verilog邏輯源碼Quartu

    FPGA讀取OV5640攝像頭數(shù)據(jù)并通過VGA或LCD屏顯示輸出的Verilog邏輯源碼Quartus工程文件+文檔說明,F(xiàn)PGA型號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);

    標簽: fpga ov5640 攝像頭

    上傳時間: 2021-12-18

    上傳用戶:

  • 基于FPGA設計的字符VGA LCD顯示實驗Verilog邏輯源碼Quartus工程文件+文檔說明

    基于FPGA設計的字符VGA  LCD顯示實驗Verilog邏輯源碼Quartus工程文件+文檔說明,通過字符轉(zhuǎn)換工具將字符轉(zhuǎn)換為 8 進制 mif 文件存放到單端口的 ROM IP 核中,再從ROM 中把轉(zhuǎn)換后的數(shù)據(jù)讀取出來顯示到 VGA 上,F(xiàn)PGA型號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

    標簽: fpga vga lcd

    上傳時間: 2021-12-18

    上傳用戶:

  • 基于FPGA設計的vga顯示測試實驗Verilog邏輯源碼Quartus工程文件+文檔說明 FPGA

    基于FPGA設計的vga顯示測試實驗Verilog邏輯源碼Quartus工程文件+文檔說明,F(xiàn)PGA型號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

  • 高通(Qualcomm)藍牙芯片QCC5151_硬件設計詳細指導書(官方內(nèi)部培訓手冊)

    高通(Qualcomm)藍牙芯片QCC5151_硬件設計詳細指導書(官方內(nèi)部培訓手冊)共52頁其內(nèi)容是針對硬件設計、部分重要元器件選擇(ESD,F(xiàn)ilter)及走線注意事項的詳細說明。2 Power management 2.1 SMPS 2.1.1 Components specification 2.1.2 Input power supply selection 2.1.3 Minimize SMPS EMI emissions 2.1.4 Internal LDOs and digital core decoupling 2.1.5 Powering external components 2.2 Charger 2.2.1 Charger connections.2.2.2 General charger operation2.2.3 Temperature measurement during charging 2.3 SYS_CTRL 3 Bluetooth radio3.1 RF PSU component choice 3.2 RF band-pass filter3.3 Layout (天線 走線的注意事項)4 Audio4.1 Audio bypass capacitors 4.2 Earphone speaker output4.3 Line/Mic input 4.4 Headphone output optimizition5 LED pads 5.1 LED driver 5.2 Digital/Button input 5.3 Analog input5.4 Disabled 6 Reset pin (Reset#)7 QSPIinterface 8 USB interfaces 8.1 USB device port8.1.1 USB connections8.1.2 Layout notes8.1.3 USB charger detection

    標簽: qualcomm 藍牙芯片 qcc5151

    上傳時間: 2022-01-24

    上傳用戶:XuVshu

  • 基于2.4G的雙電機遙控船模控制系統(tǒng)設計

    以STC12C5A60S2單片機為控制核心,采用2.4G(JF24D)無線遙控模塊進行無線發(fā)射與接收,設計了一種雙電機遙控船模控制系統(tǒng).該系統(tǒng)通過切換檔桿實現(xiàn)前進后退,方向盤左右轉(zhuǎn)動、暫停按鈕等控制直流電機的正轉(zhuǎn)、反轉(zhuǎn)、暫停,使得電機驅(qū)動的遙控船模實現(xiàn)前進后退、左右轉(zhuǎn)向、暫停等功能,有效解決了驅(qū)動功率小和船模之間相互干擾等問題,可廣泛應用于遙控船模領(lǐng)域.Using STC12C5A60S2 single-chip microcomputer as the controller and 2.4 G(JF24D)wireless remote control module for wireless transmission and reception, a dual-motor remote control ship model control system is designed. The system realizes forward and backward by switching the gear lever. The steering wheel rotates left and right and the pause button controls the forward, reverse and pause of the dc motor. The remote controller of ship model driven by the motor realizes forward and backward, left and right steering, pause and other functions. The ship model control system can effectively solve the problems of small driving power and mutual interference between ship models, and can be widely used in the field of remote controller of ship model.

    標簽: 電機 遙控船模 控制系統(tǒng)

    上傳時間: 2022-03-27

    上傳用戶:

  • 基于STC12C5A60S2單片機的LED線陣顯示裝置

    LED 線陣顯示裝置, 分為 LED 線性旋轉(zhuǎn)顯示主機和圖文錄入器兩部分。主機用直流電機帶動由紅綠 LED 組成的線陣旋轉(zhuǎn), 同時線陣按照時序依次切換顯示狀態(tài), 在固定區(qū)域利用視覺暫留效果形成 16×16 點陣, 用以顯示圖文;圖文錄入器用 HMI 觸控屏作為人機交互界面, 實現(xiàn)圖文錄入和回放功能。主機與圖文錄入器通過無線通信方式進行信息交互,可由圖文錄入器控制主機切換不同工作任務, 以及改變線陣顯示內(nèi)容。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

  • 高通藍牙芯片QCC5144_硬件設計指導書

    高通(Qualcomm)藍牙芯片QCC5144_硬件設計詳細指導書(官方內(nèi)部培訓手冊)其內(nèi)容是針對硬件設計、部分重要元器件選擇(ESD,F(xiàn)ilter)及走線注意事項的詳細說明。2 Power management 2.1 SMPS 2.1.1 Components specification 2.1.2 Input power supply selection 92.1.3 Minimize SMPS EMI emissions 2.1.4 Internal LDOs and digital core decoupling 2.1.5 Powering external components 2.2 Charger 2.2.1 Charger connections.2.2.2 General charger operation2.2.3 Temperature measurement during charging 2.3 SYS_CTRL 3 Bluetooth radio3.1 RF PSU component choice 3.2 RF band-pass filter3.3 Layout (天線 走線的注意事項)4 Audio4.1 Audio bypass capacitors 4.2 Earphone speaker output4.3 Line/Mic input 4.4 Headphone output optimizition5 LED pads 5.1 LED driver 5.2 Digital/Button input 5.3 Analog input5.4 Disabled 6 Reset pin (Reset#)7 USB interfaces7.1 USB device port7.1.1 USB device port7.1.2 Layout notes 7.1.3 USB charger detectionA QCC5144 VFBGA example schematic and BOM B Recommended SMPS components specificationB.1 Inductor specifition B.2 Recommended inductors B.3 SMPS capacitor specifition

    標簽: 藍牙芯片 qcc5144

    上傳時間: 2022-04-07

    上傳用戶:默默

  • 在VS(VC)2010中使用MSComm控件實現(xiàn)串口通信的詳細步驟

    1.安裝好VS2010,網(wǎng)上很多人說使用VC6.0的mscomm32.ocx控件,下載并注冊,注冊過程看上去還很復雜。我是使用VS2010自帶的控件,因此沒有這些過程,只需要安裝好V52010就行了。2.建立“基于對話框”的MFC工程,命名為CommTest,應用程序類型選擇“基于對話框”3.刪除默認的“確定”,“取消”按鈕和靜態(tài)文本框“TODO在此放置對話框控件”,添加如下對話框控件:①“打開串口”按鈕,添加方法為從右側(cè)“工具箱”拖放一個“Button”到對話框,并在右側(cè)“屬性”卡中修改“Caption”為“打開串口”,修改“I0”為“IDC_BUTTON_OPEN”。②“關(guān)閉串口”按鈕,添加方法為從右側(cè)“工具箱”拖放一個“Button”到對話框,并在右側(cè)“屬性”卡中修改“Caption”為“關(guān)閉串口”,修改“ID”為“IDC_BUTTON_CLOSE”。③“發(fā)送”按鈕,添加方法為從右側(cè)“工具箱”拖放一個“Button”到對話框,并在右側(cè)“屬性”卡中修改“Caption”為“發(fā)送”,修改“ID”為“IDC_BUTTON_SEND”。④“發(fā)送編輯框”。⑤“接受編輯框”

    標簽: MSComm 串口通信

    上傳時間: 2022-06-30

    上傳用戶:shjgzh

  • VIP專區(qū)-單片機源代碼精選合集系列(72)

    eeworm.com VIP專區(qū) 單片機源碼系列 71資源包含以下內(nèi)容:1. PWM模塊單片機的步進電機細分驅(qū)動的理論和方法介紹.pdf2. 基于狀態(tài)分析的鍵盤管理軟件設計.pdf3. 單片機的步進電機控制器設計介紹.pdf4. 單片機溫度控制系統(tǒng)的設計及實現(xiàn).pdf5. 基于單片機的步進電機細分技術(shù)介紹.pdf6. 基于單片機的太陽能電池自動跟蹤系統(tǒng)的設計.zip7. 單片機的步進電機細分技術(shù)研究介紹.pdf8. 氣體壓縮因子Z的在線修正與單片機實現(xiàn).pdf9. Emulating a synchronous serial.pdf10. 基于單片機的霍爾傳感器測試系統(tǒng)介紹.pdf11. 使用軟件程序仿真C500微控制器系列SSC(同步串行通道)功.pdf12. MPC106 PCI Bridge/Memory Contr.pdf13. 單片機以太網(wǎng)通訊的實現(xiàn)介紹.pdf14. MPC106 PCI橋/存儲器控制器硬件規(guī)范說明.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驅(qū)動電路的例行測試及其程序.pdf22. 用51單片機實現(xiàn)公歷與農(nóng)歷星期的轉(zhuǎn)換.pdf23. 介紹C16x系列微控制器的輸入信號升降時序圖及特性.pdf24. XA-S3 I2C driver software.pdf25. 萬年歷算法.pdf26. MCS-51單片機對步進電機控制的實現(xiàn).pdf27. XA-S3的IIC接口的驅(qū)動器軟件程序(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總線系統(tǒng)智能節(jié)點設計.pdf35. MPC7400l零件號碼規(guī)范說明.pdf36. Using the 87LPC76X microcontro.pdf37. Control System of Stepp ingMot.pdf38. 68HC05K0 Infra-red Remote Cont.pdf39. 87C576微控制器的在線編程.pdf40. CAN與RS232轉(zhuǎn)換節(jié)點的設計與實現(xiàn).pdf41. 68HC05K0實現(xiàn)紅外遠程控制鍵盤的應用.pdf42. 單片機外圍線路設計.rar43. 單片機常用芯片和器件手冊.rar44. IO口狀態(tài)切換說明.pdf45. 中斷技術(shù).ppt.ppt46. 并行接口.ppt47. DMA技術(shù) -ppt.ppt48. 結(jié)構(gòu)緊湊的Li+電池充電器.pdf49. 定時與計數(shù)技術(shù).ppt50. 微機總線與接口標準.ppt51. 中斷的概念及51單片機的中斷系統(tǒng).ppt52. 輸入輸出與接口技術(shù).ppt53. 單片機應用概述.ppt54. 現(xiàn)代微機原理與接口技術(shù).rar55. 單片機應用系統(tǒng)設計的基本方法.ppt56. PCB可測性設計布線規(guī)則之建議―從源頭改善可測率.pdf57. 單片機A/D和D/A應用接口技術(shù).ppt58. 匯編語言上機過程.ppt.ppt59. PWM的調(diào)速原理與應用—小車調(diào)速.ppt60. 匯編語言在數(shù)據(jù)處理中的應用.ppt61. 定時器/計數(shù)器基礎.ppt62. 驅(qū)動程序與應用程序的接口.doc63. 外部中斷應用程序設計范例.ppt64. 實驗指導書 (TPC-H實驗臺C語言版).pdf65. 匯編語言程序設計案例—動態(tài)顯示/障礙物檢測/障礙物方位檢測.rar66. 指令功能及匯編語言程序設計.rar67. ispdown V2.3 最新版 (可用Altera下載線進.rar68. MCS-51單片機的編程應用范例.pdf69. 51編程指南--MCSÉ-51 Program.rar70. 多運動目標跟蹤及連通域標記方法.pdf71. 很經(jīng)典的仿真器自制資料.rar72. mcs-51指令集.rar73. 自制51單片機編程器.rar74. CAN總線與USB的轉(zhuǎn)接技術(shù).pdf75. 自制ATMEL 89系列FLASH單片機編程器.rar76. 基于ARM處理器LPC2142的高速數(shù)據(jù)采集卡設計.pdf77. 微機測量系統(tǒng)中的抗干擾措施.pdf78. PGM89 51Flash單片機編程器V3.0.rar79. 改善基于微控制器的應用的瞬態(tài)免疫性能.rar80. KEIL C51開發(fā)軟件操作使用視頻教程.rar81. 自制微型51/AVR通用編程器.rar82. C51單片機視頻教程.RAR83. 自制51編程器資料.rar84. 基于單片機89C51和89C2051點陣LED圖文顯示.pdf85. 全遙控6聲道AV機的匯編程序.rar86. keil c51中文說明.pdf87. 基于AT89C2051的紅外遙控學習器源程序.rar88. 微型計算機課程設計論文—通用微機發(fā)聲程序的匯編設計.rar89. 從PCI總線的-12V電源獲得3.3V電壓.pdf90. DS1302+AT89S52+LED時鐘程序(C語言源代碼+.rar91. 樂曲發(fā)聲及動畫程序.rar92. 單片開關(guān)電源的設計和應用.rar93. 51單片機試驗板電路圖-原理圖.rar94. DS1820 C51 子程序 (一線數(shù)據(jù)傳輸).doc95. 模擬串口通訊程序(51匯編代碼編寫).doc96. 8051單片機教程 (word版).rar97. 串行編程器源程序(Keil C語言).rar98. 用C51寫的普通拼音輸入法源程序代碼.zip99. EasyIsp下載線電路圖.rar100. 采用18b20芯片的溫度測量C51源程序.rar

    標簽: 傳感器 檢測技術(shù)

    上傳時間: 2013-06-02

    上傳用戶:eeworm

主站蜘蛛池模板: 义乌市| 资中县| 南川市| 镇雄县| 云安县| 樟树市| 文成县| 孟州市| 三河市| 新竹县| 大宁县| 威海市| 永城市| 和林格尔县| 宝山区| 依安县| 班玛县| 昆明市| 无极县| 运城市| 镇赉县| 沂源县| 文登市| 民乐县| 禹城市| 唐海县| 开平市| 乌拉特后旗| 柳江县| 巧家县| 灵璧县| 德钦县| 廊坊市| 安阳市| 长兴县| 长宁县| 西藏| 嵊泗县| 榆树市| 沈阳市| 长沙市|