**This component will set up the following platforms.**
Platform | Description |
---|---|
binary_sensor |
Show something True or False . |
sensor |
Show info from Astral Pool Viron eQuilibrium Chlorinator API. |
select |
Control the chlorinator mode (off/auto/manual) |
configuration.yaml
).custom_components
directory (folder) there, you need to create it.custom_components
directory (folder) create a new folder called astralpool_chlorinator
.custom_components/astralpool_chlorinator/
directory (folder) in this repository.Using your HA configuration directory (folder) as a starting point you should now also have this:
custom_components/astralpool_chlorinator/translations/en.json
custom_components/astralpool_chlorinator/translations/fr.json
custom_components/astralpool_chlorinator/translations/nb.json
custom_components/astralpool_chlorinator/translations/sensor.en.json
custom_components/astralpool_chlorinator/translations/sensor.fr.json
custom_components/astralpool_chlorinator/translations/sensor.nb.json
custom_components/astralpool_chlorinator/translations/sensor.nb.json
custom_components/astralpool_chlorinator/__init__.py
custom_components/astralpool_chlorinator/api.py
custom_components/astralpool_chlorinator/binary_sensor.py
custom_components/astralpool_chlorinator/config_flow.py
custom_components/astralpool_chlorinator/const.py
custom_components/astralpool_chlorinator/manifest.json
custom_components/astralpool_chlorinator/sensor.py
custom_components/astralpool_chlorinator/switch.py
This project was generated from @oncleben31's Home Assistant Custom Component Cookiecutter template.
Code template was mainly taken from @Ludeeus's integration_blueprint template