mirror of
https://github.com/Makuna/NeoPixelBus.git
synced 2025-08-07 12:54:26 +02:00
Updated Neo Features (markdown)
@@ -87,6 +87,17 @@ _mA = (1100 * (240 + (gain * 32)) / ohms)_
|
|||||||
strip.SetPixelSettings(NeoSm16824eSettings(/* left to user due to complexity */ ));
|
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
|
## NeoAbcdefgpsSegmentFeature & SevenSegmentFeature
|
||||||
A nine-element digit in the 7-segment order of A,B,C,D,E,F,G, decimal, and then special.
|
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.
|
This is used with 7-segment LED modules that are driven with three WS2811 chips.
|
||||||
|
Reference in New Issue
Block a user