2024年06月20日 29 阅读 ✨生活&杂事 与pc机通信 #include <reg51.h> unsigned char led[]={0xfe,0xfd,0xfb,0xf7,0xef,0xdf,0xbf,0x7f}; unsigned ...
2024年06月20日 27 阅读 ✨生活&杂事 秒表 #include <reg51.h> unsigned char led[]={0xc0,0xf9,0xa4,0xb0,0x99,0x92,0x82,0xf8,0x80,0x90};...
2024年06月20日 18 阅读 ✨生活&杂事 开关控制LED #include<reg51.h> sbit key=P0^0; sbit LED1=P1^0; sbit LED2=P1^1; void delay( int t) { ...
2024年06月20日 23 阅读 ✨生活&杂事 甲乙通信(乙) #include <reg51.h> unsigned char smg[]={0xc0,0xf9,0xa4,0xb0,0x99,0x92,0x82,0xf8,0x80,0x90};...
2024年06月20日 16 阅读 ✨生活&杂事 甲乙通信(甲) #include <reg51.h> sbit key=P0^0; unsigned char count=0; void delay(unsigned int t) { while...