帮我把代码的亮度调低 void loop() { // 实现七种图案的变换 rainbow(); // 彩虹色 colorWipe(strip.Color(1, 0, 0), 1); // 红色 colorWipe(strip.Color(0, 1, 0), 1); // 绿色 colorWipe(strip.Color(0, 0, 1), 1); // 蓝色 theaterChase(strip.Color(1, 1, 1), 1); // 白色跑马灯 theaterChase(strip.Color(1, 0, 0), 1); // 红色跑马灯 theaterChase(strip.Color(0, 0, 1), 1); // 蓝色跑马灯 }
时间: 2023-06-08 14:07:04 浏览: 102
Rainbow Brackets
好的,您想把代码的亮度调低,可以尝试将颜色参数中的数值调小,如将 colorWipe(strip.Color(1, 0, 0), 1) 中的数值改为较小的数。如果您想完全关闭LED灯的亮度,可以使用 strip.Black() 来关闭灯光。
阅读全文