Updated Neo Features (markdown)

Michael Miller
2023-04-05 11:09:13 -07:00
parent 67f7a25b40
commit 1517b51edc

@@ -41,7 +41,11 @@ strip.SetPixelSettings(NeoTm1814Settings(165,165,165,165)); // 16.5mA
## NeoRgbTm1914Feature
This is only used with Tm1914 methods.
A three-element color in the order of Red, Green, and then Blue.
This will require that you apply settings that define the input mode of your LEDs. You can set this after calling `Begin()` by using the following code snippit. The argument is the mode the input should use as defined by the enum NeoTm1914_Mode.
This will require that you apply settings that define the input mode of your LEDs. You can set this after calling `Begin()` by using the following code snippit. The argument is the mode the input should use as defined by the [enum NeoTm1914_Mode](## "enum NeoTm1914_Mode {
NeoTm1914_Mode_DinFdinAutoSwitch, // Switches between DIN and FDIN on any signal pause > 300ms
NeoTm1914_Mode_DinOnly, // DIN input pin used exclusively
NeoTm1914_Mode_FdinOnly // FDIN input pin used exclusively
}").
```
strip.SetPixelSettings(NeoTm1914Settings(NeoTm1914_Mode_DinOnly));
```