From a947eace03d513b5975739a21d89a40adece9b14 Mon Sep 17 00:00:00 2001 From: Michael Miller Date: Tue, 25 Sep 2018 11:41:33 -0700 Subject: [PATCH] Updated NeoPixelBus object (markdown) --- NeoPixelBus-object.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NeoPixelBus-object.md b/NeoPixelBus-object.md index 5259d0c..748f44d 100644 --- a/NeoPixelBus-object.md +++ b/NeoPixelBus-object.md @@ -8,7 +8,7 @@ Below is an example to create one for most platforms. It will manage 16 pixels ``` NeoPixelBus strip(16, 2); ``` -For the Esp8266 platforms, just omit the pin argument. This is due to hardware support that doesn't allow for selecting a pin. +For the Esp8266 platforms, you can omit the pin argument as it is ignored. This is due to hardware support that doesn't allow for selecting a pin. ``` NeoPixelBus strip(16); ```