Updated NeoPixelBus object (markdown)

Michael Miller
2020-05-14 13:29:27 -07:00
parent bb7feacc01
commit 92831f7121

@@ -75,7 +75,11 @@ These are only used with Tm1814 methods.
**If you do not see what you require, request it by creating an issue on GitHub.**
### NeoWrgbTm1814Feature
A four element color in the order of White, Red, Green, and then Blue.
A four element color in the order of White, Red, Green, and then Blue.
This will require that you apply settings that define the power usage of your LEDs. You can set this after calling `Begin()` by using the following code snippit. The values are in 1/10th milliamps and should be updated to the rating of your LEDs.
```
strip.SetPixelSettings(NeoTm1814Settings(165,165,165,165));
```
# Neo Methods
These platform methods will define "how" the pixels are updated. While primarily used to define how fast the data is sent out to support older pixels; for the Esp8266 it also defines the several methods required based on different form factors due to pin restrictions and exposed pins on the boards.