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

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

full-duplex

  • Multisim仿真Multisim數電模電仿真實例源碼100例

    Multisim仿真Multisim數電模電仿真實例源碼100例,08數控本二 07.ms1010-10-4串聯型直流穩壓電路(2).ms724小時時鐘(full)改.ms104位數字頻率計.ms10559.ms10ADC電壓顯示1.ms12BIN2BCD電路.ms10FM解調.ms14FM解調.ms14 (Security copy)LED調光電路.pdsprjLM324簡-易-電-子-琴-.ms10MC1496應用2.ms10Multisim 13.0仿真OP07CP兩級放大.rarMUltisim 仿真作品集.zipOCL功率放大器電路.ms12OP07CP兩級差動放大.ms13TL494 5V DC-DC.ms14UC3843升壓控制電路.ms14UC3843芯片的DC-DC升壓電路.ms14XUNKE936防靜電焊臺電路圖.ms12zhongji電路.ms10三極管單按鈕開關電路.ms10三極管線性穩壓電路.ms10三相電源錯相、斷相保護電路.ms10乘法器.ms14交流電源防盜報警器.ms14交通信號燈_X.ms12交通燈(74LS163、74LS153、74LS74).ms13倒計時定時器 (1).ms10倒計時定時器.ms10倒計時定時器A【74LS161 74LS192】.ms10六路20秒聲光顯示計分搶答器.ms14減法.ms12四種波形發生器-741.ms14四路20秒聲光顯示計分搶答器.ms14四路帶計分系統搶答器.rar四路流水燈.ms10四階帶通濾波.ms14四階帶通濾波.ms14 (Security copy)多色流水燈.ms10字發生+共陽數碼管顯示電路.ms10小信號放大電路.ms10差分比例電路+比例放大.ms14搶答器 (1).ms10搶答器.ms10數字時鐘設計2.ms12數字電子鐘仿真電路圖.ms10數字電子鐘仿真電路圖2X.ms10數字鐘X.ms10數字頻率計(帶量程).ms14數字頻率計.ms10李薩如圖.ms10模擬打兵乓球電路.ms10汽車尾燈控制電路2.ms10汽車尾燈顯示控制電路.ms10汽車指示燈設計孫昱.docx混沌電路.ms10火災報警.jpg電容測量電路.ms10電機正反轉接觸器應用.ms12電路2.ms10電路3.ms10電風扇.ms10簡易洗衣機.ms10簡易洗衣機2.ms10簡易洗衣機2當.ms14籃球30秒計時器_X.ms13設計1.ms14設計2.ms14設計2.ms14 (Security copy)設計201405292100八路搶答器.ms10設計201405301500骰子模擬電路.ms10設計201406252300多色流水燈.ms10設計21.ms14設計3.ms14設計3.ms14 (Security copy)路燈節能控制.ms10輸出電壓可調的穩壓源.ms14輸出電壓可調的穩壓源.ms14 (Security copy)鎖相環.ms7音量控制電路.ms10音頻IRF610耳放.ms13音頻功率放大器.ms14

    標簽: multisim

    上傳時間: 2021-12-12

    上傳用戶:

  • TI反激變換器變壓器設計相關資料

    This Section covers the design of power transformers used in buck-derived topologies: forward converter, bridge, half-bridge, and full-wave centertap. Flyback transformers (actually coupled inductors) are covered in a later Section. For more specialized applications, the principles discussed herein will generally apply.

    標簽: 反激變換器 變壓器

    上傳時間: 2021-12-16

    上傳用戶:fliang

  • FPGA片內FIFO讀寫測試Verilog邏輯源碼Quartus工程文件+文檔說明 使用 FPGA

    FPGA片內FIFO讀寫測試Verilog邏輯源碼Quartus工程文件+文檔說明,使用 FPGA 內部的 FIFO 以及程序對該 FIFO 的數據讀寫操作。FPGA型號Cyclone4E系列中的EP4CE6F17C8,Quartus版本17.1。timescale 1ns / 1ps//////////////////////////////////////////////////////////////////////////////////module fifo_test( input clk,           //50MHz時鐘 input rst_n              //復位信號,低電平有效 );//-----------------------------------------------------------localparam      W_IDLE      = 1;localparam      W_FIFO     = 2; localparam      R_IDLE      = 1;localparam      R_FIFO     = 2; reg[2:0]  write_state;reg[2:0]  next_write_state;reg[2:0]  read_state;reg[2:0]  next_read_state;reg[15:0] w_data;    //FIFO寫數據wire      wr_en;    //FIFO寫使能wire      rd_en;    //FIFO讀使能wire[15:0] r_data; //FIFO讀數據wire       full;  //FIFO滿信號 wire       empty;  //FIFO空信號 wire[8:0]  rd_data_count;  wire[8:0]  wr_data_count;  ///產生FIFO寫入的數據always@(posedge clk or negedge rst_n)begin if(rst_n == 1'b0) write_state <= W_IDLE; else write_state <= next_write_state;endalways@(*)begin case(write_state) W_IDLE: if(empty == 1'b1)               //FIFO空, 開始寫FIFO next_write_state <= W_FIFO; else next_write_state <= W_IDLE; W_FIFO: if(full == 1'b1)                //FIFO滿 next_write_state <= W_IDLE; else next_write_state <= W_FIFO; default: next_write_state <= W_IDLE; endcaseendassign wr_en = (next_write_state == W_FIFO) ? 1'b1 : 1'b0; always@(posedge clk or negedge rst_n)begin if(rst_n == 1'b0) w_data <= 16'd0; else    if (wr_en == 1'b1)     w_data <= w_data + 1'b1; else          w_data <= 16'd0; end///產生FIFO讀的數據always@(posedge clk or negedge rst_n)begin if(rst_n == 1'b0) read_state <= R_IDLE; else read_state <= next_read_state;endalways@(*)begin case(read_state) R_IDLE: if(full == 1'b1)               //FIFO滿, 開始讀FIFO next_read_state <= R_FIFO; else next_read_state <= R_IDLE; R_FIFO: if(empty == 1'b1)   

    標簽: fpga fifo verilog quartus

    上傳時間: 2021-12-19

    上傳用戶:20125101110

  • Keil激活 工具

    Keil激活_Keygen-Decompressed-Full-2030.zip

    標簽: Keil

    上傳時間: 2022-01-28

    上傳用戶:

  • PW3130_2.0.pdf規格書下載

    The PW3130 series product is a high integration solution for lithium-lion/polymer batteryprotection.PW3130 contains advanced power MOSFET, high-accuracy voltage detection circuits anddelay circuits. PW3130 is put into an ultra-small SOT23-5 package and only one external componentmakes it an ideal solution in limited space of battery pack. PW3130 has all the protection functionsrequired in the battery application including overcharging, overdischarging, overcurrent and loadshort circuiting protection etc. The accurate overcharging detection voltage ensures safe and fullutilization charging.The low standby current drains little current from the cell while in storage. Thedevice is not only targeted for digital cellular phones, but also for any other Li-Ion and Li-Polybattery-powered information appliances requiring long-term battery life

    標簽: pw3130

    上傳時間: 2022-02-11

    上傳用戶:fliang

  • VCSELs and EELs

    InGaAs/AlGaAs semiconductor lasers come in threetypes: VCSELs and two types of EELs. The VCSEL, asits name implies, emits vertically, normal to the planeof the device, owing to cavity mirrors grown withinthe epitaxial material itself. The VCSEL’s circular beamhas a numerical aperture (NA) of roughly 0.2, or a fullangle of approximately 25 degrees.

    標簽: tof

    上傳時間: 2022-02-12

    上傳用戶:

  • 8205A8_2.0.pdf規格書下載

    The PW8205A8TS is the highest performance trench N-ch MOSFETs with extreme high cell density,which provide excellent RDSON and gate charge for most of the small power switching and loadswitch applications. The meet the RoHS and Product requirement with full function reliabilityapproved .

    標簽: 8205a8

    上傳時間: 2022-02-14

    上傳用戶:wangshoupeng199

  • ST7789V IC規格書

     Single chip TFT-LCD Controller/Driver with On-chip Frame Memory (FM) Display Resolution: 240*RGB (H) *320(V) Frame Memory Size: 240 x 320 x 18-bit = 1,382,400 bits LCD Driver Output Circuits- Source Outputs: 240 RGB Channels- Gate Outputs: 320 Channels- Common Electrode Output Display Colors (Color Mode)- Full Color: 262K, RGB=(666) max., Idle Mode Off- Color Reduce: 8-color, RGB=(111), Idle Mode On Programmable Pixel Color Format (Color Depth) for Various Display Data input Format- 12-bit/pixel: RGB=(444)- 16-bit/pixel: RGB=(565)- 18-bit/pixel: RGB=(666) MCU Interface- Parallel 8080-series MCU Interface (8-bit, 9-bit, 16-bit & 18-bit)- 6/16/18 RGB Interface(VSYNC, HSYNC, DOTCLK, ENABLE, DB[17:0])- Serial Peripheral Interface(SPI Interface)- VSYNC Interface

    標簽: st7789v LCD

    上傳時間: 2022-03-04

    上傳用戶:

  • 半導體制冷溫度控制系統的設計研究

    在半導體制冷技術的工作性能及其優缺點研究的基礎上,設計了以單片機為核心控制元件,以TEC1-12706為執行元件的半導體制冷溫度控制系統。采用高精度分段式PID控制算法配合PWM輸出控制的方法實現溫度控制;選擇數字傳感器DS18B20為溫度檢測元件,還包含1602液晶顯示模塊、按鍵調整輸入模塊和H橋驅動模塊等。實際測試表明,該系統結構簡單易行,操作方便,工作性能優良,同時針對該系統專門設計的溫控算法,使半導體制冷器能更好地適應不同工況而充分發揮其制冷制熱工作特性。Based on the study of the performance and advantages and disadvantages of thermoelectric cooler(TEC)technology,a thermoelectric cooling temperature control system with single-chip microcomputer as the core control element and TEC1-12706 as the executive element was designed. High precision piecewise PID control algorithm combined with PWM output control method is adopted to realize temperature control. The digital sensor DS18B20 is selected as the temperature detection element. It also includes 1602 LCD module,key adjustment input module and H bridge drive module. The actual test shows that the system has simple structure,convenient operation and excellent performance. Meanwhile,the temperature control algorithm specially designed for the system can make the semiconductor cooler better adapt to different working conditions and give full play to its refrigeration and heating characteristics.

    標簽: 半導體 溫度控制系統

    上傳時間: 2022-03-27

    上傳用戶:

  • Qi無線充電原理

    近距電能傳輸——高效安全近距電能傳輸一般基于電磁感應原理進行。在此技術基礎上,當接收器鄰近發射器時才會進行電能傳輸。電磁感應技術的歷史長達百年,多年米一直應用于各類電子產品中—如此普及全因其簡單、高效以及安全技術概覽以下將為你簡要介紹無線電能傳輸技術。System Overview(Communication)Receiver sends messagesTo provide control information to the transmitterBy load modulation on the power signaTransmitter receives messagesTo receive control information frorn the recelverBy de-modulation of the reflected loadPower Pick Up( Receiver)Secondary coil (L Serial resonance capacitor (C) for efficient power transfer Parallel resonance capacitor(C, )for detection purposes Rectifier: full bridge(diode, or switched)+ capacitor Output switch for(dis)connecting the loadReceiver modulates load by Switching modulation resistor(R,n),or Switching modulation capacitor(Ca)Transmitter de-modulates reflected load by Sensing pnmary coil curent (p)and/o Sensing primary coil voltage (V,

    標簽: qi 無線充電

    上傳時間: 2022-03-31

    上傳用戶:

主站蜘蛛池模板: 新晃| 霞浦县| 巩留县| 哈巴河县| 应城市| 恭城| 上栗县| 仪征市| 墨竹工卡县| 启东市| 嘉峪关市| 惠来县| 南木林县| 兴仁县| 吉木萨尔县| 双江| 卓尼县| 鄂托克旗| 涪陵区| 如皋市| 安达市| 惠安县| 平陆县| 杭州市| 金平| 玉树县| 集安市| 高淳县| 乌兰察布市| 聂荣县| 德化县| 合作市| 峨眉山市| 凤翔县| 旺苍县| 阳原县| 青铜峡市| 潮州市| 石家庄市| 古交市| 三原县|