Home Assistant custom component to calculate dew point using temperature and humidity sensors based on code from ha-dewpoint and a fork from dewpoint.
This sensor should work fine in the containerized version of Home Assistant. The psychrolib dependency has been removed.
Use HACS with this custom repository or copy custom_components/
to your HA configuration.
sensor:
- platform: dewpoint
sensors:
dewpoint_outside:
temperature: sensor.temperature_outside
rel_hum: sensor.humidity_outside
dewpoint_office:
temperature: sensor.temperature_office
rel_hum: sensor.humidity_office
...
Key | Type | Required | Description |
---|---|---|---|
sensors |
list |
True |
List of dew point sensors to generate |
Key | Type | Required | Default | Description |
---|---|---|---|---|
friendly_name |
string |
False |
sensor name |
Friendly name for the new sensor entity |
temperature |
entity_id |
True |
none |
Entity from which to get the dry-bulb temperature |
rel_hum |
entity_id |
True |
none |
Entity from which to get the relative humidity |