diff --git a/NeoPixelBus-object.md b/NeoPixelBus-object.md index 2b4f2d8..cb39f71 100644 --- a/NeoPixelBus-object.md +++ b/NeoPixelBus-object.md @@ -1,6 +1,6 @@ (work in progress) -This object will be used to set colors on the pixels. When constructed a "feature" and a "method" object must be supplied to define which pixels you are using and how they are updated. +This object will be used to set colors on the pixels. When constructed, a "feature" and a "method" object must be supplied to define which pixels you are using and how they are updated. ``` NeoPixelBus strip(pixelCount, pixelPin); ``` @@ -8,7 +8,7 @@ Below is an example to create one for the AVR platform. It will manage 16 pixel ``` NeoPixelBus strip(16, 2); ``` -And this one will create on that is compatible with an ESP-01. It will manage 32 pixels, but due to the method being hardware limited the pin value passed in is ignored. +And this will create one that is compatible with an ESP-01. It will manage 32 pixels, but due to the method being hardware limited, the pin value passed in is ignored. ``` NeoPixelBus strip(32, 2); ```