1 Star 1 Fork 0

小程吃饭饭/打回原形

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
2.3按键控制LED灯移动.c 584 Bytes
一键复制 编辑 原始数据 按行查看 历史
小程吃饭饭 提交于 2024-01-22 22:37 . 按键控制LED灯移动
#include<REGX52.H>
#include<INTRINS.H>
void Delay(unsigned int x)
{
unsigned char data i, j;
while(x)
{
_nop_();
i = 2;
j = 199;
do
{
while (--j);
} while (--i);
x--;
}
}
unsigned int LedNumber = 0;
void main()
{ P2=0xFE;
while(1)
{
if(P3_1==0)
{
Delay(20);
while(P3_1==0);
Delay(20);
LedNumber++;
if(LedNumber > 8)
LedNumber = 0;
P2 = ~(0x01<<LedNumber);
}
if(P3_0==0)
{
Delay(20);
while(P3_0==0);
Delay(20);
if(LedNumber==0)
LedNumber=7;
else
LedNumber--;
P2=~(0x01<<LedNumber);
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/xiaocheng-has-a-meal/return-to-its-original-form.git
git@gitee.com:xiaocheng-has-a-meal/return-to-its-original-form.git
xiaocheng-has-a-meal
return-to-its-original-form
打回原形
master

搜索帮助