搜索结果
找到约 903 项符合
stRing-include 的查询结果
电源技术 如何制作使用μModule降压稳压器的输入输出电压
 
Linear Technology’s DC/DC step-down μModule®regulators are complete switchmode power supplies in asurface-mount package. They include the DC/DC controller,inductor, power switches and supporting circuitry.These highly integrated regulators also provide an easysolution for app ...
电源技术 Designing Linear Circuits for 5V Operation
In predominantly digital systems it is often necessaryto include linear circuit functions. Traditionally, separatepower supplies have been used to run the linear components(see Box, “Linear Power Supplies—Past, Present,and Future”).
单片机编程 用键盘控制的LED灯
#include<reg51.h>
单片机编程 TLC2543 中文资料
TLC2543是TI公司的12位串行模数转换器,使用开关电容逐次逼近技术完成A/D转换过程。由于是串行输入结构,能够节省51系列单片机I/O资源;且价格适中,分辨率较高,因此在仪器仪表中有较为广泛的应用。
TLC2543的特点
(1)12位分辩率A/D转换器;
(2)在工作温度范围内10&mu;s转换时间;
(3)11个模拟输入通道;
...
单片机编程 MEGA16制作的电子时钟(附仿真图+源代码)
#include <iom16v.h>
#include <macros.h>
#define uchar unsigned char
#define uint unsigned int
uchar
num,miao,fen,shi,miaoge,miaoshi,fenge,fenshi,shig
单片机编程 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,
单片机编程 100个单片机实例
#include<reg51.h> //包含单片机寄存器的头文件
/*******************************************************
函数功能:主函数 (C 语言规定必须有也只能有1 个主函数)
********************************************************/
void main(void)
{
while(1) //无限循环
{
P1=0xff; // P1=1111 1111B,熄灭LED
...
单片机编程 c51流水灯仿真与程序
对应程序:
#include<reg52.h>
#define uint unsigned int
#define uchar unsigned char
uchar code tab[]={
0x81,
0x42,
0x24,
0x18,
};
void delay(uint z)
{
uint i,j;
for(i=z;i>0;i--)
for(j=120;j>0;j--);
}
void init()
{
P0=0x00;
}
单片机编程 AVR常用库函数介绍
目录:
1. Character Type Functions - 字符类型函数
2. Standard C Input/Output Functions - 标准输入输出函数
3. Standard Library Functions - 标准库和内存分配函数
4. Mathematical Functions - 数学函数
5. String Functions - 字符串函数
6. BCD Conversion Functions - BCD 转换函数
7. Memory Acc ...
单片机编程 51单片机实现的RS485通讯程序
#ifndef __485_C__
#define __485_C__
#include
#include
#define unsigned char uchar
#define unsigned int uint
/* 通信命令 */
#define __ACTIVE_ 0x01 // 主机询问从机是否存在
#define __GETDATA_ 0x02 // 主机发送读设备请求
#define __OK_ 0x03 // 从机应答
#define ...