From 22321fd1f6279bdf3234505efa5f82b5f2a269c9 Mon Sep 17 00:00:00 2001 From: Michael Miller Date: Tue, 7 Nov 2023 06:38:47 -0800 Subject: [PATCH] Updated Neo Features (markdown) --- Neo-Features.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Neo-Features.md b/Neo-Features.md index 82e72f0..6101aad 100644 --- a/Neo-Features.md +++ b/Neo-Features.md @@ -87,6 +87,17 @@ _mA = (1100 * (240 + (gain * 32)) / ohms)_ strip.SetPixelSettings(NeoSm16824eSettings(/* left to user due to complexity */ )); ``` +## NeoRgbwcSm16825eColorFeature & NeoRgbwcSm16825eColorFeature +A five-element color in the order of Red, Green, Blue, and then Warmer White and Cooler White in different orders. The the color elements are 16 bit providing greater color precision. +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 arguments are indexes into a table of in milliamps and should be updated to match the rating of your LEDs. +mA [10.2, 20.3, 30.4, 40.5, 50.6, 60.7, 70.8, 80.9, +91.0, 101.1, 111.2, 121.3, 130.7, 140.6, 150.5, 160.2, +170.0, 179.0, 188.5, 198.0, 207.8, 216.8, 226.4, 235.8, +245.0, 254.4, 263.6, 272.8, 282.0, 291.0, 300.0, 310.0] +``` +strip.SetPixelSettings(NeoRgbcwSm16825eFeature::SettingsObject(1,1,1,1)); // 20.3 mA +``` + ## NeoAbcdefgpsSegmentFeature & SevenSegmentFeature A nine-element digit in the 7-segment order of A,B,C,D,E,F,G, decimal, and then special. This is used with 7-segment LED modules that are driven with three WS2811 chips.