Merge branch 'docs/ledc_datasheet_v4.4' into 'release/v4.4'

docs: update readme links to ledstrip datasheet (v4.4)

See merge request espressif/esp-idf!22959
This commit is contained in:
Marius Vikhammer 2023-03-29 14:45:10 +08:00
commit 4fb8c6f220
3 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@ This directory contains an implementation for addressable LEDs using the RMT per
It's compatible with:
* [WS2812](http://www.world-semi.com/Certifications/WS2812B.html)
* [WS2812](https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf)
* SK68XX
This component is used as part of the following ESP-IDF examples:

View File

@ -2,7 +2,7 @@
(See the README.md file in the upper level 'examples' directory for more information about examples.)
This example demonstrates how to blink a LED using GPIO or RMT for the addressable LED, i.e. [WS2812](http://www.world-semi.com/Certifications/WS2812B.html).
This example demonstrates how to blink a LED using GPIO or RMT for the addressable LED, i.e. [WS2812](https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf).
See the RMT examples in the [RMT Peripheral](../../peripherals/rmt) for more information about how to use it.

View File

@ -2,7 +2,7 @@
(See the README.md file in the upper level 'examples' directory for more information about examples.)
Although RMT peripheral is mainly designed for infrared remote applications, it can also support other generic protocols thanks to its flexible data format. [WS2812](http://www.world-semi.com/Certifications/WS2812B.html) is a digital RGB LED which integrates a driver circuit and a single control wire. The protocol data format defined in WS2812 is compatible to that in RMT peripheral. This example will illustrate how to drive an WS2812 LED strip based on the RMT driver.
Although RMT peripheral is mainly designed for infrared remote applications, it can also support other generic protocols thanks to its flexible data format. [WS2812](https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf) is a digital RGB LED which integrates a driver circuit and a single control wire. The protocol data format defined in WS2812 is compatible to that in RMT peripheral. This example will illustrate how to drive an WS2812 LED strip based on the RMT driver.
## How to Use Example