From dca83190f2bc62b01681ac951ad74ce7edf17378 Mon Sep 17 00:00:00 2001 From: Saarthak Maini <94912101+SaarthakMaini@users.noreply.github.com> Date: Thu, 11 May 2023 18:42:04 +0530 Subject: [PATCH 1/5] Update manifest.json Resolves #5 --- custom_components/brink_ventilation/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/brink_ventilation/manifest.json b/custom_components/brink_ventilation/manifest.json index dd7c7c7..d8203fe 100644 --- a/custom_components/brink_ventilation/manifest.json +++ b/custom_components/brink_ventilation/manifest.json @@ -1,6 +1,6 @@ { "domain": "brink_ventilation", - "name": "Brink-home Venitlation", + "name": "Brink-home Ventilation", "codeowners": ["@samuolis"], "config_flow": true, "dependencies": ["http"], From da9c4a52051364f2c02d0072e3697c6c4362d9ef Mon Sep 17 00:00:00 2001 From: Lukas Samuolis Date: Thu, 11 May 2023 16:36:10 +0300 Subject: [PATCH 2/5] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 02eb263..fe1eb48 100644 --- a/README.md +++ b/README.md @@ -33,4 +33,5 @@ You have two options for installation: ### WORKING ON: - Brink Renovent 180 - Brink Renovent 300 +- Brink Renovent 400 Plus - Please tell me, it should work with all Brink ventilation systems From 0725c1b510003808b79a7b0680ff75493b6babbe Mon Sep 17 00:00:00 2001 From: Lukas Samuolis Date: Sun, 21 May 2023 17:17:18 +0300 Subject: [PATCH 3/5] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fe1eb48..56035e3 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[![HACS Badge](https://img.shields.io/badge/HACS-Custom-41BDF5.svg?style=for-the-badge)](https://github.com/hacs/integration) +[![hacs_badge](https://img.shields.io/badge/HACS-Default-41BDF5.svg?style=for-the-badge)](https://github.com/hacs/integration) [![GitHub Release](https://img.shields.io/github/release/samuolis/brink.svg?style=for-the-badge&color=blue)](https://github.com/samuolis/brink/releases) From 121b444adb528ea33efb7eed13daa95fa26c6467 Mon Sep 17 00:00:00 2001 From: Lukas Samuolis Date: Thu, 16 Nov 2023 11:24:25 +0200 Subject: [PATCH 4/5] Use uiId for finding correct value --- .../brink_ventilation/core/brink_home_cloud.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/custom_components/brink_ventilation/core/brink_home_cloud.py b/custom_components/brink_ventilation/core/brink_home_cloud.py index b1f9505..273a923 100644 --- a/custom_components/brink_ventilation/core/brink_home_cloud.py +++ b/custom_components/brink_ventilation/core/brink_home_cloud.py @@ -111,9 +111,9 @@ async def get_description_values(self, system_id, gateway_id): pages = menu_item.get("pages", []) home_page = pages[0] parameters = home_page.get("parameterDescriptors", []) - ventilation = parameters[0] - mode = parameters[1] - filters_need_change = parameters[3] + ventilation = self.__find(parameters, "uiId", "Lüftungsstufe") + mode = self.__find(parameters, "uiId", "Betriebsart") + filters_need_change = self.__find(parameters, "uiId", "Status Filtermeldung") description_result = { "ventilation": self.__get_type(ventilation), From a61399c24aeea2f75669c14cf3feb0e2b868e53f Mon Sep 17 00:00:00 2001 From: Lukas Samuolis Date: Thu, 16 Nov 2023 11:27:59 +0200 Subject: [PATCH 5/5] Update README.md --- README.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/README.md b/README.md index 56035e3..bdef132 100644 --- a/README.md +++ b/README.md @@ -18,10 +18,6 @@ You have two options for installation: - Go to the [HACS](https://hacs.xyz) panel - Go to integrations -- Click 3 dots at the top -- Click Custom repositories -- Add `https://github.com/samuolis/brink` as repository. -- Click '+ EXPLORE AND DOWNLOAD REPOSITORIES' button. - Search for 'Brink-Home ventilations' - Click \'Download this repository with HACS'.