渐变型跑马灯,学习延时函数-Arduino中文社区 - Powered by Discuz!

Arduino中文社区

 找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 4457|回复: 2

渐变型跑马灯,学习延时函数

[复制链接]
发表于 2016-11-2 23:01 | 显示全部楼层 |阅读模式
void setup() {
for(int i=2;i<=7;i++)
{
  pinMode(i,OUTPUT);//将2~7脚定义为输出接口
  }
}

void loop() {
for(int a=1;a<10000;a++)
{
  for(int b=2;b<=7;b++)//从2脚开始到7脚
   {
   digitalWrite(b,HIGH);
   delay(a/10);//跑马灯的速度逐渐变慢
   }
  for(int b=7;b>=2;b--)//从7脚到2脚
  {
  digitalWrite(b,LOW);
  delay(a/10);
  }
}

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|Archiver|手机版|Arduino中文社区

GMT+8, 2024-11-28 11:47 , Processed in 0.099116 second(s), 15 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表