esphome-docs/components/output/ledc.rst

140 lines
5.4 KiB
ReStructuredText
Raw Normal View History

2018-05-13 11:37:02 +02:00
ESP32 LEDC Output
=================
2018-11-14 22:12:27 +01:00
.. seo::
:description: Instructions for setting up LEDC hardware PWM outputs on the ESP32.
:image: pwm.png
2018-05-13 11:37:02 +02:00
The LEDC output component exposes a `LEDC PWM
channel <https://docs.espressif.com/projects/esp-idf/en/latest/api-reference/peripherals/ledc.html>`__
2018-05-13 11:37:02 +02:00
of the ESP32 as an output component.
2019-05-12 22:44:59 +02:00
The frequency range of LEDC is from 10Hz to 40MHz - however, higher frequencies require a smaller
2020-04-25 03:05:19 +02:00
bit depth which means the output is not that accurate for frequencies above ~300kHz.
2019-05-12 22:44:59 +02:00
Example Usage For a Light
*************************
.. code-block:: yaml
2018-05-13 11:37:02 +02:00
# Example configuration entry
output:
- platform: ledc
2019-02-16 23:25:23 +01:00
pin: GPIO19
2018-06-01 18:10:00 +02:00
id: gpio_19
2018-05-13 11:37:02 +02:00
2019-02-16 23:25:23 +01:00
# Example usage in a light
light:
- platform: monochromatic
output: gpio_19
name: "Kitchen Light"
Example Usage For a Piezo Buzzer
********************************
.. code-block:: yaml
# Configure the output
output:
- platform: ledc
######################################################
# One buzzer leg connected to GPIO12, the other to GND
######################################################
pin: GPIO12
id: buzzer
# Example usage in an automation
on_press:
then:
######################################################
# Must be turned on before setting frequency & level
######################################################
- output.turn_on: buzzer
######################################################
# Frequency sets the wave size
######################################################
- output.ledc.set_frequency:
id: buzzer
frequency: "1000Hz"
######################################################
# level sets the %age time the PWM is on
######################################################
- output.set_level:
id: buzzer
level: "50%"
2018-05-13 11:37:02 +02:00
Configuration variables:
2018-10-12 16:33:22 +02:00
------------------------
2018-05-13 11:37:02 +02:00
2018-06-01 18:10:00 +02:00
- **pin** (**Required**, :ref:`config-pin`): The pin to use LEDC on. Can only be GPIO0-GPIO33.
- **id** (**Required**, :ref:`config-id`): The id to use for this output component.
- **frequency** (*Optional*, float): At which frequency to run the LEDC
2019-05-12 22:44:59 +02:00
channels timer. Defaults to 1000Hz.
2019-02-16 23:25:23 +01:00
- All other options from :ref:`Output <config-output>`.
Advanced options:
2018-06-01 18:10:00 +02:00
- **channel** (*Optional*, int): Manually set the `LEDC
channel <https://docs.espressif.com/projects/esp-idf/en/latest/api-reference/peripherals/ledc.html#configure-channel>`__
2018-06-01 18:10:00 +02:00
to use. Two adjacent channels share the same timer. Defaults to an automatic selection.
2020-04-25 03:05:19 +02:00
Recommended frequencies
-----------------------
To get the highest available frequency while still getting the same bit depth it is
recommended to pick one of the following frequencies.
Higher bit depth means that the light has more steps available to change from one
2020-05-10 21:27:59 +02:00
value to another. This is especially noticeable when the light is below 10% and takes
a long transition, e.g. turning slowly off.
2020-04-25 03:05:19 +02:00
================================== =================================== ===================================
**Frequency** **Bit depth** **Available steps for transitions**
---------------------------------- ----------------------------------- -----------------------------------
2020-05-10 21:27:59 +02:00
1220Hz 16 65536
2020-04-25 03:05:19 +02:00
---------------------------------- ----------------------------------- -----------------------------------
2020-05-10 21:27:59 +02:00
2441Hz 15 32768
2020-04-25 03:05:19 +02:00
---------------------------------- ----------------------------------- -----------------------------------
2020-05-10 21:27:59 +02:00
4882Hz 14 16384
2020-04-25 03:05:19 +02:00
---------------------------------- ----------------------------------- -----------------------------------
2020-05-10 21:27:59 +02:00
9765Hz 13 8192
2020-04-25 03:05:19 +02:00
---------------------------------- ----------------------------------- -----------------------------------
2020-05-10 21:27:59 +02:00
19531Hz 12 4096
2020-04-25 03:05:19 +02:00
================================== =================================== ===================================
2020-05-10 21:27:59 +02:00
The ESP8266 for instance has *usually* a frequency of 1000Hz with a resolution of 10 bits.
2020-04-25 03:05:19 +02:00
This means that there are only 4 steps between each value.
.. _output-ledc-set_frequency_action:
``output.ledc.set_frequency`` Action
------------------------------------
This :ref:`Action <config-action>` allows you to manually change the frequency of an LEDC
channel at runtime. Use cases include controlling a passive buzzer (for pitch control).
.. code-block:: yaml
on_...:
- output.ledc.set_frequency:
id: ledc_output
frequency: 100Hz
Configuration variables:
- **id** (**Required**, :ref:`config-id`): The ID of the LEDC output to change.
- **frequency** (**Required**, :ref:`templatable <config-templatable>`, float): The frequency
to set in hertz.
2018-06-01 18:10:00 +02:00
See Also
2018-10-12 16:33:22 +02:00
--------
2018-06-01 18:10:00 +02:00
- :doc:`/components/output/index`
- :doc:`/components/output/esp8266_pwm`
- :doc:`/components/light/monochromatic`
- :doc:`/components/fan/speed`
- :doc:`/components/power_supply`
2019-05-12 22:44:59 +02:00
- :apiref:`ledc/ledc_output.h`
- `esp-idf LEDC API docs <https://docs.espressif.com/projects/esp-idf/en/latest/api-reference/peripherals/ledc.html>`__
- :ghedit:`Edit`