基础电路设计必备,39种电子元件检验要求 。
标签: 电子元件
上传时间: 2013-11-04
上传用户:脚趾头
CAM350教程:CAM350 v8.05学习资料 。
上传时间: 2013-11-23
上传用户:jinyao
Abstract: There are differences between the operation of low-frequency AC transformers and electronic transformersthat supply current to MR16 lamps, and there are also differences in the current draw for MR16 halogen lamps andMR16 LED lamps. These contrasts typically prevent an MR16 LED lamp from operating with most electronictransformers. This article explains how a high-brightness (HB) LED driver optimized for MR16 lamps will allow LEDlamps to be compatible with most electronic transformers.A similar version of this article appeared on DISPLAY Plus, July 7, 2012 and in German in Elektronikpraxis, October 1,2012.
上传时间: 2013-10-14
上传用户:playboys0
PCB设计开关电源的PCB设计规范 , ,,
上传时间: 2013-10-26
上传用户:wxhwjf
The power appetite of large TFT-LCDs appears to beinsatiable. Power supplies must feed increasing numbersof transistors and improved DISPLAY resolutions, and doso without taking much space.
上传时间: 2014-12-24
上传用户:小小小熊
液晶显示器,或称LCD(Liquid Crystal DISPLAY),为平面超薄的显示设备,它由一定数量的彩色或黑白像素组成,放置于光源或者反射面前方。
上传时间: 2014-12-24
上传用户:bruce
void DISPLAY() //数码显示 { SCON=0; //初始化串行口方式 SBUF=dispcode[ge]; while(!TI); TI=0; led4=0; delay(2); led4=1; SBUF=dispcode[shi]; while(!TI); TI=0; led3=0; delay(2); led3=1;
上传时间: 2013-11-20
上传用户:wtrl
欧姆龙plc编程软件CX-Programmer使用手册 第一章安装和启动 1. 安装 1-1. 安装CX-Programmer 1-2. 在线注册 2. 打开新工程和设置设备型号 3. 打开新工程和设置设备型号 4. 主窗口 4-1.兼容SYSWIN软件的按键分配 4-2. 段 4-3.删除和显示其他窗口 5.创建程序 5-1.常开接点的输入 5-2.线圈的输入 5-3.符号注释的编辑 5-4.条注释的输入 5-5.常闭接点的输入 5-6.元素注释的输入 5-7.上升沿微分接点的输入 5-8.下降沿微分接点的输入 5-9.向上垂线的输入 5-10.向下垂线的输入 5-11.高级指令的输入1 - 字符串的输入 5-12.高级指令的输入1 - 有用的功能 5-13.辅助继电器的输入- 1.0 秒时钟脉冲位 5-14.高级指令的输入2 – 微分指令的输入 5-15.或逻辑的条输入 5-16.高级指令的输入3 – 通过功能号来输入 5-17.定时器指令的输入 5-18.计数器指令的输入 5-19.条的编辑…复制和粘贴 5-20. END指令的输入 第二章在线/调试 1. 程序错误检查(编译) 2. 进入在线 3. 监视 4. 监视- 2 同时监视程序中多处位置 5. 监视- 3 以十六进制数监视 6. 监视- 4 查看窗口 7. 监视- 5 查看窗口的当前值修改和二进制数监视 8. 查看窗口的有用功能 9. 监视- 6 监视窗口- 2 10.监视- 7 以短条形式显示 11.监视- 8 微分监视 12.强制为On/Off 13.强制-on/off 位的显示列表 14.修改定时器的设定值 15.修改定时器的当前值 16.查找功能- 1 通过地址引用工具查找 17.查找功能- 2 梯形图的折回查找 18.查找功能- 3 通过注释的关键字来查找 19.查找功能- 4 进入条注释 20.查找功能- 5 查找位地址 21.在线编辑 实用的功能 相关资料: 欧姆龙PLC编程软件CX-Programmer7.1 简体中文版
上传时间: 2013-10-25
上传用户:84425894
TLC2543是TI公司的12位串行模数转换器,使用开关电容逐次逼近技术完成A/D转换过程。由于是串行输入结构,能够节省51系列单片机I/O资源;且价格适中,分辨率较高,因此在仪器仪表中有较为广泛的应用。 TLC2543的特点 (1)12位分辩率A/D转换器; (2)在工作温度范围内10μs转换时间; (3)11个模拟输入通道; (4)3路内置自测试方式; (5)采样率为66kbps; (6)线性误差±1LSBmax; (7)有转换结束输出EOC; (8)具有单、双极性输出; (9)可编程的MSB或LSB前导; (10)可编程输出数据长度。 TLC2543的引脚排列及说明 TLC2543有两种封装形式:DB、DW或N封装以及FN封装,这两种封装的引脚排列如图1,引脚说明见表1 TLC2543电路图和程序欣赏 #include<reg52.h> #include<intrins.h> #define uchar unsigned char #define uint unsigned int sbit clock=P1^0; sbit d_in=P1^1; sbit d_out=P1^2; sbit _cs=P1^3; uchar a1,b1,c1,d1; float sum,sum1; double sum_final1; double sum_final; uchar duan[]={0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,0x7f,0x6f}; uchar wei[]={0xf7,0xfb,0xfd,0xfe}; void delay(unsigned char b) //50us { unsigned char a; for(;b>0;b--) for(a=22;a>0;a--); } void DISPLAY(uchar a,uchar b,uchar c,uchar d) { P0=duan[a]|0x80; P2=wei[0]; delay(5); P2=0xff; P0=duan[b]; P2=wei[1]; delay(5); P2=0xff; P0=duan[c]; P2=wei[2]; delay(5); P2=0xff; P0=duan[d]; P2=wei[3]; delay(5); P2=0xff; } uint read(uchar port) { uchar i,al=0,ah=0; unsigned long ad; clock=0; _cs=0; port<<=4; for(i=0;i<4;i++) { d_in=port&0x80; clock=1; clock=0; port<<=1; } d_in=0; for(i=0;i<8;i++) { clock=1; clock=0; } _cs=1; delay(5); _cs=0; for(i=0;i<4;i++) { clock=1; ah<<=1; if(d_out)ah|=0x01; clock=0; } for(i=0;i<8;i++) { clock=1; al<<=1; if(d_out) al|=0x01; clock=0; } _cs=1; ad=(uint)ah; ad<<=8; ad|=al; return(ad); } void main() { uchar j; sum=0;sum1=0; sum_final=0; sum_final1=0; while(1) { for(j=0;j<128;j++) { sum1+=read(1); DISPLAY(a1,b1,c1,d1); } sum=sum1/128; sum1=0; sum_final1=(sum/4095)*5; sum_final=sum_final1*1000; a1=(int)sum_final/1000; b1=(int)sum_final%1000/100; c1=(int)sum_final%1000%100/10; d1=(int)sum_final%10; DISPLAY(a1,b1,c1,d1); } }
上传时间: 2013-11-19
上传用户:shen1230
kinetis k10 Quick start guide编程快速入门KinetisKinetis ,,,,,,,,
上传时间: 2014-12-26
上传用户:亚亚娟娟123