├── LICENSE ├── README.md ├── automations.yaml ├── configuration.yaml ├── esphome ├── d1mini_air_freshener.yaml ├── d1mini_bed_leds.yaml ├── d1mini_distance_sensor.yaml ├── d1mini_light_l.yaml ├── digma_ir_k.yaml ├── digma_ir_mb.yaml ├── digma_ir_s.yaml ├── digma_ir_v.yaml ├── digma_strip_hb.yaml ├── esp32_domofon.yaml ├── esp32_node_b.yaml ├── esp32_node_hs.yaml ├── esp32_node_k.yaml ├── esp32_node_mb.yaml ├── esp32_node_s.yaml ├── esp32_node_v.yaml ├── esp32_poe_ble_hs.yaml ├── esp32_poe_ble_mb.yaml ├── esp32_poe_ble_s.yaml ├── esp32_pzem_hb.yaml ├── esp32_strip_1s_bookshelf_mb.yaml ├── esp32_strip_1s_entrance_hb.yaml ├── esp32_strip_1s_wadrobe_hb.yaml ├── esp32_strip_1s_wadrobe_mb.yaml ├── esp8266_hood_k.yaml ├── esp8266_oven_temp_k.yaml ├── ld2410_uart.h ├── light_bar.yaml ├── mono_strip_1.yaml ├── new_nec.py ├── shp6_socket_1.yaml ├── shp6_socket_2.yaml ├── sonoff_basic_2.yaml ├── sonoff_basic_4.yaml ├── sonoff_mini_1.yaml ├── sonoff_mini_4.yaml ├── sonoff_minir4_1.yaml ├── sonoff_pow_r2_1.yaml ├── sonoff_pow_r2_2.yaml ├── sonoff_pow_r2_3.yaml ├── sp111_socket_1.yaml └── sp111_socket_2.yaml ├── gitignore.sh ├── gitupdate.sh ├── history_graph.yaml ├── images ├── air_details.jpg ├── air_fryer.jpg ├── cctv.jpg ├── devices_by_room.jpg ├── ds1621plus.jpg ├── ds215j.jpg ├── ds220j.jpg ├── esp_stats.jpg ├── gw3.jpg ├── gw3_stats.jpg ├── hardware_evolution.jpg ├── home.jpg ├── hp_prodesk_600_g6_dm.jpg ├── ippon.jpg ├── main_1.jpg ├── main_2.jpg ├── networkmap.jpg ├── power_details.jpg ├── purifier_2s.jpg ├── ro_filter.jpg ├── security.jpg ├── sensors_by_room.jpg ├── system_health.jpg ├── system_stats.jpg ├── temperature_details.jpg ├── testing_page.jpg ├── unifi.jpg ├── unifi_video.jpg ├── utility_counters.jpg ├── wifi_devices.jpg ├── yeelight-strip.jpg ├── yeelight_bulb.jpg ├── yeelight_round.jpg ├── yeelight_square.jpg ├── z_sensors.jpg ├── z_switches.jpg └── zigbee_stats.jpg ├── my_config ├── alert.yaml ├── automation │ ├── bathroom │ │ ├── fan.yaml │ │ ├── light.yaml │ │ ├── scale.yaml │ │ ├── valve_test.yaml │ │ └── washing_machine.yaml │ ├── emergency_main.yaml │ ├── hall_big │ │ ├── domofon.yaml │ │ ├── door_bell.yaml │ │ ├── fridge.yaml │ │ ├── left_home.yaml │ │ ├── light.yaml │ │ ├── locks.yaml │ │ ├── main_door.yaml │ │ ├── ups.yaml │ │ └── weather_fcst.yaml │ ├── hall_small │ │ └── light.yaml │ ├── kitchen │ │ ├── kitchen.yaml │ │ └── light.yaml │ ├── master_bedroom │ │ ├── breather.yaml │ │ ├── light.yaml │ │ └── ups.yaml │ ├── sasha │ │ ├── breather.yaml │ │ ├── light.yaml │ │ └── sasha.yaml │ ├── storage │ │ └── light.yaml │ ├── system │ │ ├── audio.yaml │ │ ├── breather.yaml │ │ ├── calendar.yaml │ │ ├── camera_snapshot.yaml │ │ ├── google_backup.yaml │ │ ├── light.yaml │ │ ├── location.yaml │ │ ├── mqtt_discovery.yaml │ │ ├── person.yaml │ │ ├── printer.yaml │ │ ├── security.yaml │ │ ├── sim800control.yaml │ │ ├── system.yaml │ │ ├── system_health_main.yaml │ │ ├── updates.yaml │ │ ├── utility_counters.yaml │ │ ├── water_leak.yaml │ │ ├── wifi_devices.yaml │ │ └── yandex_smart_home.yaml │ ├── toilet │ │ ├── fan.yaml │ │ ├── light.yaml │ │ └── toilet.yaml │ └── vova │ │ ├── breather.yaml │ │ ├── light.yaml │ │ └── vova.yaml ├── bi-sensor │ ├── bayesian.yaml │ ├── bi-sensor.yaml │ ├── camera_mqtt.yaml │ ├── cross_server_main.yaml │ ├── digma8027_kiosk.yaml │ ├── group.yaml │ ├── mqtt.yaml │ ├── ping_main.yaml │ ├── presence.yaml │ ├── tod.yaml │ ├── trend.yaml │ ├── workday.yaml │ └── zigbee2mqtt.yaml ├── ble_monitor.yaml ├── browser_mod.yaml ├── camera.yaml ├── climate.yaml ├── command_line │ ├── bi-sensor │ │ ├── cmd_line.yaml │ │ └── cross_server_main.yaml │ └── sensor │ │ ├── sensor.yaml │ │ └── udmp.yaml ├── counter.yaml ├── customize.yaml ├── customize_glob.yaml ├── device_tracker.yaml ├── fan.yaml ├── feedreader.yaml ├── gateways.yaml ├── generic_hygrostat.yaml ├── group │ └── groups.yaml ├── history.yaml ├── http.yaml ├── influxdb.yaml ├── input_boolean │ └── input_boolean.yaml ├── input_button.yaml ├── input_datetime.yaml ├── input_number.yaml ├── input_select.yaml ├── input_text.yaml ├── light.yaml ├── logbook.yaml ├── lovelace.yaml ├── media_player.yaml ├── mqtt.yaml ├── notify.yaml ├── panel_custom.yaml ├── person.yaml ├── proximity.yaml ├── recorder.yaml ├── remote.yaml ├── rest.yaml ├── scene.yaml ├── schedule.yaml ├── scrape.yaml ├── script │ ├── addons_start.yaml │ ├── air_freshener.yaml │ ├── away_mode.yaml │ ├── breather_control.yaml │ ├── briefing.yaml │ ├── calendar.yaml │ ├── camera_snapshot.yaml │ ├── domofon.yaml │ ├── fan_control.yaml │ ├── fancy_stuff.yaml │ ├── humi_puri.yaml │ ├── icloud_call.yaml │ ├── light_alarm.yaml │ ├── lights.yaml │ ├── main_door.yaml │ ├── media_players.yaml │ ├── persistent.yaml │ ├── radio.yaml │ ├── reboot.yaml │ ├── remote.yaml │ ├── ro_filter.yaml │ ├── scripts.yaml │ ├── sensors_update.yaml │ ├── system_start.yaml │ ├── telegram_wrapper.yaml │ ├── tts.yaml │ ├── utility_scripts.yaml │ ├── vacation_lights.yaml │ ├── ventilation.yaml │ ├── washer.yaml │ ├── water_on_off.yaml │ ├── wifi_devices_restart.yaml │ └── zigbee2mqtt.yaml ├── sensor │ ├── buttons_stat.yaml │ ├── cpu_stats.yaml │ ├── cross_system_sensors_main.yaml │ ├── db_size_main.yaml │ ├── digma8027_kiosk.yaml │ ├── error_warning_counters.yaml │ ├── ha_versions.yaml │ ├── integral.yaml │ ├── mosvodokanal.yaml │ ├── motion_stats.yaml │ ├── mqtt_room.yaml.back │ ├── python_script.yaml │ ├── sensor.yaml │ ├── servers_uptime_main.yaml │ ├── ssh.yaml │ ├── system_monitor_main.yaml │ ├── system_monitor_main_stats.yaml │ ├── tablet.yaml │ ├── uptime_sensors.yaml │ ├── utility_sensors.yaml │ ├── weather.yaml │ ├── weight_pad_stats.yaml │ ├── yandex_transport.yaml │ └── zigbee2mqtt.yaml ├── shell_command.yaml ├── switch │ ├── switch.yaml │ ├── wol.yaml │ └── xiaomi.yaml ├── telegram_bot.yaml ├── template │ ├── bi-sensor │ │ ├── bi-sensor.yaml │ │ ├── cross_server_main.yaml │ │ ├── location.yaml │ │ ├── media_player_state.yaml │ │ ├── motion.yaml │ │ ├── new_versions.yaml │ │ ├── occupancy.yaml │ │ ├── presence.yaml │ │ ├── radar.yaml │ │ ├── security.yaml │ │ ├── tariffs.yaml │ │ ├── tod.yaml │ │ ├── udmp.yaml │ │ ├── wasp.yaml │ │ └── ya_station_voice.yaml │ ├── select │ │ └── select.yaml │ └── sensor │ │ ├── db_size.yaml │ │ ├── dns_time.yaml │ │ ├── error_warning_stats.yaml │ │ ├── gw3_sensors.yaml │ │ ├── humi_puri.yaml │ │ ├── mosvodokanal.yaml │ │ ├── revers_osmosis_sensors.yaml.bak │ │ ├── security.yaml │ │ ├── sensor.yaml │ │ ├── statistics.yaml │ │ ├── supervisor_current_version.yaml │ │ ├── udmp.yaml │ │ ├── uptime_sensors.yaml │ │ ├── utility_sensors.yaml │ │ ├── waqi.yaml.bak │ │ ├── weather.yaml │ │ └── ya_station.yaml ├── timer.yaml ├── transmission.yaml ├── tts.yaml ├── utility_meter.yaml ├── watchman.yaml ├── weather.yaml ├── xiaomi_gateway3.yaml ├── ya_smart_home.yaml ├── yandex_station.yaml ├── yandex_station_intents.yaml ├── yeelight.yaml ├── zabbix.yaml └── zone.yaml ├── ui-dima.yaml ├── ui-lovelace.yaml ├── ui-sandra.yaml ├── ui-sasha.yaml └── ui-vova.yaml /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/README.md -------------------------------------------------------------------------------- /automations.yaml: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /configuration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/configuration.yaml -------------------------------------------------------------------------------- /esphome/d1mini_air_freshener.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/esphome/d1mini_air_freshener.yaml -------------------------------------------------------------------------------- /esphome/d1mini_bed_leds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/esphome/d1mini_bed_leds.yaml -------------------------------------------------------------------------------- /esphome/d1mini_distance_sensor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/esphome/d1mini_distance_sensor.yaml -------------------------------------------------------------------------------- /esphome/d1mini_light_l.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/esphome/d1mini_light_l.yaml -------------------------------------------------------------------------------- /esphome/digma_ir_k.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/esphome/digma_ir_k.yaml -------------------------------------------------------------------------------- /esphome/digma_ir_mb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/esphome/digma_ir_mb.yaml -------------------------------------------------------------------------------- /esphome/digma_ir_s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/esphome/digma_ir_s.yaml -------------------------------------------------------------------------------- /esphome/digma_ir_v.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/esphome/digma_ir_v.yaml -------------------------------------------------------------------------------- /esphome/digma_strip_hb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/esphome/digma_strip_hb.yaml -------------------------------------------------------------------------------- /esphome/esp32_domofon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/esphome/esp32_domofon.yaml -------------------------------------------------------------------------------- /esphome/esp32_node_b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/esphome/esp32_node_b.yaml -------------------------------------------------------------------------------- /esphome/esp32_node_hs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/esphome/esp32_node_hs.yaml -------------------------------------------------------------------------------- /esphome/esp32_node_k.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/esphome/esp32_node_k.yaml -------------------------------------------------------------------------------- /esphome/esp32_node_mb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/esphome/esp32_node_mb.yaml -------------------------------------------------------------------------------- /esphome/esp32_node_s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/esphome/esp32_node_s.yaml -------------------------------------------------------------------------------- /esphome/esp32_node_v.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/esphome/esp32_node_v.yaml -------------------------------------------------------------------------------- /esphome/esp32_poe_ble_hs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/esphome/esp32_poe_ble_hs.yaml -------------------------------------------------------------------------------- /esphome/esp32_poe_ble_mb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/esphome/esp32_poe_ble_mb.yaml -------------------------------------------------------------------------------- /esphome/esp32_poe_ble_s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/esphome/esp32_poe_ble_s.yaml -------------------------------------------------------------------------------- /esphome/esp32_pzem_hb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/esphome/esp32_pzem_hb.yaml -------------------------------------------------------------------------------- /esphome/esp32_strip_1s_bookshelf_mb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/esphome/esp32_strip_1s_bookshelf_mb.yaml -------------------------------------------------------------------------------- /esphome/esp32_strip_1s_entrance_hb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/esphome/esp32_strip_1s_entrance_hb.yaml -------------------------------------------------------------------------------- /esphome/esp32_strip_1s_wadrobe_hb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/esphome/esp32_strip_1s_wadrobe_hb.yaml -------------------------------------------------------------------------------- /esphome/esp32_strip_1s_wadrobe_mb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/esphome/esp32_strip_1s_wadrobe_mb.yaml -------------------------------------------------------------------------------- /esphome/esp8266_hood_k.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/esphome/esp8266_hood_k.yaml -------------------------------------------------------------------------------- /esphome/esp8266_oven_temp_k.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/esphome/esp8266_oven_temp_k.yaml -------------------------------------------------------------------------------- /esphome/ld2410_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/esphome/ld2410_uart.h -------------------------------------------------------------------------------- /esphome/light_bar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/esphome/light_bar.yaml -------------------------------------------------------------------------------- /esphome/mono_strip_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/esphome/mono_strip_1.yaml -------------------------------------------------------------------------------- /esphome/new_nec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/esphome/new_nec.py -------------------------------------------------------------------------------- /esphome/shp6_socket_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/esphome/shp6_socket_1.yaml -------------------------------------------------------------------------------- /esphome/shp6_socket_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/esphome/shp6_socket_2.yaml -------------------------------------------------------------------------------- /esphome/sonoff_basic_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/esphome/sonoff_basic_2.yaml -------------------------------------------------------------------------------- /esphome/sonoff_basic_4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/esphome/sonoff_basic_4.yaml -------------------------------------------------------------------------------- /esphome/sonoff_mini_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/esphome/sonoff_mini_1.yaml -------------------------------------------------------------------------------- /esphome/sonoff_mini_4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/esphome/sonoff_mini_4.yaml -------------------------------------------------------------------------------- /esphome/sonoff_minir4_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/esphome/sonoff_minir4_1.yaml -------------------------------------------------------------------------------- /esphome/sonoff_pow_r2_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/esphome/sonoff_pow_r2_1.yaml -------------------------------------------------------------------------------- /esphome/sonoff_pow_r2_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/esphome/sonoff_pow_r2_2.yaml -------------------------------------------------------------------------------- /esphome/sonoff_pow_r2_3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/esphome/sonoff_pow_r2_3.yaml -------------------------------------------------------------------------------- /esphome/sp111_socket_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/esphome/sp111_socket_1.yaml -------------------------------------------------------------------------------- /esphome/sp111_socket_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/esphome/sp111_socket_2.yaml -------------------------------------------------------------------------------- /gitignore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/gitignore.sh -------------------------------------------------------------------------------- /gitupdate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/gitupdate.sh -------------------------------------------------------------------------------- /history_graph.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/air_details.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/images/air_details.jpg -------------------------------------------------------------------------------- /images/air_fryer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/images/air_fryer.jpg -------------------------------------------------------------------------------- /images/cctv.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/images/cctv.jpg -------------------------------------------------------------------------------- /images/devices_by_room.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/images/devices_by_room.jpg -------------------------------------------------------------------------------- /images/ds1621plus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/images/ds1621plus.jpg -------------------------------------------------------------------------------- /images/ds215j.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/images/ds215j.jpg -------------------------------------------------------------------------------- /images/ds220j.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/images/ds220j.jpg -------------------------------------------------------------------------------- /images/esp_stats.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/images/esp_stats.jpg -------------------------------------------------------------------------------- /images/gw3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/images/gw3.jpg -------------------------------------------------------------------------------- /images/gw3_stats.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/images/gw3_stats.jpg -------------------------------------------------------------------------------- /images/hardware_evolution.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/images/hardware_evolution.jpg -------------------------------------------------------------------------------- /images/home.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/images/home.jpg -------------------------------------------------------------------------------- /images/hp_prodesk_600_g6_dm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/images/hp_prodesk_600_g6_dm.jpg -------------------------------------------------------------------------------- /images/ippon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/images/ippon.jpg -------------------------------------------------------------------------------- /images/main_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/images/main_1.jpg -------------------------------------------------------------------------------- /images/main_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/images/main_2.jpg -------------------------------------------------------------------------------- /images/networkmap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/images/networkmap.jpg -------------------------------------------------------------------------------- /images/power_details.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/images/power_details.jpg -------------------------------------------------------------------------------- /images/purifier_2s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/images/purifier_2s.jpg -------------------------------------------------------------------------------- /images/ro_filter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/images/ro_filter.jpg -------------------------------------------------------------------------------- /images/security.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/images/security.jpg -------------------------------------------------------------------------------- /images/sensors_by_room.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/images/sensors_by_room.jpg -------------------------------------------------------------------------------- /images/system_health.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/images/system_health.jpg -------------------------------------------------------------------------------- /images/system_stats.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/images/system_stats.jpg -------------------------------------------------------------------------------- /images/temperature_details.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/images/temperature_details.jpg -------------------------------------------------------------------------------- /images/testing_page.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/images/testing_page.jpg -------------------------------------------------------------------------------- /images/unifi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/images/unifi.jpg -------------------------------------------------------------------------------- /images/unifi_video.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/images/unifi_video.jpg -------------------------------------------------------------------------------- /images/utility_counters.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/images/utility_counters.jpg -------------------------------------------------------------------------------- /images/wifi_devices.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/images/wifi_devices.jpg -------------------------------------------------------------------------------- /images/yeelight-strip.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/images/yeelight-strip.jpg -------------------------------------------------------------------------------- /images/yeelight_bulb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/images/yeelight_bulb.jpg -------------------------------------------------------------------------------- /images/yeelight_round.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/images/yeelight_round.jpg -------------------------------------------------------------------------------- /images/yeelight_square.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/images/yeelight_square.jpg -------------------------------------------------------------------------------- /images/z_sensors.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/images/z_sensors.jpg -------------------------------------------------------------------------------- /images/z_switches.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/images/z_switches.jpg -------------------------------------------------------------------------------- /images/zigbee_stats.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/images/zigbee_stats.jpg -------------------------------------------------------------------------------- /my_config/alert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/alert.yaml -------------------------------------------------------------------------------- /my_config/automation/bathroom/fan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/automation/bathroom/fan.yaml -------------------------------------------------------------------------------- /my_config/automation/bathroom/light.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/automation/bathroom/light.yaml -------------------------------------------------------------------------------- /my_config/automation/bathroom/scale.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/automation/bathroom/scale.yaml -------------------------------------------------------------------------------- /my_config/automation/bathroom/valve_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/automation/bathroom/valve_test.yaml -------------------------------------------------------------------------------- /my_config/automation/bathroom/washing_machine.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/automation/bathroom/washing_machine.yaml -------------------------------------------------------------------------------- /my_config/automation/emergency_main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/automation/emergency_main.yaml -------------------------------------------------------------------------------- /my_config/automation/hall_big/domofon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/automation/hall_big/domofon.yaml -------------------------------------------------------------------------------- /my_config/automation/hall_big/door_bell.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/automation/hall_big/door_bell.yaml -------------------------------------------------------------------------------- /my_config/automation/hall_big/fridge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/automation/hall_big/fridge.yaml -------------------------------------------------------------------------------- /my_config/automation/hall_big/left_home.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/automation/hall_big/left_home.yaml -------------------------------------------------------------------------------- /my_config/automation/hall_big/light.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/automation/hall_big/light.yaml -------------------------------------------------------------------------------- /my_config/automation/hall_big/locks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/automation/hall_big/locks.yaml -------------------------------------------------------------------------------- /my_config/automation/hall_big/main_door.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/automation/hall_big/main_door.yaml -------------------------------------------------------------------------------- /my_config/automation/hall_big/ups.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/automation/hall_big/ups.yaml -------------------------------------------------------------------------------- /my_config/automation/hall_big/weather_fcst.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/automation/hall_big/weather_fcst.yaml -------------------------------------------------------------------------------- /my_config/automation/hall_small/light.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/automation/hall_small/light.yaml -------------------------------------------------------------------------------- /my_config/automation/kitchen/kitchen.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/automation/kitchen/kitchen.yaml -------------------------------------------------------------------------------- /my_config/automation/kitchen/light.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/automation/kitchen/light.yaml -------------------------------------------------------------------------------- /my_config/automation/master_bedroom/breather.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/automation/master_bedroom/breather.yaml -------------------------------------------------------------------------------- /my_config/automation/master_bedroom/light.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/automation/master_bedroom/light.yaml -------------------------------------------------------------------------------- /my_config/automation/master_bedroom/ups.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/automation/master_bedroom/ups.yaml -------------------------------------------------------------------------------- /my_config/automation/sasha/breather.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/automation/sasha/breather.yaml -------------------------------------------------------------------------------- /my_config/automation/sasha/light.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/automation/sasha/light.yaml -------------------------------------------------------------------------------- /my_config/automation/sasha/sasha.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/automation/sasha/sasha.yaml -------------------------------------------------------------------------------- /my_config/automation/storage/light.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/automation/storage/light.yaml -------------------------------------------------------------------------------- /my_config/automation/system/audio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/automation/system/audio.yaml -------------------------------------------------------------------------------- /my_config/automation/system/breather.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/automation/system/breather.yaml -------------------------------------------------------------------------------- /my_config/automation/system/calendar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/automation/system/calendar.yaml -------------------------------------------------------------------------------- /my_config/automation/system/camera_snapshot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/automation/system/camera_snapshot.yaml -------------------------------------------------------------------------------- /my_config/automation/system/google_backup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/automation/system/google_backup.yaml -------------------------------------------------------------------------------- /my_config/automation/system/light.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/automation/system/light.yaml -------------------------------------------------------------------------------- /my_config/automation/system/location.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/automation/system/location.yaml -------------------------------------------------------------------------------- /my_config/automation/system/mqtt_discovery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/automation/system/mqtt_discovery.yaml -------------------------------------------------------------------------------- /my_config/automation/system/person.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/automation/system/person.yaml -------------------------------------------------------------------------------- /my_config/automation/system/printer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/automation/system/printer.yaml -------------------------------------------------------------------------------- /my_config/automation/system/security.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/automation/system/security.yaml -------------------------------------------------------------------------------- /my_config/automation/system/sim800control.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/automation/system/sim800control.yaml -------------------------------------------------------------------------------- /my_config/automation/system/system.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/automation/system/system.yaml -------------------------------------------------------------------------------- /my_config/automation/system/system_health_main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/automation/system/system_health_main.yaml -------------------------------------------------------------------------------- /my_config/automation/system/updates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/automation/system/updates.yaml -------------------------------------------------------------------------------- /my_config/automation/system/utility_counters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/automation/system/utility_counters.yaml -------------------------------------------------------------------------------- /my_config/automation/system/water_leak.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/automation/system/water_leak.yaml -------------------------------------------------------------------------------- /my_config/automation/system/wifi_devices.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/automation/system/wifi_devices.yaml -------------------------------------------------------------------------------- /my_config/automation/system/yandex_smart_home.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/automation/system/yandex_smart_home.yaml -------------------------------------------------------------------------------- /my_config/automation/toilet/fan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/automation/toilet/fan.yaml -------------------------------------------------------------------------------- /my_config/automation/toilet/light.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/automation/toilet/light.yaml -------------------------------------------------------------------------------- /my_config/automation/toilet/toilet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/automation/toilet/toilet.yaml -------------------------------------------------------------------------------- /my_config/automation/vova/breather.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/automation/vova/breather.yaml -------------------------------------------------------------------------------- /my_config/automation/vova/light.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/automation/vova/light.yaml -------------------------------------------------------------------------------- /my_config/automation/vova/vova.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/automation/vova/vova.yaml -------------------------------------------------------------------------------- /my_config/bi-sensor/bayesian.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/bi-sensor/bayesian.yaml -------------------------------------------------------------------------------- /my_config/bi-sensor/bi-sensor.yaml: -------------------------------------------------------------------------------- 1 | #- platform: random 2 | -------------------------------------------------------------------------------- /my_config/bi-sensor/camera_mqtt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/bi-sensor/camera_mqtt.yaml -------------------------------------------------------------------------------- /my_config/bi-sensor/cross_server_main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/bi-sensor/cross_server_main.yaml -------------------------------------------------------------------------------- /my_config/bi-sensor/digma8027_kiosk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/bi-sensor/digma8027_kiosk.yaml -------------------------------------------------------------------------------- /my_config/bi-sensor/group.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/bi-sensor/group.yaml -------------------------------------------------------------------------------- /my_config/bi-sensor/mqtt.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /my_config/bi-sensor/ping_main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/bi-sensor/ping_main.yaml -------------------------------------------------------------------------------- /my_config/bi-sensor/presence.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/bi-sensor/presence.yaml -------------------------------------------------------------------------------- /my_config/bi-sensor/tod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/bi-sensor/tod.yaml -------------------------------------------------------------------------------- /my_config/bi-sensor/trend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/bi-sensor/trend.yaml -------------------------------------------------------------------------------- /my_config/bi-sensor/workday.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/bi-sensor/workday.yaml -------------------------------------------------------------------------------- /my_config/bi-sensor/zigbee2mqtt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/bi-sensor/zigbee2mqtt.yaml -------------------------------------------------------------------------------- /my_config/ble_monitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/ble_monitor.yaml -------------------------------------------------------------------------------- /my_config/browser_mod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/browser_mod.yaml -------------------------------------------------------------------------------- /my_config/camera.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/camera.yaml -------------------------------------------------------------------------------- /my_config/climate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/climate.yaml -------------------------------------------------------------------------------- /my_config/command_line/bi-sensor/cmd_line.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/command_line/bi-sensor/cmd_line.yaml -------------------------------------------------------------------------------- /my_config/command_line/bi-sensor/cross_server_main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/command_line/bi-sensor/cross_server_main.yaml -------------------------------------------------------------------------------- /my_config/command_line/sensor/sensor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/command_line/sensor/sensor.yaml -------------------------------------------------------------------------------- /my_config/command_line/sensor/udmp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/command_line/sensor/udmp.yaml -------------------------------------------------------------------------------- /my_config/counter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/counter.yaml -------------------------------------------------------------------------------- /my_config/customize.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/customize.yaml -------------------------------------------------------------------------------- /my_config/customize_glob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/customize_glob.yaml -------------------------------------------------------------------------------- /my_config/device_tracker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/device_tracker.yaml -------------------------------------------------------------------------------- /my_config/fan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/fan.yaml -------------------------------------------------------------------------------- /my_config/feedreader.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/feedreader.yaml -------------------------------------------------------------------------------- /my_config/gateways.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/gateways.yaml -------------------------------------------------------------------------------- /my_config/generic_hygrostat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/generic_hygrostat.yaml -------------------------------------------------------------------------------- /my_config/group/groups.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/group/groups.yaml -------------------------------------------------------------------------------- /my_config/history.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/history.yaml -------------------------------------------------------------------------------- /my_config/http.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/http.yaml -------------------------------------------------------------------------------- /my_config/influxdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/influxdb.yaml -------------------------------------------------------------------------------- /my_config/input_boolean/input_boolean.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/input_boolean/input_boolean.yaml -------------------------------------------------------------------------------- /my_config/input_button.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/input_button.yaml -------------------------------------------------------------------------------- /my_config/input_datetime.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/input_datetime.yaml -------------------------------------------------------------------------------- /my_config/input_number.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/input_number.yaml -------------------------------------------------------------------------------- /my_config/input_select.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/input_select.yaml -------------------------------------------------------------------------------- /my_config/input_text.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/input_text.yaml -------------------------------------------------------------------------------- /my_config/light.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/light.yaml -------------------------------------------------------------------------------- /my_config/logbook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/logbook.yaml -------------------------------------------------------------------------------- /my_config/lovelace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/lovelace.yaml -------------------------------------------------------------------------------- /my_config/media_player.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/media_player.yaml -------------------------------------------------------------------------------- /my_config/mqtt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/mqtt.yaml -------------------------------------------------------------------------------- /my_config/notify.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/notify.yaml -------------------------------------------------------------------------------- /my_config/panel_custom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/panel_custom.yaml -------------------------------------------------------------------------------- /my_config/person.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/person.yaml -------------------------------------------------------------------------------- /my_config/proximity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/proximity.yaml -------------------------------------------------------------------------------- /my_config/recorder.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/recorder.yaml -------------------------------------------------------------------------------- /my_config/remote.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/remote.yaml -------------------------------------------------------------------------------- /my_config/rest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/rest.yaml -------------------------------------------------------------------------------- /my_config/scene.yaml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /my_config/schedule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/schedule.yaml -------------------------------------------------------------------------------- /my_config/scrape.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/scrape.yaml -------------------------------------------------------------------------------- /my_config/script/addons_start.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/script/addons_start.yaml -------------------------------------------------------------------------------- /my_config/script/air_freshener.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/script/air_freshener.yaml -------------------------------------------------------------------------------- /my_config/script/away_mode.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/script/away_mode.yaml -------------------------------------------------------------------------------- /my_config/script/breather_control.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/script/breather_control.yaml -------------------------------------------------------------------------------- /my_config/script/briefing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/script/briefing.yaml -------------------------------------------------------------------------------- /my_config/script/calendar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/script/calendar.yaml -------------------------------------------------------------------------------- /my_config/script/camera_snapshot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/script/camera_snapshot.yaml -------------------------------------------------------------------------------- /my_config/script/domofon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/script/domofon.yaml -------------------------------------------------------------------------------- /my_config/script/fan_control.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/script/fan_control.yaml -------------------------------------------------------------------------------- /my_config/script/fancy_stuff.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/script/fancy_stuff.yaml -------------------------------------------------------------------------------- /my_config/script/humi_puri.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/script/humi_puri.yaml -------------------------------------------------------------------------------- /my_config/script/icloud_call.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/script/icloud_call.yaml -------------------------------------------------------------------------------- /my_config/script/light_alarm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/script/light_alarm.yaml -------------------------------------------------------------------------------- /my_config/script/lights.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/script/lights.yaml -------------------------------------------------------------------------------- /my_config/script/main_door.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/script/main_door.yaml -------------------------------------------------------------------------------- /my_config/script/media_players.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/script/media_players.yaml -------------------------------------------------------------------------------- /my_config/script/persistent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/script/persistent.yaml -------------------------------------------------------------------------------- /my_config/script/radio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/script/radio.yaml -------------------------------------------------------------------------------- /my_config/script/reboot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/script/reboot.yaml -------------------------------------------------------------------------------- /my_config/script/remote.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/script/remote.yaml -------------------------------------------------------------------------------- /my_config/script/ro_filter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/script/ro_filter.yaml -------------------------------------------------------------------------------- /my_config/script/scripts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/script/scripts.yaml -------------------------------------------------------------------------------- /my_config/script/sensors_update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/script/sensors_update.yaml -------------------------------------------------------------------------------- /my_config/script/system_start.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/script/system_start.yaml -------------------------------------------------------------------------------- /my_config/script/telegram_wrapper.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/script/telegram_wrapper.yaml -------------------------------------------------------------------------------- /my_config/script/tts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/script/tts.yaml -------------------------------------------------------------------------------- /my_config/script/utility_scripts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/script/utility_scripts.yaml -------------------------------------------------------------------------------- /my_config/script/vacation_lights.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/script/vacation_lights.yaml -------------------------------------------------------------------------------- /my_config/script/ventilation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/script/ventilation.yaml -------------------------------------------------------------------------------- /my_config/script/washer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/script/washer.yaml -------------------------------------------------------------------------------- /my_config/script/water_on_off.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/script/water_on_off.yaml -------------------------------------------------------------------------------- /my_config/script/wifi_devices_restart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/script/wifi_devices_restart.yaml -------------------------------------------------------------------------------- /my_config/script/zigbee2mqtt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/script/zigbee2mqtt.yaml -------------------------------------------------------------------------------- /my_config/sensor/buttons_stat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/sensor/buttons_stat.yaml -------------------------------------------------------------------------------- /my_config/sensor/cpu_stats.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/sensor/cpu_stats.yaml -------------------------------------------------------------------------------- /my_config/sensor/cross_system_sensors_main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/sensor/cross_system_sensors_main.yaml -------------------------------------------------------------------------------- /my_config/sensor/db_size_main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/sensor/db_size_main.yaml -------------------------------------------------------------------------------- /my_config/sensor/digma8027_kiosk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/sensor/digma8027_kiosk.yaml -------------------------------------------------------------------------------- /my_config/sensor/error_warning_counters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/sensor/error_warning_counters.yaml -------------------------------------------------------------------------------- /my_config/sensor/ha_versions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/sensor/ha_versions.yaml -------------------------------------------------------------------------------- /my_config/sensor/integral.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/sensor/integral.yaml -------------------------------------------------------------------------------- /my_config/sensor/mosvodokanal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/sensor/mosvodokanal.yaml -------------------------------------------------------------------------------- /my_config/sensor/motion_stats.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/sensor/motion_stats.yaml -------------------------------------------------------------------------------- /my_config/sensor/mqtt_room.yaml.back: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/sensor/mqtt_room.yaml.back -------------------------------------------------------------------------------- /my_config/sensor/python_script.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/sensor/python_script.yaml -------------------------------------------------------------------------------- /my_config/sensor/sensor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/sensor/sensor.yaml -------------------------------------------------------------------------------- /my_config/sensor/servers_uptime_main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/sensor/servers_uptime_main.yaml -------------------------------------------------------------------------------- /my_config/sensor/ssh.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/sensor/ssh.yaml -------------------------------------------------------------------------------- /my_config/sensor/system_monitor_main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/sensor/system_monitor_main.yaml -------------------------------------------------------------------------------- /my_config/sensor/system_monitor_main_stats.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/sensor/system_monitor_main_stats.yaml -------------------------------------------------------------------------------- /my_config/sensor/tablet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/sensor/tablet.yaml -------------------------------------------------------------------------------- /my_config/sensor/uptime_sensors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/sensor/uptime_sensors.yaml -------------------------------------------------------------------------------- /my_config/sensor/utility_sensors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/sensor/utility_sensors.yaml -------------------------------------------------------------------------------- /my_config/sensor/weather.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/sensor/weather.yaml -------------------------------------------------------------------------------- /my_config/sensor/weight_pad_stats.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/sensor/weight_pad_stats.yaml -------------------------------------------------------------------------------- /my_config/sensor/yandex_transport.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/sensor/yandex_transport.yaml -------------------------------------------------------------------------------- /my_config/sensor/zigbee2mqtt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/sensor/zigbee2mqtt.yaml -------------------------------------------------------------------------------- /my_config/shell_command.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/shell_command.yaml -------------------------------------------------------------------------------- /my_config/switch/switch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/switch/switch.yaml -------------------------------------------------------------------------------- /my_config/switch/wol.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/switch/wol.yaml -------------------------------------------------------------------------------- /my_config/switch/xiaomi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/switch/xiaomi.yaml -------------------------------------------------------------------------------- /my_config/telegram_bot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/telegram_bot.yaml -------------------------------------------------------------------------------- /my_config/template/bi-sensor/bi-sensor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/template/bi-sensor/bi-sensor.yaml -------------------------------------------------------------------------------- /my_config/template/bi-sensor/cross_server_main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/template/bi-sensor/cross_server_main.yaml -------------------------------------------------------------------------------- /my_config/template/bi-sensor/location.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/template/bi-sensor/location.yaml -------------------------------------------------------------------------------- /my_config/template/bi-sensor/media_player_state.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/template/bi-sensor/media_player_state.yaml -------------------------------------------------------------------------------- /my_config/template/bi-sensor/motion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/template/bi-sensor/motion.yaml -------------------------------------------------------------------------------- /my_config/template/bi-sensor/new_versions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/template/bi-sensor/new_versions.yaml -------------------------------------------------------------------------------- /my_config/template/bi-sensor/occupancy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/template/bi-sensor/occupancy.yaml -------------------------------------------------------------------------------- /my_config/template/bi-sensor/presence.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/template/bi-sensor/presence.yaml -------------------------------------------------------------------------------- /my_config/template/bi-sensor/radar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/template/bi-sensor/radar.yaml -------------------------------------------------------------------------------- /my_config/template/bi-sensor/security.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/template/bi-sensor/security.yaml -------------------------------------------------------------------------------- /my_config/template/bi-sensor/tariffs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/template/bi-sensor/tariffs.yaml -------------------------------------------------------------------------------- /my_config/template/bi-sensor/tod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/template/bi-sensor/tod.yaml -------------------------------------------------------------------------------- /my_config/template/bi-sensor/udmp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/template/bi-sensor/udmp.yaml -------------------------------------------------------------------------------- /my_config/template/bi-sensor/wasp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/template/bi-sensor/wasp.yaml -------------------------------------------------------------------------------- /my_config/template/bi-sensor/ya_station_voice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/template/bi-sensor/ya_station_voice.yaml -------------------------------------------------------------------------------- /my_config/template/select/select.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/template/select/select.yaml -------------------------------------------------------------------------------- /my_config/template/sensor/db_size.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/template/sensor/db_size.yaml -------------------------------------------------------------------------------- /my_config/template/sensor/dns_time.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/template/sensor/dns_time.yaml -------------------------------------------------------------------------------- /my_config/template/sensor/error_warning_stats.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/template/sensor/error_warning_stats.yaml -------------------------------------------------------------------------------- /my_config/template/sensor/gw3_sensors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/template/sensor/gw3_sensors.yaml -------------------------------------------------------------------------------- /my_config/template/sensor/humi_puri.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/template/sensor/humi_puri.yaml -------------------------------------------------------------------------------- /my_config/template/sensor/mosvodokanal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/template/sensor/mosvodokanal.yaml -------------------------------------------------------------------------------- /my_config/template/sensor/revers_osmosis_sensors.yaml.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/template/sensor/revers_osmosis_sensors.yaml.bak -------------------------------------------------------------------------------- /my_config/template/sensor/security.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/template/sensor/security.yaml -------------------------------------------------------------------------------- /my_config/template/sensor/sensor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/template/sensor/sensor.yaml -------------------------------------------------------------------------------- /my_config/template/sensor/statistics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/template/sensor/statistics.yaml -------------------------------------------------------------------------------- /my_config/template/sensor/supervisor_current_version.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/template/sensor/supervisor_current_version.yaml -------------------------------------------------------------------------------- /my_config/template/sensor/udmp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/template/sensor/udmp.yaml -------------------------------------------------------------------------------- /my_config/template/sensor/uptime_sensors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/template/sensor/uptime_sensors.yaml -------------------------------------------------------------------------------- /my_config/template/sensor/utility_sensors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/template/sensor/utility_sensors.yaml -------------------------------------------------------------------------------- /my_config/template/sensor/waqi.yaml.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/template/sensor/waqi.yaml.bak -------------------------------------------------------------------------------- /my_config/template/sensor/weather.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/template/sensor/weather.yaml -------------------------------------------------------------------------------- /my_config/template/sensor/ya_station.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/template/sensor/ya_station.yaml -------------------------------------------------------------------------------- /my_config/timer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/timer.yaml -------------------------------------------------------------------------------- /my_config/transmission.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/transmission.yaml -------------------------------------------------------------------------------- /my_config/tts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/tts.yaml -------------------------------------------------------------------------------- /my_config/utility_meter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/utility_meter.yaml -------------------------------------------------------------------------------- /my_config/watchman.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/watchman.yaml -------------------------------------------------------------------------------- /my_config/weather.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/weather.yaml -------------------------------------------------------------------------------- /my_config/xiaomi_gateway3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/xiaomi_gateway3.yaml -------------------------------------------------------------------------------- /my_config/ya_smart_home.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/ya_smart_home.yaml -------------------------------------------------------------------------------- /my_config/yandex_station.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/yandex_station.yaml -------------------------------------------------------------------------------- /my_config/yandex_station_intents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/yandex_station_intents.yaml -------------------------------------------------------------------------------- /my_config/yeelight.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/yeelight.yaml -------------------------------------------------------------------------------- /my_config/zabbix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/zabbix.yaml -------------------------------------------------------------------------------- /my_config/zone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/my_config/zone.yaml -------------------------------------------------------------------------------- /ui-dima.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/ui-dima.yaml -------------------------------------------------------------------------------- /ui-lovelace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/ui-lovelace.yaml -------------------------------------------------------------------------------- /ui-sandra.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/ui-sandra.yaml -------------------------------------------------------------------------------- /ui-sasha.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/ui-sasha.yaml -------------------------------------------------------------------------------- /ui-vova.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/to4ko/myconfig/HEAD/ui-vova.yaml --------------------------------------------------------------------------------