├── .gitignore ├── README.md ├── custom_components └── generic_hygrostat │ ├── __init__.py │ ├── binary_sensor.py │ └── manifest.json └── info.md /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | .vscode/ 3 | venv/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basschipper/homeassistant-generic-hygrostat/HEAD/README.md -------------------------------------------------------------------------------- /custom_components/generic_hygrostat/__init__.py: -------------------------------------------------------------------------------- 1 | """Generic hygrostat""" 2 | -------------------------------------------------------------------------------- /custom_components/generic_hygrostat/binary_sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basschipper/homeassistant-generic-hygrostat/HEAD/custom_components/generic_hygrostat/binary_sensor.py -------------------------------------------------------------------------------- /custom_components/generic_hygrostat/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basschipper/homeassistant-generic-hygrostat/HEAD/custom_components/generic_hygrostat/manifest.json -------------------------------------------------------------------------------- /info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basschipper/homeassistant-generic-hygrostat/HEAD/info.md --------------------------------------------------------------------------------