2019-02-27 10:10:09 +01:00
|
|
|
PCA9685
|
|
|
|
=======
|
2018-05-13 11:37:02 +02:00
|
|
|
|
2018-11-14 22:12:27 +01:00
|
|
|
.. seo::
|
2019-02-27 10:10:09 +01:00
|
|
|
:description: Instructions for setting up PCA9685 LED PWM drivers.
|
2018-11-14 22:12:27 +01:00
|
|
|
:image: pca9685.jpg
|
2019-02-27 10:10:09 +01:00
|
|
|
:keywords: PCA9685
|
|
|
|
|
|
|
|
.. _pca9685-component:
|
|
|
|
|
|
|
|
Component/Hub
|
|
|
|
-------------
|
|
|
|
|
|
|
|
The PCA9685 component represents a PCA9685 12-bit PWM driver
|
|
|
|
(`datasheet <https://docs.espressif.com/projects/esp-idf/en/latest/api-reference/peripherals/ledc.html#configure-channel>`__,
|
|
|
|
`adafruit <https://www.adafruit.com/product/815>`__) in ESPHome. It
|
|
|
|
uses :ref:`I²C Bus <i2c>` for communication.
|
|
|
|
|
|
|
|
To use the channels of this components, you first need to setup the
|
|
|
|
global ``pca9685`` hub and give it an id, and then define the
|
|
|
|
:ref:`individual output channels <pca9685-output>`.
|
|
|
|
|
|
|
|
.. code-block:: yaml
|
|
|
|
|
|
|
|
# Example configuration entry
|
|
|
|
pca9685:
|
2022-08-16 06:03:13 +02:00
|
|
|
- id: pca9685_hub1
|
|
|
|
frequency: 500
|
2019-02-27 10:10:09 +01:00
|
|
|
|
|
|
|
# Individual outputs
|
|
|
|
output:
|
|
|
|
- platform: pca9685
|
|
|
|
pca9685_id: 'pca9685_hub1'
|
|
|
|
channel: 0
|
|
|
|
|
|
|
|
Configuration variables:
|
|
|
|
************************
|
|
|
|
|
|
|
|
- **frequency** (**Required**, float): The frequency to let the
|
|
|
|
component drive all PWM outputs at. Must be in range from 24Hz to
|
2021-05-17 09:58:45 +02:00
|
|
|
1525.88Hz.
|
2019-02-27 10:10:09 +01:00
|
|
|
- **address** (*Optional*, int): The I²C address of the driver.
|
|
|
|
Defaults to ``0x00``.
|
|
|
|
- **id** (*Optional*, :ref:`config-id`): The id to use for
|
|
|
|
this pca9685 component. Use this if you have multiple PCA9685s connected at the same time
|
|
|
|
|
|
|
|
.. _pca9685-output:
|
|
|
|
|
2022-04-03 09:30:25 +02:00
|
|
|
PCA9685 Output
|
|
|
|
--------------
|
2018-11-14 22:12:27 +01:00
|
|
|
|
2018-05-13 11:37:02 +02:00
|
|
|
The PCA9685 output component exposes a PCA9685 PWM channel of a global
|
2019-02-27 10:10:09 +01:00
|
|
|
:ref:`PCA9685 hub <pca9685-component>` as a float
|
2018-05-13 11:37:02 +02:00
|
|
|
output.
|
|
|
|
|
2018-06-01 18:10:00 +02:00
|
|
|
.. figure:: images/pca9685-full.jpg
|
|
|
|
:align: center
|
|
|
|
:width: 75.0%
|
2018-05-13 11:37:02 +02:00
|
|
|
|
2018-06-01 18:10:00 +02:00
|
|
|
PCA9685 16-Channel PWM Driver.
|
2018-05-13 11:37:02 +02:00
|
|
|
|
2018-11-19 18:32:16 +01:00
|
|
|
.. code-block:: yaml
|
2018-05-13 11:37:02 +02:00
|
|
|
|
|
|
|
# Example configuration entry
|
|
|
|
pca9685:
|
2018-06-01 18:10:00 +02:00
|
|
|
- frequency: 500
|
2018-05-13 11:37:02 +02:00
|
|
|
|
|
|
|
# Individual outputs
|
|
|
|
output:
|
|
|
|
- platform: pca9685
|
|
|
|
id: 'pca9685_output1'
|
|
|
|
channel: 0
|
|
|
|
|
|
|
|
Configuration variables:
|
2019-02-27 10:10:09 +01:00
|
|
|
************************
|
2018-05-13 11:37:02 +02:00
|
|
|
|
2018-06-01 18:10:00 +02:00
|
|
|
- **id** (**Required**, :ref:`config-id`): The id to use for this output component.
|
|
|
|
- **channel** (**Required**, int): Chose the channel of the PCA9685 of
|
|
|
|
this output component. Must be in range from 0 to 15.
|
|
|
|
- **pca9685_id** (*Optional*, :ref:`config-id`): Manually specify the ID of the
|
2019-02-27 10:10:09 +01:00
|
|
|
:ref:`PCA9685 hub <pca9685-component>`.
|
2018-06-01 18:10:00 +02:00
|
|
|
Use this if you have multiple PCA9685s you want to use at the same time.
|
|
|
|
- All other options from :ref:`Output <config-output>`.
|
|
|
|
|
|
|
|
See Also
|
2018-10-12 16:33:22 +02:00
|
|
|
--------
|
2018-06-01 18:10:00 +02:00
|
|
|
|
2019-02-07 13:54:45 +01:00
|
|
|
- :doc:`/components/output/index`
|
|
|
|
- :doc:`/components/output/esp8266_pwm`
|
|
|
|
- :doc:`/components/output/ledc`
|
|
|
|
- :doc:`/components/light/monochromatic`
|
|
|
|
- :doc:`/components/fan/speed`
|
|
|
|
- :doc:`/components/power_supply`
|
2019-05-12 22:44:59 +02:00
|
|
|
- :apiref:`pca9685/pca9685_output.h`
|
2018-08-24 22:44:01 +02:00
|
|
|
- `PCA9685 Arduino Library <https://github.com/NachtRaveVL/PCA9685-Arduino>`__ by `@NachtRaveVL <https://github.com/NachtRaveVL>`__
|
2019-02-07 13:54:45 +01:00
|
|
|
- :ghedit:`Edit`
|