esphome-docs/esphomeyaml/components/sensor/tsl2561.rst

60 lines
2.3 KiB
ReStructuredText
Raw Normal View History

2018-05-14 21:15:49 +02:00
TSL2561 Ambient Light Sensor
============================
2018-10-04 17:25:27 +02:00
The ``tsl2561`` sensor platform allows you to use your TSL2561
2018-05-14 21:15:49 +02:00
(`datasheet <https://cdn-shop.adafruit.com/datasheets/TSL2561.pdf>`__,
`Adafruit`_)
2018-06-01 18:10:00 +02:00
ambient light sensor with esphomelib. The :ref:`I²C <i2c>` is required to be set up in
2018-05-14 21:15:49 +02:00
your configuration for this sensor to work.
2018-06-01 18:10:00 +02:00
.. figure:: images/tsl2561-full.jpg
:align: center
:width: 50.0%
2018-05-14 21:15:49 +02:00
TSL2561 Ambient Light Sensor.
2018-05-14 21:15:49 +02:00
.. _Adafruit: https://www.adafruit.com/product/439
.. figure:: images/tsl2561-ui.png
:align: center
:width: 80.0%
2018-05-14 21:15:49 +02:00
.. code:: yaml
# Example configuration entry
sensor:
- platform: tsl2561
name: "TSL2561 Ambient Light"
address: 0x39
update_interval: 15s
Configuration variables:
------------------------
2018-05-14 21:15:49 +02:00
2018-06-01 18:10:00 +02:00
- **name** (**Required**, string): The name for the sensor.
- **address** (*Optional*, int): Manually specify the i^2c address of the sensor. Defaults to ``0x39``.
- **integration_time** (*Optional*, :ref:`config-time`):
The time the sensor will take for each measurement. Longer means more accurate values. One of
``14ms``, ``101ms``, ``402ms``. Defaults to ``402ms``.
- **gain** (*Optional*, string): The gain of the sensor. Higher values are better in low-light conditions.
One of ``1x`` and ``16x``. Defaults to ``1x``.
- **is_cs_package** (*Optional*, boolean): The "CS" package of this sensor has a slightly different
formula for calculating the illuminance in lx. Set this to ``true`` if you're working with a CS
package. Defaults to ``false``.
- **update_interval** (*Optional*, :ref:`config-time`): The interval to check the
2018-06-01 18:44:15 +02:00
sensor. Defaults to ``15s``. See :ref:`sensor-default_filter`.
2018-06-01 18:10:00 +02:00
- **id** (*Optional*, :ref:`config-id`): Manually specify the ID used for code generation.
- All other options from :ref:`Sensor <config-sensor>` and :ref:`MQTT Component <config-mqtt-component>`.
See Also
--------
2018-06-01 18:10:00 +02:00
- :ref:`sensor-filters`
- :doc:`bh1750`
- :doc:`adc`
2018-08-24 22:44:01 +02:00
- `SparkFun TSL2561 Arduino Library <https://github.com/sparkfun/SparkFun_TSL2561_Arduino_Library>`__ by `Sparkfun <http://sparkfun.com/>`__
2018-06-01 18:10:00 +02:00
- :doc:`API Reference </api/sensor/tsl2561>`
2018-06-04 08:17:22 +02:00
- `Edit this page on GitHub <https://github.com/OttoWinter/esphomedocs/blob/current/esphomeyaml/components/sensor/tsl2561.rst>`__
2018-10-12 16:33:22 +02:00
.. disqus::