forked from airens/tion_home_assistant
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from vaproloff/dev
Added breezer reset filters service
- Loading branch information
Showing
7 changed files
with
104 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
"""Platform for sensor integration.""" | ||
"""Platform for binary sensor integration.""" | ||
|
||
import abc | ||
import logging | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
{ | ||
"title": "Tion", | ||
"config": { | ||
"step": { | ||
"user": { | ||
"title": "Add new Tion configuration", | ||
"description": "Please enter your Tion account credentials", | ||
"data": { | ||
"name": "[%key:common::config_flow::data::name%]", | ||
"username": "Username", | ||
"password": "Password", | ||
"scan_interval": "API poll interval" | ||
}, | ||
"data_description": { | ||
"scan_interval": "Tion devices data minimum update period." | ||
} | ||
} | ||
}, | ||
"abort": { | ||
"already_configured": "Account is already configured" | ||
}, | ||
"error": { | ||
"invalid_auth": "Invalid authentication", | ||
"unknown": "Unexpected error" | ||
} | ||
}, | ||
"entity": { | ||
"climate": { | ||
"tion_breezer": { | ||
"state_attributes": { | ||
"swing_mode": { | ||
"state": { | ||
"outside": "Outside", | ||
"inside": "Inside", | ||
"mixed": "Mixed" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,46 @@ | ||
{ | ||
"config": { | ||
"abort": { | ||
"already_configured": "Устройство уже было добавлено" | ||
"config": { | ||
"step": { | ||
"user": { | ||
"title": "Новая конфигурация Tion", | ||
"description": "Введите данные учётной записи Tion", | ||
"data": { | ||
"username": "Логин", | ||
"password": "Пароль", | ||
"scan_interval": "Интервал обновления" | ||
}, | ||
"error": { | ||
"invalid_auth": "Ошибка аутентификации", | ||
"unknown": "Непредвиденная ошибка" | ||
}, | ||
"step": { | ||
"user": { | ||
"description": "Введите данные учётной записи Tion:", | ||
"data": { | ||
"username": "Логин", | ||
"password": "Пароль", | ||
"scan_interval": "Интервал обновления" | ||
} | ||
} | ||
"data_description": { | ||
"scan_interval": "Минимальный период обновления данных устройств Tion от API." | ||
} | ||
} | ||
}, | ||
"abort": { | ||
"already_configured": "Учётная запись уже была добавлена" | ||
}, | ||
"entity": { | ||
"climate": { | ||
"tion_breezer": { | ||
"state_attributes": { | ||
"swing_mode": { | ||
"state": { | ||
"outside": "С улицы", | ||
"inside": "Из комнаты", | ||
"mixed": "Смешанный" | ||
} | ||
} | ||
} | ||
"error": { | ||
"invalid_auth": "Ошибка аутентификации", | ||
"unknown": "Неизвестная ошибка" | ||
} | ||
}, | ||
"entity": { | ||
"climate": { | ||
"tion_breezer": { | ||
"state_attributes": { | ||
"swing_mode": { | ||
"state": { | ||
"outside": "С улицы", | ||
"inside": "Из комнаты", | ||
"mixed": "Смешанный" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"services": { | ||
"reset_filters": { | ||
"name": "Сбросить фильтры", | ||
"description": "Сбрасывает период замены фильтров бризера. Обновление периода замены может занять некоторое время - после запуска службы, пожалуйста, ожидайте." | ||
} | ||
} | ||
} |