長電c2383 TO-92L
上傳時間: 2013-11-09
上傳用戶:wvbxj
The LTC®3610 is a high power monolithic synchronousstep-down DC/DC regulator that can deliver up to 12Aof continuous output current from a 4V to 24V (28Vmaximum) input supply. It is a member of a high currentmonolithic regulator family (see Table 1) that featuresintegrated low RDS(ON) N-channel top and bottomMOSFETs. This results in a high effi ciency and highpower density solution with few external components.This regulator family uses a constant on-time valleycurrent mode architecture that is capable of operatingat very low duty cycles at high frequency and with veryfast transient response. All are available in low profi le(0.9mm max) QFN packages.
上傳時間: 2013-11-07
上傳用戶:moerwang
隨著我國通信、電力事業的發展,通信、電力網絡的規模越來越大,系統越來越復雜。與之相應的對交流供電的可靠性、靈活性、智能化、免維護越來越重要。在中國通信、電力網絡中,傳統的交流供電方案是以UPS或單機式逆變器提供純凈不間斷的交流電源。由于控制技術的進步、完善,(N+X)熱插拔模塊并聯逆變電源已經非常成熟、可靠;在歐美的通信、電力發達的國家,各大通信運營商、電力供應商、軍隊均大量應用了這種更合理的供電方案。與其它方案相比較,(N+X)熱插拔模塊并聯逆變電源具有以下明顯的優點。
上傳時間: 2014-03-24
上傳用戶:alan-ee
適用于51單片機的串口發n
上傳時間: 2014-12-25
上傳用戶:qingzhuhu
畢業設計 USB TO Gigabit LAN 網卡 隨著網絡技術飛速發展,多媒體的應用越來越多,人們對網絡的要求也越來越高,為了適應市場的需求,網卡出現了。它以其結構簡單、成本低廉、兼容性強等諸多的優越性得到了廣泛的應用。由于網絡的應用越來越廣泛,網卡的應用也越來越多、功能越來越強大。開始時由于技術方面的限制,網卡只有10Mbps的吞吐量,由于網絡技術的發展,100Mbps吞吐量的網卡開始在市場上得到廣泛的應用。而現在1000Mbps吞吐量的網卡的出現又給網絡的傳輸帶來了新的活力。 論文中主要闡述了基于以太網的USB TO Gigabit LAN網卡的設計與制作。論文首先對以太網進行了介紹,緊接著講了網卡的基本知識。隨后又對USB TO Gigabit LAN網卡的電路設計和制作進行了詳細的描述。論文還包括了USB TO Gigabit LAN網卡的調試等內容。
上傳時間: 2014-12-02
上傳用戶:wab1981
89c51一種用N+1條線實現矩陣鍵盤
標簽: 矩陣鍵盤
上傳時間: 2014-12-26
上傳用戶:lhw888
為提高太陽能的利用率,以ATmega8單片機為控制核心,設計了一套光電跟蹤與視日運動軌跡跟蹤互補控制的雙軸太陽跟蹤器。該跟蹤器在晴天時,利用光敏電阻采集光強判斷太陽位置,控制步進電機實現光電跟蹤;在陰天時,采集時鐘器件PCF8583的時間信息,計算當前太陽位置來實現視日運動軌跡跟蹤。實驗表明:該太陽跟蹤器能在不同天氣狀況下對太陽進行較準確地跟蹤,能量接收效率提高了30%,達到充分利用太陽能的目的。 Abstract: To improve the utilization rate of solar energy,a kind of solar tracking controller which effectively combined the sun angle tracking and photo electric tracking based on ATmega8is designed.In the sunny days,the solar tracking con-troller determines the sun's position by using photosensitive resistances to collect light intensity and control stepper motors to achieve photo electric tracking,n cloudy days,it collects clock chip PCF8583time information to calculate the current position of the sun and achieve the sun angle tracking.Experimental results show the solar tracking controller accurately tracks the sun in different weather conditions,improves received energy efficiency by30%and reaches the purpose of full use of solar energy.
上傳時間: 2013-10-15
上傳用戶:urgdil
PICKIT™ 2 PROGRAMMER-TO-GO USER GUIDE The PICkit 2 Programmer-To-Go functionality allows a PIC MCU memory image to be downloaded into the PICkit 2 unit for later programming into a specific PIC MCU. No software or PC is required to program devices once the PICkit 2 unit is set up for Programming-To-Go. A USB power source for the PICkit 2 is all that is needed.
標簽: PROGRAMMER-TO PICKIT 8482
上傳時間: 2013-10-29
上傳用戶:ca05991270
AT89C2051驅動步進電機的電路和源碼:AT89C2051驅動步進電機的電路和源碼 程序:stepper.c stepper.hex/* * STEPPER.C * sweeping stepper's rotor cw and cww 400 steps * Copyright (c) 1999 by W.Sirichote */#i nclude c:\mc5151io.h /* include i/o header file */ #i nclude c:\mc5151reg.hregister unsigned char j,flag1,temp; register unsigned int cw_n,ccw_n;unsigned char step[8]={0x80,0xc0,0x40,0x60,0x20,0x30,0x10,0x90} #define n 400/* flag1 mask byte 0x01 run cw() 0x02 run ccw() */main(){ flag1=0; serinit(9600); disable(); /* no need timer interrupt */ cw_n = n; /* initial step number for cw */ flag1 |=0x01; /* initial enable cw() */while(1){ { tick_wait(); /* wait for 10ms elapsed */energize(); /* round-robin execution the following tasks every 10ms */ cw(); ccw(); } }}cw(){ if((flag1&0x01)!=0) { cw_n--; /* decrement cw step number */ if (cw_n !=0) j++; /* if not zero increment index j */ else {flag1&=~0x01; /* disable cw() execution */ ccw_n = n; /* reload step number to ccw counter */ flag1 |=0x02; /* enable cww() execution */ } }
上傳時間: 2013-11-21
上傳用戶:boyaboy
The PCA9541 is a 2-to-1 I2C-bus master selector designed for high reliability dual masterI2C-bus applications where system operation is required, even when one master fails orthe controller card is removed for maintenance. The two masters (for example, primaryand back-up) are located on separate I2C-buses that connect to the same downstreamI2C-bus slave devices. I2C-bus commands are sent by either I2C-bus master and are usedto select one master at a time. Either master at any time can gain control of the slavedevices if the other master is disabled or removed from the system. The failed master isisolated from the system and will not affect communication between the on-line masterand the slave devices on the downstream I2C-bus.
上傳時間: 2013-10-09
上傳用戶:3294322651