1、发光器件和接收器件之间的距离大于一米; 2、有抗干扰技术,防止由于抖动产生的误计数; 3、每计数100,用等闪烁2s指示一下; 4、LED数码显示计数器。
2021-05-18 08:56:24 165KB 光电计数器的设计
1
【单片机】实验四计数器工程文件
2021-05-17 22:03:07 19KB 单片机
1
利用LABVIEW实现报警,当温度高于设定温度时,实现报警,并记录报警次数。
2021-05-16 22:23:05 16KB LABVIEW
1
流量计数器毕业设计
2021-05-16 18:02:01 1.39MB 流量计数器毕业设计
红外光电计数器:使用51单片机开发板开发的红外计数器;
2021-05-16 15:58:32 9.79MB 光电计数器
1
数字电路课程设计-跳绳计数器 带运行文件 电路图 与报告
2021-05-16 14:07:17 6.22MB 数字电路 课程设计 跳绳计数器
1
本科做的加减计数器仿真设计,里面包含加减各一个例子,且有搭建的电路图以及仿真结果图
2021-05-15 14:02:14 891KB 加减计数器仿真设计
1
北邮 数电实验 计数器
2021-05-14 19:05:06 478B 北邮 计数器
1
m32f103r6仿真计数器程序+Proteus 单片机源程序如下: #include "stm32f10x.h" #include "Delay.h" #include "smg.h" #include "sys.h" #include "timer.h" #include "led.h" #include "fmq.h" #include "key.h" #include "stm32f10x_tim.h" uint16_t table[] = { /* 0, 1, 2, 3, 4, 5, 6, 7, 8, */ 0x3F, 0x06, 0x5B, 0x4F, 0x66, 0x6D, 0x7D, 0x07, 0x7F, /* 9, A, B, C, D, E, F, ., none */ 0x6F, 0x77, 0x7C, 0x39, 0x5E, 0x79, 0x71, 0x80, 0x00 }; uint16_t t; uint16_t num[3],inc = 0x00; int main(void) { SMG_Init(); GPIO_Write(GPIOA, 0x3f3f); GPIO_Write(GPIOB, 0xff3f); while (1) { t=KEY_Scan_KEY_INC(); //得到键值 if(t) //if(条件)t!=0真 { inc++; if(inc <= 0xff) { num[2]=inc%10; num[1]=inc/10%10; num[0]=inc/100; GPIO_Write(GPIOB,((~inc) <<8) + table[num[2]]); GPIO_Write(GPIOA,(table[num[1]] <<8) + table[num[0]]); } else { inc = 0xff; } } } }
2021-05-14 09:35:41 6.32MB stm32f103r6 Proteus led计数器
1
是一个能够实现计数范围0~2000的单片机计数程序,并设有清零按钮,是一个不错的学习51单片机的入门程序
1