From 662c890c0edc09b6f36cb67c8a9e58d1d8cf9d9a Mon Sep 17 00:00:00 2001 From: Michael Miller Date: Wed, 5 Jul 2023 10:38:52 -0700 Subject: [PATCH] Updated NeoPixelBus object (markdown) --- NeoPixelBus-object.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/NeoPixelBus-object.md b/NeoPixelBus-object.md index c52405b..b5423cb 100644 --- a/NeoPixelBus-object.md +++ b/NeoPixelBus-object.md @@ -4,16 +4,16 @@ This is the primary object that is used to set colors on the pixels. When constr ``` NeoPixelBus strip(pixelCount, pixelPin); ``` -Below is an example to create one for most platforms. It will manage 16 pixels on pin 2. The pixels use the most common bus speed of 800Kbps, and the most common color order of Green, Red, and then Blue. +Below is an example to create one for most platforms. It will manage 16 pixels on pin 2. The pixels use the most common WS2812x protocol, and the most common color order of Green, Red, and then Blue. ``` -NeoPixelBus strip(16, 2); +NeoPixelBus strip(16, 2); ``` 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); +NeoPixelBus strip(16); ``` -If you want to drive DotStars instead, use the following to create a bus that uses hardware SPI. +If you want to drive DotStars (two wire) instead, use the following to create a bus that uses hardware SPI. ``` NeoPixelBus strip(32); ```