Skip to content

Commit

Permalink
Merge branch 'master' of github.com:samuolis/brink
Browse files Browse the repository at this point in the history
  • Loading branch information
samuolis committed Nov 16, 2023
2 parents 0dd2341 + a61399c commit 0ccfeab
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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'.

Expand Down
6 changes: 3 additions & 3 deletions custom_components/brink_ventilation/core/brink_home_cloud.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,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),
Expand Down

0 comments on commit 0ccfeab

Please sign in to comment.