From 92831f7121d3feb55496c1b040418b0557757eba Mon Sep 17 00:00:00 2001 From: Michael Miller Date: Thu, 14 May 2020 13:29:27 -0700 Subject: [PATCH] Updated NeoPixelBus object (markdown) --- NeoPixelBus-object.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/NeoPixelBus-object.md b/NeoPixelBus-object.md index 5aab7c6..619d21b 100644 --- a/NeoPixelBus-object.md +++ b/NeoPixelBus-object.md @@ -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.