51单片机
记录我学习51单片机的知识过程
Terence_Jp
这个作者很懒,什么都没留下…
展开
-
51单片机之74HC138译码器控制数码管进行100s计数
/** I use a timer in my code to control the time I use 138decoder int the hardware **/#include<reg51.h>#define uint unsigned int#define uchar unsigned charsbit LSA=P2^2;sbit LSB=P2^3;sbit LSC=P2^4;uchar code tab_1[]={0x3f,0x06,0x5b,0x4f.原创 2020-10-26 19:56:24 · 1688 阅读 · 1 评论 -
51单片机制作脉冲发生器
设计一个秒脉冲发生器任务描述:应用单片机定时/计数器设计一个秒脉冲发生器,并用2位数码管显示脉冲数文章目录设计一个秒脉冲发生器要求总结要求1.在Keil IDE(u Vision2)中完成应用程序设计,并编译2.在ISIS 7 Professional 中完成电路设计、调试与仿真/** I use a timer in my code to control the time**/#include<reg51.h>#define uint unsigned int#原创 2020-10-26 19:53:20 · 6667 阅读 · 3 评论 -
51单片机之动态数码管
51单片机实现动态数码管单片机型号:AT89C51数码管型号:7SEG-MPX6-CC我使用定时器作为计算时间,请看代码下列代码#include <REGX51.H>#define uchar unsigned char#define uint unsigned intuint i;uint time;code uchar arrays[]={0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,0x7f,0x6f};void init_t原创 2020-05-09 16:44:24 · 1000 阅读 · 0 评论