使用arduino开发板实现功率LED的自动亮度控制

Posted Mpara

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用arduino开发板实现功率LED的自动亮度控制相关的知识,希望对你有一定的参考价值。

int pwmPin = 2; // assigns pin 12 to variable pwm
int pot = A0; // assigns analog input A0 to variable pot
int c1 = 0;   // declares variable c1
int c2 = 0;   // declares variable c2

void setup()  // setup loop

  pinMode(pwmPin, OUTPUT); 
  pinMode(pot, INPUT);  
  Serial.begin(9600);


void loop()


  int value = analogRead(pot);
  Serial.println(value);
  c1= value; 
  c2= 500-c1;         // subtracts c2 from 1000 ans saves the result in c1
  
  if (value < 500)
  
  digitalWrite(pwmPin, HIGH); 
  delayMicroseconds(c2);   
  digitalWrite(pwmPin, LOW);  
  delayMicroseconds(c1);   
  

  if (value > 500)
  
    digitalWrite(2,LOW);
  
  

以上是关于使用arduino开发板实现功率LED的自动亮度控制的主要内容,如果未能解决你的问题,请参考以下文章

物联网Arduino Uno开发板连接阿里云实现云端远程控制LED灯开关

arduino电位器调整led灯颜色

Arduino 翻译系列 - LED 灯闪烁

Arduino 翻译系列 - LED 灯闪烁

arduino ide 环境esp8266 01s板bitset如何使用

Arduino ESP8266 Web Service PWM控制led亮度