本站改版新增arduino频道

Micropython
Arduino

arduino 电位器


arduino 电位器

int potPin = A0; // 电位器模块连接到Arduino的模拟输入引脚A0
int ledPin = 13; // LED连接到Arduino的数字输出引脚13

void setup() {
  pinMode(ledPin, OUTPUT); // 设置LED引脚为输出模式
}

void loop() {
  int potValue = analogRead(potPin); // 读取电位器模块的模拟输入值
  int ledValue = map(potValue, 0, 1023, 0, 255); // 将模拟输入值映射到0-255的范围内
  analogWrite(ledPin, ledValue); // 输出PWM信号控制LED亮度
}



推荐分享
图文皆来源于网络,内容仅做公益性分享,版权归原作者所有,如有侵权请告知删除!
 

Copyright © 2014 ESP56.com All Rights Reserved
晋ICP备14006235号-22 晋公网安备14108102001165号

执行时间: 0.0095171928405762 seconds