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
- alias: Вскипятить чайник | |
description: '' | |
trigger: | |
- platform: numeric_state | |
entity_id: water_heater.skykettle_rk_m216s | |
attribute: current_temperature | |
below: 35 | |
for: | |
hours: 0 | |
minutes: 0 |
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
type: custom:stack-in-card | |
cards: | |
- type: markdown | |
content: | | |
<center><h2>Чайник | |
- type: entities | |
entities: | |
- entity: light.skykettle_rk_m216s_light | |
name: Подсветка | |
- entity: water_heater.skykettle_rk_m216s |
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
alias: Спать | |
description: '' | |
trigger: | |
- platform: event | |
event_type: yandex_intent | |
event_data: | |
text: Я спать | |
condition: [] | |
action: | |
- parallel: |
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
# Эти 4 строки нужны только при прямом подключении (не через Yaha Cloud) | |
notifier: | |
- oauth_token: !secret yandex_smart_home_oauth_token | |
skill_id: !secret yandex_smart_home_skill_id | |
user_id: !secret yandex_smart_home_user_id | |
# А всё что ниже - для всех типо водключения | |
entity_config: | |
sensor.datchik_temperatury_i_vlazhnosti_temperature: | |
name: Датчик температуры | |
type: devices.types.sensor.climate |
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
upstream php-handler { | |
server unix:/run/php/php8.1-fpm.sock; | |
} | |
server { | |
server_name _; | |
listen 9999; | |
proxy_connect_timeout 6000; | |
proxy_send_timeout 6000; # Add headers to serve security related head |
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
{# | |
Base url - указываем ссылку на ваш HomeAssistant | |
Long-lived access token - вводим токен, который можно получить в HomeAsssistant в настройках пользователя (левый нижний угол, аватарка) | |
Template widget refresh interval (in seconds) - интервал обновления в секундах, у меня стоит 5 | |
Template widget - тут сам код виджета | |
#} | |
{% if (states('sensor.water_leak_detect')|int) > 0 %} | |
<h2>Протечки: </h2> | |
<ul>{% for entity_name, entity_state in state_attr('sensor.water_leak_detect', 'list_entities')-%} |
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
frontend: | |
port: 9442 | |
homeassistant: | |
legacy_entity_attributes: true | |
legacy_triggers: true | |
permit_join: false | |
mqtt: | |
base_topic: zigbee2mqtt | |
server: mqtt://192.168.1.14:1883 # IP адрес контейнера с MQTT-брокером | |
user: user # user, которого указывали при настройке MATT |
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
include: | |
- Телек # объекты из пульта | |
- Вентилятор # объекты из пульта | |
- Кнопка # объекты из Алисы от стороннх производителей | |
recognition_lang: ru-RU |
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
intents: | |
Я спать: # Фраза, на которую будет отклюикаться колонка, а так же она используется для отлова событий в автоматизациях HA | |
extra_phrases: # Дополнительные фразы, оторые та же будут приводить кк вызову команды | |
- Спокойной ночи | |
say_phrase: Спокойной ночи, шеф # Фраза, которой Алиса вам ответит |
OlderNewer