Arduino 自动调光器

Posted

技术标签:

【中文标题】Arduino 自动调光器【英文标题】:Arduino Automatic Light Dimmer 【发布时间】:2018-09-09 05:09:43 【问题描述】:

我正在尝试通过仅输入秒数来使 Adafruit 的 NEOPIXEL 变暗,但我无法实现平滑过渡,并且最多只能使用 5 秒。而且我无法让它打印当前的亮度。 :(

这是我的代码:

#include <Adafruit_NeoPixel.h>

#define PIN 4

// Parameter 1 = number of pixels in strip
// Parameter 2 = pin number (most are valid)
// Parameter 3 = pixel type flags, add together as needed:
//   NEO_KHZ800  800 KHz bitstream (most NeoPixel products w/WS2812 LEDs)
//   NEO_KHZ400  400 KHz (classic 'v1' (not v2) FLORA pixels, WS2811 drivers)
//   NEO_GRB     Pixels are wired for GRB bitstream (most NeoPixel products)
//   NEO_RGB     Pixels are wired for RGB bitstream (v1 FLORA pixels, not     v2)
Adafruit_NeoPixel strip = Adafruit_NeoPixel(3, PIN, NEO_GRB +         NEO_KHZ800);

void setup() 

  strip.begin();
  strip.show(); // Initialize all pixels to 'off'



void loop() 
  double t = 2000;
  dimmerByTime(t);


void dimmerByTime(int time)
int seq = time / 170;
int b = 100 /seq;
  for (int i = 1; i < seq; i++) 
  strip.setPixelColor(0, 0, 100, 200);
  strip.setPixelColor(1, 0, 100, 10);
  strip.setPixelColor(2, 0, 0, 225);
  strip.setBrightness(b);
  strip.show();
  delay(170);
  b = b + b;
  Serial.println(i);
  Serial.println("Brightness @");
  Serial.println(b);
  

谢谢!

【问题讨论】:

#include &lt;Adafruit_NeoPixel.h&gt; - 这不是 Java。请正确标记您的问题。 b = b + b;b = b * 2;b *= 2; 相同。 【参考方案1】:

要启用打印,请在 void setup() 中添加:Serial.begin(9600);

双 t = 2000;可以是 int t = 2000;

在函数 dimmerByTime 中,for 循环仅循环 10 次(seq = 2000/170 = 11)。 int b 每次翻倍(第一次:b=9,第二次:b=18 等)。 尝试一个固定的数字,看看发生了什么(例如 b += 10)。 或者尝试一个更小的步骤并消除(或减少)延迟,与 for 循环结合使用(迭代超过 10 次)。

调光通常使用不同的变量设置。

【讨论】:

以上是关于Arduino 自动调光器的主要内容,如果未能解决你的问题,请参考以下文章

Arduino Uno + APDS9930 实现手势控制LED灯亮灭调光等

Arduino UNO 学习 抢答器PWM调光蜂鸣器感光灯三色灯热敏传感器倾斜传感器火焰传感器

Dimmer: 通过移动鼠标来改变 LED 的亮度

Arduino ESP32 Web网页控制RGB灯

使用适用于 Arduino 的 Arduino / XMPP 客户端进行家庭自动化

arduino 有时上电无法复位