虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

dc<b>电源模块</b>

  • 开关电源模块并联供电系统电子设计大赛赛题方案

    电子设计大赛赛题方案

    标签: 开关电源模块 并联供电系统 电子设计大赛 方案

    上传时间: 2013-11-02

    上传用户:wayne595

  • A-开关电源模块并联供电系统(A题)

    全国电子设计大赛题解!

    标签: 开关电源模块 并联供电系统

    上传时间: 2013-11-07

    上传用户:z1191176801

  • MSP430与bq电量计间采用SMBus通信接口的宽输入电池充电器

    本应用报告描述了一个具有宽电压输入的智能电池充电器。其中的参考设计实现了在MSP430微控制器和兼容SMBus的电池电量计之间进行通信的系统管理总线(SMBus)协议。MSP430 器件通过SMBus 从电量计获取电压、电流和其它一些参数,之后通过调节输出到dc/dc变换器模块的PWM 占空比来传递电池所需的电量。

    标签: SMBus MSP 430 bq电量计

    上传时间: 2013-10-28

    上传用户:1427796291

  • P54C-VR奔腾(R)微处理器的电源模块

      Providing power for the Pentium® microprocessor family isnot a trivial task by any means. In an effort to simplify thistask we have developed a new switching regulator controlcircuit and a new linear regulator to address the needs ofthese processors. Considerable time has been spent developingan optimized decoupling network. Here are severalcircuits using the new LTC®1266 synchronous buck regulatorcontrol chip and the LT®1584 linear regulator toprovide power for Pentium processors and Pentium VREprocessors. The Pentium processor has a supply requirementof 3.3V ±5%. The Pentium VRE processor requires3.500V ±100mV.

    标签: C-VR 54 奔腾 微处理器

    上传时间: 2013-11-01

    上传用户:名爵少年

  • IT8512 120V/30A/300W直流电子负载简介

    IT8512电子负载用途:◆生产线的快速测试,如:开关电源、电源适配器、充电器、电源模块、LCD Inverter、LIPS等;◆实验室、研发、计量检定部门对上述产品的测试检定;◆产品老化测试。

    标签: 8512 120 300 IT

    上传时间: 2013-10-30

    上传用户:123454

  • TLC2543 中文资料

    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);           }         } 

    标签: 2543 TLC

    上传时间: 2013-11-19

    上传用户:shen1230

  • AVR单片机数码管秒表显示

    #include<iom16v.h> #include<macros.h> #define uint unsigned int #define uchar unsigned char uint a,b,c,d=0; void delay(c) { for for(a=0;a<c;a++) for(b=0;b<12;b++); }; uchar tab[]={ 0xc0,0xf9,0xa4,0xb0,0x99,0x92,0x82,0xf8,0x80,0x90,

    标签: AVR 单片机 数码管

    上传时间: 2013-10-21

    上传用户:13788529953

  • 基于MSP430单片机的温控系统设计

    介绍了运用MSP430单片机设计开发了一种温控系统,重点阐述了以单片机为核心的硬件电路和以C语言为用户程序编程语言的用户程序,设计了传感器电路、信号调理电路、电源模块、液晶模块电路,开发了LCD模块操作、数据采集处理程序和温控调节模块程序。该系统体积小、成本低、工作可靠,工程移植性好,具有很高的工程应用和借鉴价值。

    标签: MSP 430 单片机 温控

    上传时间: 2014-12-26

    上传用户:s363994250

  • 基于STC12C5A60S2的帆板控制系统设计

    以STC12C5A60S2单片机为控制核心,利用单片机控制风扇完成对帆板转角的控制。该系统主要模块有单片机控制模块,人机交互模块、角度检测模块、风扇控制调速模块、电源模块、声光报警模块。由角度传感器测得帆板角度并反馈给单片机风扇转速控制模块构成风速闭环控制系统,利用单片机产生的PWM控制风扇电机驱动模块,从而实现角度的精准控制。

    标签: STC 12C A60 60S

    上传时间: 2013-10-13

    上传用户:a155166

  • 单片直接驱动数码管的计数器程序

      a_bit equ 20h ;个位数存放处   b_bit equ 21h ;十位数存放处   temp equ 22h ;计数器寄存器   star: mov temp,#0 ;初始化计数器   stlop: acall display   inc temp   mov a,temp   cjne a,#100,next ;=100重来   mov temp,#0   next: ljmp stlop   ;显示子程序   display: mov a,temp ;将temp中的十六进制数转换成10进制   mov b,#10 ;10进制/10=10进制   div ab   mov b_bit,a ;十位在a   mov a_bit,b ;个位在b   mov dptr,#numtab ;指定查表启始地址   mov r0,#4   dpl1: mov r1,#250 ;显示1000次   dplop: mov a,a_bit ;取个位数   MOVC A,@A+DPTR ;查个位数的7段代码   mov p0,a ;送出个位的7段代码

    标签: 直接驱动 数码管 计数器 程序

    上传时间: 2013-11-06

    上传用户:lx9076