Skip to content

Latest commit

 

History

History
34 lines (26 loc) · 1.07 KB

README.md

File metadata and controls

34 lines (26 loc) · 1.07 KB

Home Assistant Dew Point Sensor

A custom sensor to calculate the dew point from temperature and humidity. It is adapted from Home Assistant's Mold Indicator sensor allowing to use dew points without the need of external temperature references.

Installation

Use hacs with this repository URL https://github.com/alf-scotland/ha-dewpoint.git or copy custom_components/ to your HA configuration.

Example

To use the Dew Point sensor in your installation, add the following to your configuration.yaml file:

# Example configuration.yaml entry
sensor:
  - platform: dewpoint
    temperature_sensor: sensor.temperature
    humidity_sensor: sensor.humidity

Configuration

key required type description
name No string The name of the sensor
temperature_sensor Yes string The entity ID of the temperature sensor
humidity_sensor Yes string The entity ID of the humidity sensor