-
- Downloads
Add vera config entries support (#29880)
* Adding vera config entries support. * Fixing lint error. * Applying minimal changes necessary to get config entries working. * Addressing PR feedback by further reducing the scope of the change. * Addressing PR feedback. * Fixing pyvera import to make it easier to patch. Addressing PR feedback regarding creation of controller and scheduling of async config flow actions. * Updating code owners file. * Small fixes. * Adding a user config flow step. * Adding optional configs for user config flow. * Updating strings to be more clear to the user. * Adding options flow. Fixing some PR feedback. * Better handling of options. PR feedback changes. * Using config registry to update config options. * Better managing config from file or config from UI Disabling config through UI if config is provided from a file. More tests to account for these adjustments. * Address PR feedback. * Fixing test, merging with master. * Disabling all Vera UI for configs managed by configuration.yml. Adding more tests. * Updating config based on unique_id. Addressing additional PR feedback. * Rebasing off dev. Addressing feedback. * Addressing PR feedback.
Showing
- CODEOWNERS 1 addition, 0 deletionsCODEOWNERS
- homeassistant/components/vera/__init__.py 76 additions, 45 deletionshomeassistant/components/vera/__init__.py
- homeassistant/components/vera/binary_sensor.py 22 additions, 9 deletionshomeassistant/components/vera/binary_sensor.py
- homeassistant/components/vera/climate.py 22 additions, 9 deletionshomeassistant/components/vera/climate.py
- homeassistant/components/vera/common.py 29 additions, 0 deletionshomeassistant/components/vera/common.py
- homeassistant/components/vera/config_flow.py 130 additions, 0 deletionshomeassistant/components/vera/config_flow.py
- homeassistant/components/vera/const.py 11 additions, 0 deletionshomeassistant/components/vera/const.py
- homeassistant/components/vera/cover.py 23 additions, 9 deletionshomeassistant/components/vera/cover.py
- homeassistant/components/vera/light.py 18 additions, 8 deletionshomeassistant/components/vera/light.py
- homeassistant/components/vera/lock.py 23 additions, 10 deletionshomeassistant/components/vera/lock.py
- homeassistant/components/vera/manifest.json 4 additions, 1 deletionhomeassistant/components/vera/manifest.json
- homeassistant/components/vera/scene.py 16 additions, 8 deletionshomeassistant/components/vera/scene.py
- homeassistant/components/vera/sensor.py 17 additions, 9 deletionshomeassistant/components/vera/sensor.py
- homeassistant/components/vera/strings.json 32 additions, 0 deletionshomeassistant/components/vera/strings.json
- homeassistant/components/vera/switch.py 22 additions, 9 deletionshomeassistant/components/vera/switch.py
- homeassistant/generated/config_flows.py 1 addition, 0 deletionshomeassistant/generated/config_flows.py
- tests/components/vera/common.py 95 additions, 29 deletionstests/components/vera/common.py
- tests/components/vera/conftest.py 2 additions, 2 deletionstests/components/vera/conftest.py
- tests/components/vera/test_binary_sensor.py 7 additions, 9 deletionstests/components/vera/test_binary_sensor.py
- tests/components/vera/test_climate.py 15 additions, 13 deletionstests/components/vera/test_climate.py
Loading
Please register or sign in to comment