我当前正在创建一个应用程序,我的Android手机在其中不断向我的Arduino发送一个Color-Integer。之后,将解析单个RGB通道并将其发送到Neopixel。我得到了可怕的闪烁效果。因此,我得到一些“?”在我的串行监视器中。如果没有连接Neopixel,一切似乎都可以正常工作(关于颜色的接收和解析)。 有什么办法可以解决蓝牙新像素问题?
我在Arduino-Site上的代码如下:
void loop() {
if (bluetooth.available()){
current = bluetooth.read();
if(current == endChar) {
if(msg[0] = 'C') { // The first Character is the "key" to be received on Arduino
colorChange(msg);
} else if(msg[0] == 'S') {
fadeMode = true;
}
msg = "";
} else {
msg+=current;
}
}
}
void colorChange(String msg) {
//fadeMode = false;
msg.remove(0,1);
currentColor = atol(msg.c_str());
red = (currentColor >> 16) & 0xFF;
green = (currentColor >> 8) & 0xFF;
blue = currentColor & 0xFF;
for(int i = 0; i < NUMPIXELS; i++) {
pixels.setPixelColor(i, pixels.Color(red, green, blue));
}
pixels.show();
}
答案 0 :(得分:0)
当您上传已知有效的测试代码时,您的neopixel是否正常工作? 如果确实如此,我将尝试更改将蓝牙颜色值传递给neopixel的部分,甚至将其删除并逐个添加,以查看问题的出处。 我想您已经尝试在串行监视器上查看arduino接收到的值,以确认闪烁实际上并非来自android端。