HDC1080 Temperature+Humidity Sensor =================================== The HDC1080 Temperature+Humidity sensor allows you to use your HDC1080 (`datasheet `__, `adafruit `__) sensors with esphomelib. The :ref:`I²C Bus ` is required to be set up in your configuration for this sensor to work. .. figure:: images/hdc1080-full.jpg :align: center :target: `Adafruit`_ :width: 50.0% HDC1080 Temperature & Humidity Sensor. Image by `Adafruit`_. .. _Adafruit: https://www.adafruit.com/product/2635 .. figure:: images/temperature-humidity.png :align: center :width: 80.0% .. code:: yaml # Example configuration entry sensor: - platform: hdc1080 temperature: name: "Living Room Temperature" humidity: name: "Living Room Pressure" update_interval: 15s Configuration variables: ------------------------ - **temperature** (**Required**): The information for the temperature sensor. - **name** (**Required**, string): The name for the temperature sensor. - **id** (*Optional*, :ref:`config-id`): Set the ID of this sensor for use in lambdas. - All other options from :ref:`Sensor ` and :ref:`MQTT Component `. - **humidity** (**Required**): The information for the humidity sensor - **name** (**Required**, string): The name for the humidity sensor. - **id** (*Optional*, :ref:`config-id`): Set the ID of this sensor for use in lambdas. - All other options from :ref:`Sensor ` and :ref:`MQTT Component `. - **update_interval** (*Optional*, :ref:`config-time`): The interval to check the sensor. Defaults to ``15s``. See :ref:`sensor-default_filter`. Currently, the platform doesn’t support activating the built-in heater, as it seems to only be rarely of use. If you need it, please open an issue. See Also -------- - :ref:`sensor-filters` - :doc:`dht` - :doc:`dht12` - :doc:`htu21d` - :doc:`sht3xd` - :doc:`API Reference ` - `HDC1080 Library `__ by `ClosedCube `__ - `Edit this page on GitHub `__ .. disqus::