我试图让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);
}
}
谢谢!
要启用打印,请在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)。
调光通常使用不同的变量设置。