esphome-docs/components/sensor/tcs34725.rst

78 lines
3.0 KiB
ReStructuredText
Raw Normal View History

TCS34725 RGB Color Sensor
=========================
2018-11-14 22:12:27 +01:00
.. seo::
:description: Instructions for setting up TCS34725 RGB color sensors.
:image: tcs34725.jpg
:keywords: tcs34725
The ``tcs34725`` sensor platform allows you to use your TCS34725 RGB color sensors
(`datasheet <https://cdn-shop.adafruit.com/datasheets/TCS34725.pdf>`__,
2019-10-13 18:07:33 +02:00
`Adafruit`_), color temperature and illuminance sensors with ESPHome. The :ref:`I²C <i2c>` is
required to be set up in your configuration for this sensor to work.
.. figure:: images/tcs34725-full.jpg
:align: center
:width: 50.0%
TCS34725 RGB Color Sensor
.. _Adafruit: https://www.adafruit.com/product/1334
.. figure:: images/tcs34725-ui.png
:align: center
:width: 80.0%
.. code-block:: yaml
# Example configuration entry
sensor:
- platform: tcs34725
red_channel:
name: "TCS34725 Red Channel"
green_channel:
name: "TCS34725 Green Channel"
blue_channel:
name: "TCS34725 Blue Channel"
clear_channel:
name: "TCS34725 Clear Channel"
illuminance:
name: "TCS34725 Illuminance"
color_temperature:
name: "TCS34725 Color Temperature"
gain: 1x
integration_time: 2.4ms
address: 0x29
2019-01-06 18:56:14 +01:00
update_interval: 60s
Configuration variables:
2018-08-24 22:44:01 +02:00
------------------------
- **red_channel** (*Optional*): Get the percentage of how strongly the red color channel is activated.
2019-02-17 12:28:17 +01:00
All options from :ref:`Sensor <config-sensor>`.
- **green_channel** (*Optional*): Get the percentage of how strongly the green color channel is activated.
2019-02-17 12:28:17 +01:00
All options from :ref:`Sensor <config-sensor>`.
- **blue_channel** (*Optional*): Get the percentage of how strongly the blue color channel is activated.
2019-02-17 12:28:17 +01:00
All options from :ref:`Sensor <config-sensor>`.
- **clear_channel** (*Optional*): Get the percentage of how strongly the clear (without a color filter)
2019-02-17 12:28:17 +01:00
channel is activated. All options from :ref:`Sensor <config-sensor>`.
- **illuminance** (*Optional*): Get the total illuminance of the sensor in lx.
2019-02-17 12:28:17 +01:00
All options from :ref:`Sensor <config-sensor>`.
- **color_temperature** (*Optional*): Get the calculated color temperature of the light in Kelvin.
2019-02-17 12:28:17 +01:00
All options from :ref:`Sensor <config-sensor>`.
- **gain** (*Optional*): Set the gain for the internal ADCs to work better in certain low-light conditions. Valid
values are ``1x`` (default), ``4x``, ``16x``, ``60x`` (highest gain).
- **integration_time** (*Optional*): The amount of time the light sensor is exposed. Valid values are
``2.4ms`` (default), ``24ms``, ``50ms``, ``101ms``, ``154ms``, ``700ms``.
- **address** (*Optional*, int): Manually specify the I²C address of the sensor. Defaults to ``0x29``.
- **update_interval** (*Optional*, :ref:`config-time`): The interval to check the
2019-01-06 18:56:14 +01:00
sensor. Defaults to ``60s``.
See Also
2018-08-24 22:44:01 +02:00
--------
- :ref:`sensor-filters`
2018-08-24 22:44:01 +02:00
- `TCS34725 library <https://github.com/adafruit/Adafruit_TCS34725>`__ by `Adafruit <https://www.adafruit.com/>`__
2019-05-12 22:44:59 +02:00
- :apiref:`tcs34725/tcs34725.h`
- :ghedit:`Edit`