程序-Arduino中文社区 - Powered by Discuz!

Arduino中文社区

 找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 2083|回复: 1

程序

[复制链接]
发表于 2022-2-17 17:09 | 显示全部楼层 |阅读模式
int ledPin1=9;
int ledPin2=10;
int ledPin3=11;
void setup() {
  // put your setup code here, to run once:
  pinMode(ledPin1,OUTPUT);
  pinMode(ledPin2,OUTPUT);
  pinMode(ledPin3,OUTPUT);
}

void loop() {
  // put your main code here, to run repeatedly:
  analogWrite(ledPin1,random(120)+135);
  analogWrite(ledPin2,random(120)+135);
  analogWrite(ledPin3,random(120)+135);
delay(random(100));
}
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

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

GMT+8, 2024-12-28 17:46 , Processed in 0.094724 second(s), 15 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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