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

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

zero-FORCING

  • DS18B20中文資料

    FEATURES  Unique 1-Wire interface requires only one port pin for communication  Multidrop capability simplifies distributed temperature sensing applications  Requires no external components  Can be powered from data line. Power supply range is 3.0V to 5.5V  Zero standby power required  Measures temperatures from -55°C to +125°C. Fahrenheit equivalent is -67°F to +257°F  ±0.5°C accuracy from -10°C to +85°C  Thermometer resolution is programmable from 9 to 12 bits  Converts 12-bit temperature to digital word in 750 ms (max.)  User-definable, nonvolatile temperature alarm settings  Alarm search command identifies and addresses devices whose temperature is outside of programmed limits (temperature alarm condition)  Applications include thermostatic controls, industrial systems, consumer products, thermometers, or any thermally sensitive system

    標簽: 18B B20 DS 18

    上傳時間: 2013-08-04

    上傳用戶:CHENKAI

  • 精密DAC和看門狗提高模擬輸出安全

    Abstract: Using a DAC and a microprocessor supervisor, the system safety can be improved in industrial controllers, programmablelogiccontrollers (PLC), and data-acquisition systems. The analog output is set to zero-scale (or pin-programmable midscale) when amicroprocessor failure, optocoupler failure, or undervoltage condition occurs. A simple application is shown on how to implement thisfunction.

    標簽: DAC 精密 看門狗 模擬

    上傳時間: 2013-10-17

    上傳用戶:sjb555

  • DAC技術用語 (D/A Converters Defini

    Differential Nonlinearity: Ideally, any two adjacent digitalcodes correspond to output analog voltages that are exactlyone LSB apart. Differential non-linearity is a measure of theworst case deviation from the ideal 1 LSB step. For example,a DAC with a 1.5 LSB output change for a 1 LSB digital codechange exhibits 1⁄2 LSB differential non-linearity. Differentialnon-linearity may be expressed in fractional bits or as a percentageof full scale. A differential non-linearity greater than1 LSB will lead to a non-monotonic transfer function in aDAC.Gain Error (Full Scale Error): The difference between theoutput voltage (or current) with full scale input code and theideal voltage (or current) that should exist with a full scale inputcode.Gain Temperature Coefficient (Full Scale TemperatureCoefficient): Change in gain error divided by change in temperature.Usually expressed in parts per million per degreeCelsius (ppm/°C).Integral Nonlinearity (Linearity Error): Worst case deviationfrom the line between the endpoints (zero and full scale).Can be expressed as a percentage of full scale or in fractionof an LSB.LSB (Lease-Significant Bit): In a binary coded system thisis the bit that carries the smallest value or weight. Its value isthe full scale voltage (or current) divided by 2n, where n is theresolution of the converter.Monotonicity: A monotonic function has a slope whose signdoes not change. A monotonic DAC has an output thatchanges in the same direction (or remains constant) for eachincrease in the input code. the converse is true for decreasing codes.

    標簽: Converters Defini DAC

    上傳時間: 2013-10-30

    上傳用戶:stvnash

  • ADC轉換器技術用語 (A/D Converter Defi

    ANALOG INPUT BANDWIDTH is a measure of the frequencyat which the reconstructed output fundamental drops3 dB below its low frequency value for a full scale input. Thetest is performed with fIN equal to 100 kHz plus integer multiplesof fCLK. The input frequency at which the output is −3dB relative to the low frequency input signal is the full powerbandwidth.APERTURE JITTER is the variation in aperture delay fromsample to sample. Aperture jitter shows up as input noise.APERTURE DELAY See Sampling Delay.BOTTOM OFFSET is the difference between the input voltagethat just causes the output code to transition to the firstcode and the negative reference voltage. Bottom Offset isdefined as EOB = VZT–VRB, where VZT is the first code transitioninput voltage and VRB is the lower reference voltage.Note that this is different from the normal Zero Scale Error.CONVERSION LATENCY See PIPELINE DELAY.CONVERSION TIME is the time required for a completemeasurement by an analog-to-digital converter. Since theConversion Time does not include acquisition time, multiplexerset up time, or other elements of a complete conversioncycle, the conversion time may be less than theThroughput Time.DC COMMON-MODE ERROR is a specification which appliesto ADCs with differential inputs. It is the change in theoutput code that occurs when the analog voltages on the twoinputs are changed by an equal amount. It is usually expressed in LSBs.

    標簽: Converter Defi ADC 轉換器

    上傳時間: 2013-11-12

    上傳用戶:pans0ul

  • 三相固能繼電器

    Specification: 輸入信號:DC9-32V&AC100-240V 適用負載:電熱負載,電感負載 控制方式:零點觸發(Zero cross turn-on) 輸入額定電壓:AC 110-440±10% 輸入額定電流:200-400A 使用頻率:50/60Hz 使用環境:-10℃-50℃ 90%RH 冷卻方式:風冷式

    標簽: 三相 繼電器

    上傳時間: 2013-11-14

    上傳用戶:拔絲土豆

  • AT89C2051驅動步進電機的電路和源碼

    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 */ } }

    標簽: C2051 2051 89C AT

    上傳時間: 2013-11-21

    上傳用戶:boyaboy

  • This hands-on, one-stop guide delivers the focused, streamlined direction you need to get your Web s

    This hands-on, one-stop guide delivers the focused, streamlined direction you need to get your Web solutions up and running quickly. Zero in on key ASP.NET configuration details and techniques using quick-reference tables, lists, coding and more.

    標簽: streamlined direction hands-on delivers

    上傳時間: 2015-01-11

    上傳用戶:Thuan

  • A Java virtual machine instruction consists of an opcode specifying the operation to be performed, f

    A Java virtual machine instruction consists of an opcode specifying the operation to be performed, followed by zero or more operands embodying values to be operated upon. This chapter gives details about the format of each Java virtual machine instruction and the operation it performs.

    標簽: instruction specifying operation performed

    上傳時間: 2014-01-11

    上傳用戶:yiwen213

  • A Java virtual machine instruction consists of an opcode specifying the operation to be performed, f

    A Java virtual machine instruction consists of an opcode specifying the operation to be performed, followed by zero or more operands embodying values to be operated upon. This chapter gives details about the format of each Java virtual machine instruction and the operation it performs.

    標簽: instruction specifying operation performed

    上傳時間: 2015-05-02

    上傳用戶:daoxiang126

  • A Java virtual machine instruction consists of an opcode specifying the operation to be performed, f

    A Java virtual machine instruction consists of an opcode specifying the operation to be performed, followed by zero or more operands embodying values to be operated upon. This chapter gives details about the format of each Java virtual machine instruction and the operation it performs.

    標簽: instruction specifying operation performed

    上傳時間: 2015-05-02

    上傳用戶:shawvi

主站蜘蛛池模板: 阜阳市| 江北区| 英德市| 桐梓县| 美姑县| 秭归县| 靖远县| 辛集市| 收藏| 肥西县| 北川| 仪陇县| 河北省| 资源县| 永吉县| 商洛市| 吴川市| 九龙城区| 祁连县| 宁夏| 墨竹工卡县| 平乡县| 故城县| 登封市| 科技| 秦皇岛市| 高平市| 堆龙德庆县| 澄江县| 连江县| 深泽县| 林周县| 清河县| 阿拉尔市| 湖南省| 武胜县| 方正县| 抚远县| 武强县| 宜良县| 丰镇市|