Updated Home (markdown)

Michael Miller
2016-02-29 13:27:35 -08:00
parent e8ed6bbdc1
commit 60384d7834

@@ -3,7 +3,7 @@ _**(please excuse the mess, this Wiki is still under construction)**_
[Please see the FAQ for common questions and answers](https://github.com/Makuna/NeoPixelBus/wiki/FAQ). [Please see the FAQ for common questions and answers](https://github.com/Makuna/NeoPixelBus/wiki/FAQ).
# Overview # Overview
This is an Arduino Library that supports sending out data to update a series of color smart LEDs commonly known as NeoPixels. This Wiki is for [V2 Beta](https://github.com/Makuna/NeoPixelBus/tree/V2Beta) of the library only, which replaces all previous different versions and branches. This is an Arduino Library that supports sending out data to update a series of color smart LEDs commonly known as NeoPixels. This Wiki is for V2 of the library, which replaces all previous different versions and branches. V2 now resides in master branch.
## Supported Platforms ## Supported Platforms
* AVR 8 bit Arduino * AVR 8 bit Arduino
@@ -12,7 +12,7 @@ This is an Arduino Library that supports sending out data to update a series of
## Supported Pixels ## Supported Pixels
* WS2811 & WS2812 * WS2811 & WS2812
* SK6812rgb and SK6812rgbw * SK6812rgb and SK6812rgbw (three and four channel pixels that have the extra white LED in them)
* All one wire RGB pixels that use a the same transport as any of the above. * All one wire RGB pixels that use a the same transport as any of the above.
## Smaller Code ## Smaller Code
@@ -40,7 +40,7 @@ This object will be used to set colors on the pixels. When constructed a "featu
There are several color objects that can be used to define and blend colors. While all can be directly used to set the pixel color, the RgbwColor can only be used with a NeoPixelBus that has been declared with NeoRgbwFeature. There are several color objects that can be used to define and blend colors. While all can be directly used to set the pixel color, the RgbwColor can only be used with a NeoPixelBus that has been declared with NeoRgbwFeature.
## [NeoPixelAnimator object](https://github.com/Makuna/NeoPixelBus/wiki/NeoPixelAnimator-object) ## [NeoPixelAnimator object](https://github.com/Makuna/NeoPixelBus/wiki/NeoPixelAnimator-object)
This manages the timing and lifetime for animations. It supplements the NeoPixelBus object to make it easy to create smooth asynchronous animations. This manages the timing and lifetime for animations. It supplements the NeoPixelBus object to make it easy to create smooth asynchronous animations. It also include NeoEase class that provides easing functions for animation curves.