-
- Downloads
Add Aquacell integration (#117117)
* Initial commit * Support changed API Change sensor entity descriptions * Fix sensor not handling coordinator update * Implement re-authentication flow and handle token expiry * Bump aioaquacell * Bump aioaquacell * Cleanup and initial tests * Fixes for config flow tests * Cleanup * Fixes * Formatted * Use config entry runtime Use icon translations Removed reauth Removed last updated sensor Changed lid in place to binary sensor Cleanup * Remove reauth strings * Removed binary_sensor platform Fixed sensors not updating properly * Remove reauth tests Bump aioaquacell * Moved softener property to entity class Inlined validate_input method Renaming of entities Do a single async_add_entities call to add all entities Reduced code in try blocks * Made tests parameterized and use test fixture for api Cleaned up unused code Removed traces of reauth * Add check if refresh token is expired Add tests * Add missing unique_id to config entry mock Inlined _update_config_entry_refresh_token method Fix incorrect test method name and comment * Add snapshot test Changed WiFi level to WiFi strength * Bump aioaquacell to 0.1.7 * Move test_coordinator tests to test_init Add test for duplicate config entry
Showing
- CODEOWNERS 2 additions, 0 deletionsCODEOWNERS
- homeassistant/components/aquacell/__init__.py 37 additions, 0 deletionshomeassistant/components/aquacell/__init__.py
- homeassistant/components/aquacell/config_flow.py 71 additions, 0 deletionshomeassistant/components/aquacell/config_flow.py
- homeassistant/components/aquacell/const.py 12 additions, 0 deletionshomeassistant/components/aquacell/const.py
- homeassistant/components/aquacell/coordinator.py 90 additions, 0 deletionshomeassistant/components/aquacell/coordinator.py
- homeassistant/components/aquacell/entity.py 41 additions, 0 deletionshomeassistant/components/aquacell/entity.py
- homeassistant/components/aquacell/icons.json 20 additions, 0 deletionshomeassistant/components/aquacell/icons.json
- homeassistant/components/aquacell/manifest.json 12 additions, 0 deletionshomeassistant/components/aquacell/manifest.json
- homeassistant/components/aquacell/sensor.py 117 additions, 0 deletionshomeassistant/components/aquacell/sensor.py
- homeassistant/components/aquacell/strings.json 45 additions, 0 deletionshomeassistant/components/aquacell/strings.json
- homeassistant/generated/config_flows.py 1 addition, 0 deletionshomeassistant/generated/config_flows.py
- homeassistant/generated/integrations.json 6 additions, 0 deletionshomeassistant/generated/integrations.json
- requirements_all.txt 3 additions, 0 deletionsrequirements_all.txt
- requirements_test_all.txt 3 additions, 0 deletionsrequirements_test_all.txt
- tests/components/aquacell/__init__.py 33 additions, 0 deletionstests/components/aquacell/__init__.py
- tests/components/aquacell/conftest.py 77 additions, 0 deletionstests/components/aquacell/conftest.py
- tests/components/aquacell/fixtures/get_all_softeners_one_softener.json 40 additions, 0 deletions...nts/aquacell/fixtures/get_all_softeners_one_softener.json
- tests/components/aquacell/snapshots/test_sensor.ambr 303 additions, 0 deletionstests/components/aquacell/snapshots/test_sensor.ambr
- tests/components/aquacell/test_config_flow.py 111 additions, 0 deletionstests/components/aquacell/test_config_flow.py
- tests/components/aquacell/test_init.py 102 additions, 0 deletionstests/components/aquacell/test_init.py
Loading
Please sign in to comment