本文將探討微控制器與 PSoC (可編程系統(tǒng)單晶片)在數(shù)位電視應用上的設計挑戰(zhàn),並比較微控制器和 PSoC 架構在處理這些挑戰(zhàn)時的不同處,以有效地建置執(zhí)行。
上傳時間: 2013-11-22
上傳用戶:gengxiaochao
磁阻傳感器為建立羅盤導航系統(tǒng)提供了固態(tài)有效的解決辦法!但是我們怎么才能夠從簡單的3 軸數(shù)據(jù)得到羅盤的方位角呢?下面就將一步步告訴你如何去實現(xiàn)!
上傳時間: 2013-11-10
上傳用戶:潛水的三貢
Single-Ended and Differential S-Parameters Differential circuits have been important incommunication systems for many years. In the past,differential communication circuits operated at lowfrequencies, where they could be designed andanalyzed using lumped-element models andtechniques. With the frequency of operationincreasing beyond 1GHz, and above 1Gbps fordigital communications, this lumped-elementapproach is no longer valid, because the physicalsize of the circuit approaches the size of awavelength.Distributed models and analysis techniques are nowused instead of lumped-element techniques.Scattering parameters, or S-parameters, have beendeveloped for this purpose [1]. These S-parametersare defined for single-ended networks. S-parameterscan be used to describe differential networks, but astrict definition was not developed until Bockelmanand others addressed this issue [2]. Bockelman’swork also included a study on how to adapt single-ended S-parameters for use with differential circuits[2]. This adaptation, called “mixed-mode S-parameters,” addresses differential and common-mode operation, as well as the conversion betweenthe two modes of operation.This application note will explain the use of single-ended and mixed-mode S-parameters, and the basicconcepts of microwave measurement calibration.
上傳時間: 2014-03-25
上傳用戶:yyyyyyyyyy
微波鐵氧體材料分為多晶和單晶兩種。多晶材料按晶體結構分,主要要尖晶石型、石榴石型和磁鉛石型三種。
上傳時間: 2013-11-09
上傳用戶:fac1003
本書首先從工程應用出發(fā),介紹了磁的基本概念、電路中電磁關系和磁性材料特性等基礎知識。程應用出發(fā),然后詳細介紹了開關電源中磁性元件基本工作模式和對磁性元件的要求;著重分析了高頻線圈的集膚效應、鄰近效應和寄生參數(shù)的原理與磁性元件設計要注意的有關問題;給出了開關電源變壓器設計和電感不同工作模式設計方法,同時給出了電流互感器、磁放大器和尖峰抑制器的原理和設計;并有選擇地提供了磁元件設計的相關資料和國外磁元件標準號,以便讀者查閱。
上傳時間: 2014-01-07
上傳用戶:tianyi223
水聲換能器是利用晶體(石英或酒石酸鉀鈉)壓電陶瓷(鈦酸鋇和鋯鈦酸鉛等)的壓電效應或鐵鎳合金的磁致伸縮效應來進行工作的。所謂壓電效應,就是把晶體按一定方向切成薄片,并在晶體薄片上施加壓力,在它的兩端面上會分別產(chǎn)生正電荷和負電荷。反之在晶體博片上施加拉伸力時,它的兩個端面上就會產(chǎn)生與加壓力時相反的電荷。
標簽: 換能器
上傳時間: 2013-10-10
上傳用戶:jisiwole
用途:測量地磁方向,測量物體靜止時候的方向,測量傳感器周圍磁力線的方向。注意,測量地磁時候容易受到周圍磁場影響,主芯片HMC5883 三軸磁阻傳感器特點(抄自網(wǎng)上): 1,數(shù)字量輸出:I2C 數(shù)字量輸出接口,設計使用非常方便。 2,尺寸小: 3x3x0.9mm LCC 封裝,適合大規(guī)模量產(chǎn)使用。 3,精度高:1-2 度,內置12 位A/D,OFFSET, SET/RESET 電路,不會出現(xiàn)磁飽和現(xiàn)象,不會有累加誤差。 4,支持自動校準程序,簡化使用步驟,終端產(chǎn)品使用非常方便。 5,內置自測試電路,方便量產(chǎn)測試,無需增加額外昂貴的測試設備。 6,功耗低:供電電壓1.8V, 功耗睡眠模式-2.5uA 測量模式-0.6mA 連接方法: 只要連接VCC,GND,SDA,SDL 四條線。 Arduino GND -> HMC5883L GND Arduino 3.3V -> HMC5883L VCC Arduino A4 (SDA) -> HMC5883L SDA Arduino A5 (SCL) -> HMC5883L SCL (注意,接線是A4,A5,不是D4,D5) 源程序: #include <Wire.h> #include <HMC5883L.h> HMC5883Lcompass; voidsetup() { Serial.begin(9600); Wire.begin(); compass = HMC5883L(); compass.SetScale(1.3); compass.SetMeasurementMode(Measurement_Continuous); } voidloop() { MagnetometerRaw raw = compass.ReadRawAxis(); MagnetometerScaled scaled = compass.ReadScaledAxis(); float xHeading = atan2(scaled.YAxis, scaled.XAxis); float yHeading = atan2(scaled.ZAxis, scaled.XAxis); float zHeading = atan2(scaled.ZAxis, scaled.YAxis); if(xHeading < 0) xHeading += 2*PI; if(xHeading > 2*PI) xHeading -= 2*PI; if(yHeading < 0) yHeading += 2*PI; if(yHeading > 2*PI) yHeading -= 2*PI; if(zHeading < 0) zHeading += 2*PI; if(zHeading > 2*PI) zHeading -= 2*PI; float xDegrees = xHeading * 180/M_PI; float yDegrees = yHeading * 180/M_PI; float zDegrees = zHeading * 180/M_PI; Serial.print(xDegrees); Serial.print(","); Serial.print(yDegrees); Serial.print(","); Serial.print(zDegrees); Serial.println(";"); delay(100); }
上傳時間: 2013-12-16
上傳用戶:stella2015
上傳時間: 2013-11-11
上傳用戶:flg0001
上傳時間: 2013-11-23
上傳用戶:pzw421125
電路板故障分析 維修方式介紹 ASA維修技術 ICT維修技術 沒有線路圖,無從修起 電路板太複雜,維修困難 維修經(jīng)驗及技術不足 無法維修的死板,廢棄可惜 送電中作動態(tài)維修,危險性極高 備份板太多,積壓資金 送國外維修費用高,維修時間長 對老化零件無從查起無法預先更換 維修速度及效率無法提升,造成公司負擔,客戶埋怨 投資大量維修設備,操作複雜,績效不彰
上傳時間: 2013-11-09
上傳用戶:chengxin