- 博客(2)
- 资源 (2)
- 收藏
- 关注
原创 02例:从左到右的流水灯
51单片机100实例之02例#include <reg52.h>#include <intrins.h>//C51内部移位函数#define uchar unsigned char#define uint unsigned int//1毫秒延时子程序void DelayMS(uint x){ uchar i; while(x--) { for(i=120;i>0;i--); }}//主程序void main(){ P0 = 0x
2021-02-07 15:56:31 883
原创 01例:闪烁的LED灯
51单片机100实例之01例项目名称:闪烁的LED灯#include <reg52.h>//52头文件#define uchar unsigned char#define uint unsigned int//引脚定义sbit LED = P1^0;//1毫秒延时子程序void DelayMS(uint x){ uchar i; while(x--) { for(i=120;i>0;i--); }}//主程序void main(){
2021-02-07 15:47:14 276
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人