代码搜索:定时报警

找到约 10,000 项符合「定时报警」的源代码

代码结果 10,000
www.eeworm.com/read/7282/114558

c sh103.c

#include #include #define unit unsigned int #define uchar unsigned char sbit L0=P2^0; sbit L1=P2^1; sbit L2=P2^2; sbit L3=P2^3; uchar data BUFFER[1]={0}; /*定时器计数变量*
www.eeworm.com/read/7796/135325

plg time3.plg

礦ision3 Build Log Project: F:\c8051f020模块\time3定时\time3.uv2 Project File Date: 10/11/2009 Output: Build target 'Target 1' assembling STARTUP.
www.eeworm.com/read/8474/148228

c ex43.c

//实例43:用定时器T1查询方式控制单片机发出1KHz音频 #include // 包含51单片机寄存器定义的头文件 sbit sound=P3^7; //将sound位定义为P3.7引脚 /************************************************************** 函数功能:主函数 *******
www.eeworm.com/read/8474/148245

c ex45.c

//实例45:用定时器T0的中断控制1位LED闪烁 #include // 包含51单片机寄存器定义的头文件 sbit D1=P2^0; //将D1位定义为P2.0引脚 /************************************************************** 函数功能:主函数 *************************
www.eeworm.com/read/8790/154000

c stepmot.c

#include #include"StepMot.h" //定时器T1溢出做延时函数:T1_Delay() void T1_Delay(uint temp) { uint cnt; cnt = 65536 - 100*temp; //晶振:12MHz TMOD = TMOD | 0x20 ; //T1 工作在方式1(16位计数器)
www.eeworm.com/read/11248/214076

#1 wlcda1098.#1

;参考程序A. 文件名:WLCDA1098.ASM程序功能;在该液晶模块上显示二行字符: ;Welcom To NCD ;www.xhl.com.cn $include (c8051f020.inc) ORG 0 AJMP main ORG 30h MAIN: MOV WDTCN,#0DEH ;禁止看门狗定时器 MOV
www.eeworm.com/read/11248/214086

#2 wlcda1098.#2

参考程序A. 文件名:WLCDA1098.ASM程序功能;在该液晶模块上显示二行字符: Welcom To NCD www.xhl.com.cn $include (c8051f020.inc) ORG 0 AJMP main ORG 30h MAIN: MOV WDTCN,#0DEH ;禁止看门狗定时器 MOV
www.eeworm.com/read/11248/214087

asm wlcda1098.asm

;参考程序A. 文件名:WLCDA1098.ASM程序功能;在该液晶模块上显示二行字符: ;Welcom To NCD ;www.xhl.com.cn $include (c8051f020.inc) ORG 0 AJMP main ORG 30h MAIN: MOV WDTCN,#0DEH ;禁止看门狗定时器 MOV
www.eeworm.com/read/11647/232174

c part3.1.1.c

#include //52系列单片机头文件 #define uchar unsigned char #define uint unsigned int sbit led1=P1^0; uchar num; void main() { TMOD=0x00;//设置定时器0为工作方式0(0000 0000) TH0=(8192-4607)/32;//
www.eeworm.com/read/11647/232175

c part3.1.2.c

#include //52系列单片机头文件 #define uchar unsigned char #define uint unsigned int sbit led1=P1^0; uint num; void main() { TMOD=0x02;//设置定时器0为工作方式2(0000 0010) TH0=6; //装初值 TL0=