From 2ab7d958ddd1e77da32fbdfad44d288cb5224901 Mon Sep 17 00:00:00 2001 From: Jesse Hills <3060199+jesserockz@users.noreply.github.com> Date: Tue, 9 May 2023 09:33:49 +1200 Subject: [PATCH] Add esp32_rmt_led_strip docs (#2902) --- components/light/esp32_rmt_led_strip.rst | 69 ++++++++++++++++++++++++ index.rst | 1 + 2 files changed, 70 insertions(+) create mode 100644 components/light/esp32_rmt_led_strip.rst diff --git a/components/light/esp32_rmt_led_strip.rst b/components/light/esp32_rmt_led_strip.rst new file mode 100644 index 000000000..03e192acf --- /dev/null +++ b/components/light/esp32_rmt_led_strip.rst @@ -0,0 +1,69 @@ +ESP32 RMT LED Strip +=================== + +.. seo:: + :description: Instructions for setting up addressable lights like NEOPIXEL on an ESP32 using the RMT peripheral. + :image: color_lens.svg + +This is a component using the ESP32 RMT peripheral to drive most addressable LED strips. + +.. code-block:: yaml + + light: + - platform: esp32_rmt_led_strip + rgb_order: GRB + pin: GPIO13 + num_leds: 30 + rmt_channel: 0 + chipset: ws2812 + name: "My Light" + +Configuration variables +----------------------- + +- **pin** (**Required**, :ref:`config-pin`): The pin for the data line of the light. +- **num_leds** (**Required**, int): The number of LEDs in the strip. +- **rmt_channel** (**Required**, int): The RMT channel to use. If using multiple strips, you need to use different channels. + - **ESP32**: ``0`` to ``7`` + - **ESP32-S2**: ``0`` to ``3`` + - **ESP32-S3**: ``0`` to ``3`` + - **ESP32-C3**: ``0`` or ``1`` + +- **chipset** (**Required**, enum): The chipset to apply known timings from. Not used if specifying the timings manually, see below. + - ``WS2812`` + - ``SK6812`` + - ``APA106`` + - ``SM16703`` + +- **rgb_order** (**Required**, string): The RGB order of the strip. + - ``RGB`` + - ``RBG`` + - ``GRB`` + - ``GBR`` + - ``BGR`` + - ``BRG`` + +- **is_rgbw** (*Optional*, boolean): Set to ``true`` if the strip is RGBW. Defaults to ``false``. +- **max_refresh_rate** (*Optional*, :ref:`config-time`): + A time interval used to limit the number of commands a light can handle per second. For example + 16ms will limit the light to a refresh rate of about 60Hz. Defaults to sending commands as quickly as + changes are made to the lights. + +Manual Timings +************** + +These can be used if you know the timings and your chipset is not set above. If you have a new specific chipset, +please consider adding support to the codebase and add it to the list above. + +- **bit0_high** (*Optional*, :ref:`config-time`): The time to hold the data line high for a ``0`` bit. +- **bit0_low** (*Optional*, :ref:`config-time`): The time to hold the data line low for a ``0`` bit. +- **bit1_high** (*Optional*, :ref:`config-time`): The time to hold the data line high for a ``1`` bit. +- **bit1_low** (*Optional*, :ref:`config-time`): The time to hold the data line low for a ``1`` bit. + +See Also +-------- + +- :doc:`/components/light/index` +- :doc:`/components/power_supply` +- :apiref:`esp32_rmt_led_strip/esp32_rmt_led_strip.h` +- :ghedit:`Edit` diff --git a/index.rst b/index.rst index 4ab95b20a..47403365e 100644 --- a/index.rst +++ b/index.rst @@ -523,6 +523,7 @@ Light Components RGBWW Light, components/light/rgbww, rgbw.png RGBCT Light, components/light/rgbct, rgbw.png + ESP32 RMT, components/light/esp32_rmt_led_strip, color_lens.svg FastLED Light, components/light/fastled, color_lens.svg NeoPixelBus Light, components/light/neopixelbus, color_lens.svg Light Partition, components/light/partition, color_lens.svg