diff --git a/FAQ-#0.md b/FAQ-#0.md new file mode 100644 index 0000000..64d243b --- /dev/null +++ b/FAQ-#0.md @@ -0,0 +1,15 @@ +### I am running a sketch that updates the pixels quickly, but they flash or only some pixels light up + +If you are using Ws2813 or a newer version of the Ws2812b; you should be using the method specific to these. These newer pixels require a slightly different communications protocol. + +Just replace the "method" in your constructor .... +``` +NeoPixelBus strip(16, 2); +``` + +With an appropriate Ws2813 "method" and see if it fixes it. +``` +NeoPixelBus strip(16, 2); +``` + +If it doesn't fix it; then you may want to consult this [FAQ](https://github.com/Makuna/NeoPixelBus/wiki/FAQ-%232) for more trouble shooting steps. \ No newline at end of file