From b7473290b8fb9133093e5a1cd63ccfcfb84ea0da Mon Sep 17 00:00:00 2001 From: Michael Miller Date: Fri, 2 Sep 2016 10:59:04 -0700 Subject: [PATCH] Updated NeoPixelBus object API (markdown) --- NeoPixelBus-object-API.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NeoPixelBus-object-API.md b/NeoPixelBus-object-API.md index a902a07..bc0744b 100644 --- a/NeoPixelBus-object-API.md +++ b/NeoPixelBus-object-API.md @@ -1,7 +1,7 @@ # Constructors ### NeoPixelBus\(uint16_t countPixels, uint8_t pin) This will define the object with the given Feature and Method, and construct it to handle the countPixels on the given pin. -_countPixels_ - The number of pixels on the physical bus. This is limited primarily by memory to contain a buffer for them. Some Methods (ex. NeoEsp8266Dma800KbpsMethod) require more buffer than others and you should refer to their documentation. +_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. ### NeoPixelBus\(uint16_t countPixels)