From 1517b51edc3c9b09886e4081aa7c2d4a2cd8252b Mon Sep 17 00:00:00 2001 From: Michael Miller Date: Wed, 5 Apr 2023 11:09:13 -0700 Subject: [PATCH] Updated Neo Features (markdown) --- Neo-Features.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Neo-Features.md b/Neo-Features.md index 92322b3..aec76c6 100644 --- a/Neo-Features.md +++ b/Neo-Features.md @@ -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)); ```