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

Arduino中文社区

 找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 1921|回复: 1

程序

[复制链接]
发表于 2022-2-17 16:21 | 显示全部楼层 |阅读模式
int ledPin = 11;
float sinVal;
int ledVal;

void setup() {
  // put your setup code here, to run once:
  pinMode(ledPin, OUTPUT);
}

void loop() {
  // put your main code here, to run repeatedly:
  for(int x=0;x<180;x++){
    sinVal=(sin(x*(3.1412/180)));
    ledVal=int(sinVal*255);
    analogWrite(ledPin,ledVal);
    delay(25);
  }
}
发表于 2022-2-17 17:07 | 显示全部楼层
如果有问题,请提问题,如果是分享,请添加更多描述
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

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

GMT+8, 2024-12-29 08:08 , Processed in 0.071077 second(s), 15 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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