From 112bfffedc8beb1c482880237e6578b5c4aa3672 Mon Sep 17 00:00:00 2001 From: Michael Miller Date: Wed, 5 Apr 2023 11:00:25 -0700 Subject: [PATCH] Updated NeoPixelBus object API (markdown) --- NeoPixelBus-object-API.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/NeoPixelBus-object-API.md b/NeoPixelBus-object-API.md index 5fedb4e..367cc86 100644 --- a/NeoPixelBus-object-API.md +++ b/NeoPixelBus-object-API.md @@ -17,7 +17,17 @@ This will define the object with the given Feature and Method, and construct it > * _countPixels_ - The number of pixels on the physical bus. This is limited primarily by memory to contain a buffer for them. > * _pin_ - The output pin to use. Note that some platforms and Methods restrict the Pin and thus this constructor should not be used on them. On Esp8266 use the constructor that omits the pin. -> * _channel_ - The channel number defined by the enum NeoBusChannel to use. +> * _channel_ - The channel number defined by the enum [NeoBusChannel](## "enum NeoBusChannel { + NeoBusChannel_0, + NeoBusChannel_1, + NeoBusChannel_2, + NeoBusChannel_3, + NeoBusChannel_3, + NeoBusChannel_4, + NeoBusChannel_5, + NeoBusChannel_6, + NeoBusChannel_7 +}") to use. ### NeoPixelBus\(uint16_t countPixels) This will define the object with the given Feature and Method, and construct it to handle the countPixels using a hardware defined pin.