Skip to content

Home Assistant custom component to calculate dew point using temperature and humidity sensors.

License

Notifications You must be signed in to change notification settings

miguelangel-nubla/home-assistant-dewpoint

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 

Repository files navigation

License Project Maintenance BuyMeCoffee

home-assistant-dewpoint

Home Assistant custom component to calculate dew point using temperature and humidity sensors. Calculated using psychrolib.

Installation

Use hacs with this repo URL https://github.com/miguelangel-nubla/home-assistant-dewpoint or copy custom_components/ to your HA configuration.

Example configuration.yaml

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
      ...

Configuration options

Key Type Required Description
sensors list True List of dewpoint sensors to generate.

Configuration options for sensors list

Key Type Required Default Description
friendly_name string False sensor name Custom name for the new sensor entity.
temperature entity_id True none Entity ID to read temperature from. (dry-bulb)
rel_hum entity_id True none Entity ID to read relative humidity from.

About

Home Assistant custom component to calculate dew point using temperature and humidity sensors.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages