Skip to content

Knodd/homeassistant-generic-hygrostat

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Generic Hygrostat for Home Assistant

Due to the fact that humidity levels are different during the summer and winter, a static humidity level switching the fan is on/off is not possible. This binary_sensor detects high rises in humidity and switches on. And switches off when the humidity is back to normal.

Inspirited by: https://www.domoticz.com/wiki/Humidity_control

Setup

In your configuration.yaml you'll need:

binary_sensor:
- platform: generic_hygrostat
  name: Bathroom Hygrostat
  sensor: sensor.bathroom_climate_humidityy # Source humidity sensor
    delta_trigger: 3 # Optional humidity swing to detect
    target_offset: 3 # Optional dehumidification target offset
    max_on_time: 7200 # Optional # Optional safety max on time

It will create a binary sensor called binary_sensor.bathroom_hygrostat. Next, add some automations to switch your fan:

automation:
- alias: Bathroom Hygrostat On
  trigger:
    platform: state
    entity_id: binary_sensor.bathroom_hygrostat
    to: 'on'
  action:
    - service: switch.turn_on
      entity_id: switch.fan

- alias: Bathroom Hygrostat Off
  trigger:
    platform: state
    entity_id: binary_sensor.bathroom_hygrostat
    to: 'off'
  action:
    - service: switch.turn_off
      entity_id: switch.fan

Installation

Manual

Put the binary_sensor.py in your home-assistant config directory under custom_components/generic_hygrostat.

Custom Updater

hygrostat_updater.json provides the details Custom Updater needs. See Custom Updater Installation to install it.

Add the following to your configuration:

custom_updater:
  track:
    - components
  component_urls:
    - https://raw.githubusercontent.com/basschipper/homeassistant-generic-hygrostat/master/hygrostat_updater.json

About

Generic Hygrostat for Home Assistant

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Python 100.0%