DHT Temperature+Humidity Sensor =============================== The DHT Temperature+Humidity sensor allows you to use your DHT11 (`datasheet `__, `adafruit `__), DHT22 (`datasheet `__, `adafruit `__), AM2302 (`datasheet `__, `adafruit `__) and RHT03 (`datashet `__, `sparkfun `__) sensors with esphomelib. .. figure:: /esphomeyaml/components/sensor/dht22-full.jpg :align: center :target: `Adafruit`_ :width: 50.0% DHT22 Temperature & Humidity Sensor. Image by `Adafruit`_. .. _Adafruit: https://www.adafruit.com/product/385 |image0| .. |image0| image:: /esphomeyaml/components/sensor/temperature-humidity.png :class: align-center :width: 80.0% .. code:: yaml # Example configuration entry sensor: - platform: dht pin: D2 temperature: name: "Living Room Temperature" humidity: name: "Living Room Humidity" update_interval: 15s Configuration variables: ~~~~~~~~~~~~~~~~~~~~~~~~ - **pin** (**Required**, `pin `__): The pin where the DHT bus is connected. - **temperature** (**Required**): The information for the temperature sensor - **name** (**Required**, string): The name for the temperature sensor. - All other options from `Sensor `__ and `MQTT Component `__. - **humidity** (**Required**): The information for the humidity sensor - **name** (**Required**, string): The name for the humidity sensor. - All other options from `Sensor `__ and `MQTT Component `__. - **model** (*Optional*, int): Manually specify the DHT model, can be one of ``AUTO_DETECT``, ``DHT11``, ``DHT22``, ``AM2303``, ``RHT03`` and helps with some connection issues. Defaults to ``AUTO_DETECT``. - **update_interval** (*Optional*, `time `__): The interval to check the sensor. Defaults to ``15s``. - **id** (*Optional*, `id `__): Manually specify the ID used for code generation. .. note:: If you're seeing lots of invalid temperature/humidity warnings in the logs, try manually setting the DHT model with the ``model:`` configuration variable. Other problems could be wrong pull-up resistor values on the DATA pin or too long cables.