-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
281 additions
and
1 deletion.
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,12 +1,14 @@ | ||
В этом разделе собраны конфигурации популярных устройств. При использовании обязательно поменяйте ID объектов на свои. | ||
|
||
Рецепты присланы пользователи, поэтому работоспособность не гарантируется. | ||
!!! danger "Рецепты присланы пользователи и публикуются "как есть" (с минимальными правками). Работоспособность не гарантируется." | ||
|
||
[Предложить свой рецепт](https://forms.yandex.ru/u/62b456db0c134229d975d1e3/){ .md-button } | ||
|
||
## Разделы | ||
|
||
* [Увлажнители](humidifier.md) | ||
* [Телевизоры](tv.md) | ||
* [Посудомоечные машины](dishwasher.md) | ||
* [Чайники](kettle.md) | ||
* [Обогреватели](heater.md) | ||
* [Прочее](other.md) |
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,96 @@ | ||
## Bosch SMV6ECX51E { id=bosch-smv6ecx51e } | ||
|
||
> Интеграция: [Home Connect Alt](https://github.com/ekutner/home-connect-hass) | ||
```yaml | ||
yandex_smart_home: | ||
entity_config: | ||
switch.013100518886064003_bsh_common_setting_powerstate: | ||
type: devices.types.dishwasher | ||
turn_on: # По логике управления УДЯ - командой включения запускает программу | ||
action: button.press | ||
entity_id: button.013100518886064003_start_pause | ||
turn_off: | ||
action: button.press | ||
entity_id: button.013100518886064003_stop | ||
properties: | ||
- type: open # Статус открытия двери | ||
entity: binary_sensor.013100518886064003_bsh_common_status_doorstate | ||
- type: water_level # Экономичность водопотребления в зависимости от программы | ||
entity: sensor.013100518886064003_bsh_common_option_waterforecast | ||
- type: battery_level # Экономичность энергопотребления в зависимости от программы | ||
entity: sensor.013100518886064003_bsh_common_option_energyforecast | ||
custom_toggles: | ||
controls_locked: # По логике управления УДЯ: снятие блокировки управления = включение прибора (и наоборот) | ||
state_entity_id: switch.013100518886064003_bsh_common_setting_powerstate | ||
turn_on: | ||
action: switch.turn_off | ||
entity_id: switch.013100518886064003_bsh_common_setting_powerstate | ||
turn_off: | ||
action: switch.turn_on | ||
entity_id: switch.013100518886064003_bsh_common_setting_powerstate | ||
modes: | ||
dishwashing: | ||
intensive: "Dishcare.Dishwasher.Program.Intensiv70" | ||
fast: "Dishcare.Dishwasher.Program.Quick65" | ||
auto: "Dishcare.Dishwasher.Program.Auto2" | ||
eco: "Dishcare.Dishwasher.Program.Eco50" | ||
express: "Dishcare.Dishwasher.Program.Quick45" | ||
glass: "Dishcare.Dishwasher.Program.Glas40" | ||
smart: "Dishcare.Dishwasher.Program.MachineCare" | ||
quiet: "Dishcare.Dishwasher.Program.NightWash" | ||
pre_rinse: "Dishcare.Dishwasher.Program.PreRinse" | ||
custom_modes: | ||
dishwashing: | ||
state_entity_id: select.013100518886064003_programs | ||
set_mode: | ||
action: select.select_option | ||
entity_id: select.013100518886064003_programs | ||
data: | ||
option: "{{ mode }}" | ||
``` | ||
## Bosch SPV4HMX1DR { id=bosch-spv4hmx1dr } | ||
> Интеграция: [Home Connect Alt](https://github.com/ekutner/home-connect-hass) | ||
```yaml | ||
yandex_smart_home: | ||
entity_config: | ||
switch.402020532764003998_bsh_common_setting_powerstate: | ||
name: Посудомойка | ||
room: Кухня | ||
type: devices.types.dishwasher | ||
properties: | ||
- type: open | ||
entity: binary_sensor.402020532764003998_bsh_common_status_doorstate | ||
modes: | ||
dishwashing: | ||
auto: "Dishcare.Dishwasher.Program.Auto2" | ||
eco: "Dishcare.Dishwasher.Program.Eco50" | ||
express: "Dishcare.Dishwasher.Program.Quick65" | ||
glass: "Dishcare.Dishwasher.Program.Glas40" | ||
intensive: "Dishcare.Dishwasher.Program.Intensiv70" | ||
pre_rinse: "Dishcare.Dishwasher.Program.PreRinse" | ||
quiet: "Dishcare.Dishwasher.Program.NightWash" | ||
dry: "Dishcare.Dishwasher.Program.MachineCare" | ||
smart: "Dishcare.Dishwasher.Program.Kurz60" | ||
turbo: "Dishcare.Dishwasher.Program.Super60" | ||
fast: "Dishcare.Dishwasher.Program.Quick45" | ||
custom_modes: | ||
dishwashing: | ||
state_entity_id: sensor.402020532764003998_selected_program | ||
set_mode: | ||
action: select.select_option | ||
entity_id: select.402020532764003998_programs | ||
data: | ||
option: '{{ mode }}' | ||
custom_toggles: | ||
pause: | ||
turn_on: | ||
action: button.press | ||
entity_id: button.402020532764003998_stop | ||
turn_off: | ||
action: button.press | ||
entity_id: button.402020532764003998_start_pause | ||
``` |
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,32 @@ | ||
## Xiaomi Smart Tower Heater Lite { id=xiaomi-smart-tower-heater-lite } | ||
|
||
> Интеграция: [Xiaomi Miot](https://github.com/al-one/hass-xiaomi-miot) | ||
```yaml | ||
# Потребуется создать вспомогательный свитч и две автоматизации включения и выключения. В первом случае - установка температуры на #99, во втором случае - нажатие кнопки Stop-work. | ||
yandex_smart_home: | ||
entity_config: | ||
fan.zhimi_rmb1_85fa_air_purifier : | ||
type: devices.types.purifier | ||
modes: | ||
fan_speed: | ||
low: 'Sleep' | ||
medium: 'Favorite' | ||
auto: 'Auto' | ||
custom_modes: | ||
fan_speed: | ||
state_attribute: preset_mode | ||
set_mode: | ||
action: fan.set_preset_mode | ||
target: | ||
entity_id: fan.zhimi_rmb1_85fa_air_purifier | ||
data: | ||
preset_mode: '{{ mode }}' | ||
properties: | ||
- type: pm2.5_density | ||
entity: sensor.zhimi_rmb1_85fa_pm25_density_2 | ||
- type: humidity | ||
entity: sensor.zhimi_rmb1_85fa_relative_humidity_2 | ||
- type: water_level # Показывает остаток фильтра | ||
entity: sensor.zhimi_rmb1_85fa_filter_life_level_2 | ||
``` |
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