Updated NeoPixelBus object (markdown)

Michael Miller
2018-09-25 11:41:33 -07:00
parent e37385fd06
commit a947eace03

@@ -8,7 +8,7 @@ Below is an example to create one for most platforms. It will manage 16 pixels
```
NeoPixelBus<NeoGrbFeature, Neo800KbpsMethod> 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<NeoGrbFeature, Neo800KbpsMethod> strip(16);
```