From 7eb85ad44f13eeea98abe92d848e0cdc0d9990b6 Mon Sep 17 00:00:00 2001 From: Michael Miller Date: Sun, 2 Oct 2016 10:57:40 -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 630d4ba..56f1ff9 100644 --- a/NeoPixelBus-object-API.md +++ b/NeoPixelBus-object-API.md @@ -39,7 +39,7 @@ This will force the internal state to think that SetPixelColor() was called. Th This will force the internal state to think that Show() has happened and there is nothing new to send. ### uint8_t* Pixels() -This will return a pointer to the internal buffer of pixels. See PixelsSize() and PixelSize() to understand how large this buffer is and how its laid out. +This will return a pointer to the internal buffer of pixels. See PixelsSize() and PixelSize() to understand how large this buffer is and how its laid out. If you modify the buffer contents, you will need to let the NeoPixelBus know this by calling the `Dirty()` method otherwise `Show()` will not update the pixels. ### size_t PixelsSize() This will return the number of bytes of the internal buffer that calling Pixels() returns.