├── .HA_VERSION ├── .github ├── FUNDING.yml ├── config.yml ├── stale.yml ├── weekly-digest.yml ├── workflows │ └── main.yml └── yamllint-config.yml ├── .timeline ├── .travis.yml ├── .vacuum ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── automations.yaml ├── automations ├── README.md ├── alarms │ ├── README.md │ ├── luka_schoolday_wakeup.yaml │ ├── luka_wifi_connect.yaml │ ├── luka_wifi_disconnect.yaml │ ├── school_input_off.yaml │ ├── school_input_on.yaml │ ├── zita_schoolday_bedtime.yaml │ ├── zita_wifi_connect.yaml │ └── zita_wifi_disconnect.yaml ├── audio_notification_switch.yaml ├── chores_announcement.yaml ├── chores_announcement_weekend.yaml ├── chores_assignment.yaml ├── front-door-sensor.yaml ├── hass_notification_response_open.yaml ├── hass_notification_response_yes.yaml ├── lights │ ├── README.md │ ├── almost-midnight-lights.yaml │ ├── living_room_motion_none_home.yaml │ ├── luka-lights-off-when-away.yaml │ ├── midnight-lights.yaml │ └── sunset-lights.yaml ├── listen_radio.yaml ├── locations │ ├── home.yaml │ ├── hrt.yaml │ ├── luka_keys_location.yaml │ ├── notify_on_zone_change.yaml │ ├── office.yaml │ ├── request_location_luka.yaml │ └── school.yaml ├── notification_glovo_app.yaml ├── plants │ └── water_plants_reminder.yaml ├── radio_volume.yaml ├── routine_speech_evening.yaml ├── routine_speech_morning.yaml ├── summer_air.yaml ├── sunrise_notification.yaml ├── switches │ ├── README.md │ └── remotes │ │ └── beer_button.yaml ├── system │ ├── backup_create_backup.yaml │ ├── backup_restore_state.yaml │ ├── github-workflow-failed.yaml │ ├── github_actions_webhook.yaml │ ├── github_webhook.yaml │ ├── google_assistant_sync_at_boot.yaml │ ├── ha_log_event_trigger.yaml │ ├── ha_shutdown_notification.yaml │ ├── ha_start_notifications.yaml │ ├── home_assistant_update_notification_dismiss.yaml │ ├── home_assistant_update_notifiication.yaml │ ├── logger_level_select.yaml │ ├── mount_nas.yaml │ ├── synology_chat.yaml │ ├── synology_temp_critical.yaml │ └── tts_clear_cache.yaml ├── telegram │ ├── telegram-HA-ping.yaml │ ├── telegram-bot-stop.yaml │ ├── telegram-callback-control-panel.yaml │ ├── telegram-camera-ss.yaml │ ├── telegram-command-HA-restart.yaml │ ├── telegram-command-control-panel.yaml │ ├── telegram-inline-ping.yaml │ ├── telegram-inline-weather.yaml │ ├── telegram-lights-all-off.yaml │ ├── telegram-lights-all-on.yaml │ ├── telegram-lights-ceiling-off.yaml │ ├── telegram-lights-ceiling-on.yaml │ ├── telegram-lights-dining-room-off.yaml │ ├── telegram-lights-dining-room-on.yaml │ ├── telegram-lights-kitchen-off.yaml │ ├── telegram-lights-kitchen-on.yaml │ ├── telegram-lights-living-room-off.yaml │ ├── telegram-lights-living-room-on.yaml │ ├── telegram-lights-menu.yaml │ ├── telegram-location-request-andrej.yaml │ ├── telegram-location-request-luka.yaml │ ├── telegram-location-request-mirta.yaml │ ├── telegram-location-request-zita.yaml │ ├── telegram-start-command.yaml │ └── telegram-system-status.yaml ├── text_notification_switch.yaml ├── utilities │ ├── google_pixel_watch_full.yaml │ ├── heating_luka_improvement.yaml │ ├── heating_zita_improvement.yaml │ ├── shelly_gas_alert.yaml │ ├── shelly_gas_normal.yaml │ ├── shelly_gas_self-test.yaml │ ├── shelly_gas_warning.yaml │ ├── sunrise_sunset_tracking.yaml │ ├── tado-long-heating-dining-room.yaml │ ├── tado-long-heating-living-room.yaml │ ├── tado-long-heating-luka-room.yaml │ ├── tado-long-heating-zita-room.yaml │ ├── twitch_stream_notification.yaml │ ├── yt_stream_notification.yaml │ └── yt_video_notification.yaml ├── weather │ ├── blitzorung.yaml │ ├── earthquake_detected.yaml │ ├── meteoalarm-alert.yaml │ └── openuv-update.yaml ├── webhook_nuki.yaml ├── webhook_reolink.yaml ├── webhook_unknown.yaml ├── wehbook_router.yaml ├── withings_thermo.yaml └── zigbee_lastseen_alert.yaml ├── blueprints ├── automation │ ├── Sbyx │ │ └── wake-up-light-alarm-with-sunrise-effect.yaml │ └── homeassistant │ │ ├── motion_light.yaml │ │ └── notify_leaving_zone.yaml ├── script │ └── homeassistant │ │ └── confirmable_notification.yaml └── template │ └── homeassistant │ └── inverted_binary_sensor.yaml ├── configuration.yaml ├── custom_components ├── .gitkeep ├── alexa_media │ ├── __init__.py │ ├── alarm_control_panel.py │ ├── alexa_entity.py │ ├── alexa_media.py │ ├── binary_sensor.py │ ├── config_flow.py │ ├── const.py │ ├── exceptions.py │ ├── helpers.py │ ├── light.py │ ├── manifest.json │ ├── media_player.py │ ├── notify.py │ ├── sensor.py │ ├── services.py │ ├── services.yaml │ └── switch.py ├── anniversaries │ ├── __init__.py │ ├── calendar.py │ ├── config_flow.py │ ├── const.py │ ├── manifest.json │ └── sensor.py ├── anniversary │ ├── __init_.py │ ├── manifest.json │ └── sensor.py ├── battery_notes │ ├── __init__.py │ ├── binary_sensor.py │ ├── button.py │ ├── common.py │ ├── config_flow.py │ ├── const.py │ ├── coordinator.py │ ├── diagnostics.py │ ├── discovery.py │ ├── entity.py │ ├── errors.py │ ├── filters.py │ ├── library.py │ ├── library_updater.py │ ├── manifest.json │ ├── repairs.py │ ├── sensor.py │ ├── services.py │ ├── services.yaml │ └── store.py ├── blitzortung │ ├── __init__.py │ ├── config_flow.py │ ├── const.py │ ├── diagnostics.py │ ├── geo_location.py │ ├── geohash.py │ ├── geohash_utils.py │ ├── manifest.json │ ├── mqtt.py │ ├── sensor.py │ └── version.py ├── calendarific │ ├── __init__.py │ ├── config_flow.py │ ├── const.py │ ├── manifest.json │ └── sensor.py ├── frigate │ ├── __init__.py │ ├── api.py │ ├── binary_sensor.py │ ├── camera.py │ ├── config_flow.py │ ├── const.py │ ├── diagnostics.py │ ├── icons.py │ ├── image.py │ ├── manifest.json │ ├── media_source.py │ ├── number.py │ ├── sensor.py │ ├── services.yaml │ ├── switch.py │ ├── update.py │ ├── views.py │ ├── ws_api.py │ └── ws_event_proxy.py ├── growcube │ ├── __init__.py │ ├── binary_sensor.py │ ├── button.py │ ├── config_flow.py │ ├── const.py │ ├── coordinator.py │ ├── manifest.json │ ├── sensor.py │ ├── services.py │ └── services.yaml ├── gtfs2 │ ├── __init__.py │ ├── config_flow.py │ ├── const.py │ ├── coordinator.py │ ├── gtfs_helper.py │ ├── gtfs_rt_helper.py │ ├── manifest.json │ ├── requests_testadapter.py │ ├── sensor.py │ ├── services.yaml │ └── zip_file.py ├── hacs │ ├── __init__.py │ ├── base.py │ ├── config_flow.py │ ├── const.py │ ├── coordinator.py │ ├── data_client.py │ ├── diagnostics.py │ ├── entity.py │ ├── enums.py │ ├── exceptions.py │ ├── frontend.py │ ├── hacs_frontend │ │ ├── __init__.py │ │ ├── entrypoint.js │ │ ├── extra.js │ │ ├── frontend_es5 │ │ │ ├── 1044.39e84f00be9ca07a.js │ │ │ ├── 1044.39e84f00be9ca07a.js.LICENSE.txt │ │ │ ├── 1044.39e84f00be9ca07a.js.map │ │ │ ├── 1162.bf81664890a4a83a.js │ │ │ ├── 1162.bf81664890a4a83a.js.map │ │ │ ├── 1176.fddf28197e706c45.js │ │ │ ├── 1176.fddf28197e706c45.js.map │ │ │ ├── 1206.fa61cdb7c134588b.js │ │ │ ├── 1206.fa61cdb7c134588b.js.map │ │ │ ├── 1236.7495ccc08957b0ec.js │ │ │ ├── 1236.7495ccc08957b0ec.js.map │ │ │ ├── 1244.479b2ebf71bab4e5.js │ │ │ ├── 1244.479b2ebf71bab4e5.js.LICENSE.txt │ │ │ ├── 1244.479b2ebf71bab4e5.js.map │ │ │ ├── 1285.d65cffca784bb9af.js │ │ │ ├── 1285.d65cffca784bb9af.js.map │ │ │ ├── 1442.4559b6261e356849.js │ │ │ ├── 1442.4559b6261e356849.js.map │ │ │ ├── 1477.aa80831c9f0c4257.js │ │ │ ├── 1477.aa80831c9f0c4257.js.map │ │ │ ├── 1533.c11cba73c9f06e34.js │ │ │ ├── 1533.c11cba73c9f06e34.js.LICENSE.txt │ │ │ ├── 1533.c11cba73c9f06e34.js.map │ │ │ ├── 1552.82d15d16af501c4d.js │ │ │ ├── 1552.82d15d16af501c4d.js.LICENSE.txt │ │ │ ├── 1552.82d15d16af501c4d.js.map │ │ │ ├── 166.f1a430d0b953db8b.js │ │ │ ├── 166.f1a430d0b953db8b.js.LICENSE.txt │ │ │ ├── 166.f1a430d0b953db8b.js.map │ │ │ ├── 1663.4461bc909c29671d.js │ │ │ ├── 1663.4461bc909c29671d.js.map │ │ │ ├── 170.4f38a07dc7aa96bd.js │ │ │ ├── 170.4f38a07dc7aa96bd.js.map │ │ │ ├── 1704.9ea8e814418dcff7.js │ │ │ ├── 1704.9ea8e814418dcff7.js.LICENSE.txt │ │ │ ├── 1704.9ea8e814418dcff7.js.map │ │ │ ├── 1720.6d333624d44753f9.js │ │ │ ├── 1720.6d333624d44753f9.js.map │ │ │ ├── 1722.df19d4f4a79d57bd.js │ │ │ ├── 1722.df19d4f4a79d57bd.js.map │ │ │ ├── 1728.735984b100e7d61c.js │ │ │ ├── 1728.735984b100e7d61c.js.map │ │ │ ├── 1744.979924bae95d62b8.js │ │ │ ├── 1744.979924bae95d62b8.js.map │ │ │ ├── 1774.6bf35c032c515568.js │ │ │ ├── 1774.6bf35c032c515568.js.LICENSE.txt │ │ │ ├── 1774.6bf35c032c515568.js.map │ │ │ ├── 1791.890b7fd3b6f22c69.js │ │ │ ├── 1791.890b7fd3b6f22c69.js.LICENSE.txt │ │ │ ├── 1791.890b7fd3b6f22c69.js.map │ │ │ ├── 1795.7945cfd8e2f82278.js │ │ │ ├── 1795.7945cfd8e2f82278.js.LICENSE.txt │ │ │ ├── 1795.7945cfd8e2f82278.js.map │ │ │ ├── 1808.eb4945177797b070.js │ │ │ ├── 1808.eb4945177797b070.js.LICENSE.txt │ │ │ ├── 1808.eb4945177797b070.js.map │ │ │ ├── 1838.5556ce78c03db558.js │ │ │ ├── 1838.5556ce78c03db558.js.LICENSE.txt │ │ │ ├── 1838.5556ce78c03db558.js.map │ │ │ ├── 1850.818cfda5d59ca4ce.js │ │ │ ├── 1850.818cfda5d59ca4ce.js.LICENSE.txt │ │ │ ├── 1850.818cfda5d59ca4ce.js.map │ │ │ ├── 1860.bdf22894764892e1.js │ │ │ ├── 1860.bdf22894764892e1.js.LICENSE.txt │ │ │ ├── 1860.bdf22894764892e1.js.map │ │ │ ├── 2017.28e73d2c6d8452da.js │ │ │ ├── 2017.28e73d2c6d8452da.js.map │ │ │ ├── 2052.563c626230530530.js │ │ │ ├── 2052.563c626230530530.js.map │ │ │ ├── 2076.9e7070aa0511ac47.js │ │ │ ├── 2076.9e7070aa0511ac47.js.LICENSE.txt │ │ │ ├── 2076.9e7070aa0511ac47.js.map │ │ │ ├── 210.8666be533132d97d.js │ │ │ ├── 210.8666be533132d97d.js.map │ │ │ ├── 2138.6315b70ad90032d9.js │ │ │ ├── 2138.6315b70ad90032d9.js.map │ │ │ ├── 2139.ecbf2c0b24456588.js │ │ │ ├── 2139.ecbf2c0b24456588.js.LICENSE.txt │ │ │ ├── 2139.ecbf2c0b24456588.js.map │ │ │ ├── 2142.a86a22d063d29ffe.js │ │ │ ├── 2142.a86a22d063d29ffe.js.map │ │ │ ├── 2174.c00338372d63d0c7.js │ │ │ ├── 2174.c00338372d63d0c7.js.LICENSE.txt │ │ │ ├── 2174.c00338372d63d0c7.js.map │ │ │ ├── 2206.343bb46d9b1e46cd.js │ │ │ ├── 2206.343bb46d9b1e46cd.js.map │ │ │ ├── 2309.de1b73f332471c37.js │ │ │ ├── 2309.de1b73f332471c37.js.map │ │ │ ├── 2311.7ae37f1abe7c4d6c.js │ │ │ ├── 2311.7ae37f1abe7c4d6c.js.LICENSE.txt │ │ │ ├── 2311.7ae37f1abe7c4d6c.js.map │ │ │ ├── 2324.bfd88837bc0cfea0.js │ │ │ ├── 2324.bfd88837bc0cfea0.js.LICENSE.txt │ │ │ ├── 2324.bfd88837bc0cfea0.js.map │ │ │ ├── 2474.117709c26e57fee1.js │ │ │ ├── 2474.117709c26e57fee1.js.LICENSE.txt │ │ │ ├── 2474.117709c26e57fee1.js.map │ │ │ ├── 251.30bbea1035d5468d.js │ │ │ ├── 251.30bbea1035d5468d.js.map │ │ │ ├── 2517.517a4eba8467a911.js │ │ │ ├── 2517.517a4eba8467a911.js.map │ │ │ ├── 2647.c429e247c752128a.js │ │ │ ├── 2647.c429e247c752128a.js.LICENSE.txt │ │ │ ├── 2647.c429e247c752128a.js.map │ │ │ ├── 2656.8e59ec97a96f51e4.js │ │ │ ├── 2656.8e59ec97a96f51e4.js.LICENSE.txt │ │ │ ├── 2656.8e59ec97a96f51e4.js.map │ │ │ ├── 2685.02559ac4065d147d.js │ │ │ ├── 2685.02559ac4065d147d.js.map │ │ │ ├── 2734.deec40fd5728a118.js │ │ │ ├── 2734.deec40fd5728a118.js.map │ │ │ ├── 2751.9a921a23062635bc.js │ │ │ ├── 2751.9a921a23062635bc.js.map │ │ │ ├── 279.c8939e97d9cf1f24.js │ │ │ ├── 279.c8939e97d9cf1f24.js.map │ │ │ ├── 2831.f1b6e847444f5d27.js │ │ │ ├── 2831.f1b6e847444f5d27.js.LICENSE.txt │ │ │ ├── 2831.f1b6e847444f5d27.js.map │ │ │ ├── 2845.fcd75890b4b5b08f.js │ │ │ ├── 2845.fcd75890b4b5b08f.js.LICENSE.txt │ │ │ ├── 2845.fcd75890b4b5b08f.js.map │ │ │ ├── 2999.e60e0d2e74a9ad7a.js │ │ │ ├── 2999.e60e0d2e74a9ad7a.js.map │ │ │ ├── 3032.a7df6476918888f4.js │ │ │ ├── 3032.a7df6476918888f4.js.map │ │ │ ├── 3037.0359bdfffafabf69.js │ │ │ ├── 3037.0359bdfffafabf69.js.map │ │ │ ├── 3086.2a6a408a7c5add26.js │ │ │ ├── 3086.2a6a408a7c5add26.js.map │ │ │ ├── 3139.2694e35d1297ef1d.js │ │ │ ├── 3139.2694e35d1297ef1d.js.LICENSE.txt │ │ │ ├── 3139.2694e35d1297ef1d.js.map │ │ │ ├── 3150.4d72a7e44cc69d49.js │ │ │ ├── 3150.4d72a7e44cc69d49.js.map │ │ │ ├── 317.f68c9ee0fa8b6137.js │ │ │ ├── 317.f68c9ee0fa8b6137.js.map │ │ │ ├── 3185.890f9853fc0eb131.js │ │ │ ├── 3185.890f9853fc0eb131.js.map │ │ │ ├── 3215.969eb6f05c62768f.js │ │ │ ├── 3215.969eb6f05c62768f.js.LICENSE.txt │ │ │ ├── 3215.969eb6f05c62768f.js.map │ │ │ ├── 3289.2b047b3d0c8efa8e.js │ │ │ ├── 3289.2b047b3d0c8efa8e.js.map │ │ │ ├── 3324.7b83c285ab2de225.js │ │ │ ├── 3324.7b83c285ab2de225.js.map │ │ │ ├── 3377.4998c731a53945b0.js │ │ │ ├── 3378.412d15b1c7fa9786.js │ │ │ ├── 3378.412d15b1c7fa9786.js.LICENSE.txt │ │ │ ├── 3378.412d15b1c7fa9786.js.map │ │ │ ├── 3393.53698d8bbf5982df.js │ │ │ ├── 3393.53698d8bbf5982df.js.map │ │ │ ├── 3424.ff47255dfb5f5e87.js │ │ │ ├── 3424.ff47255dfb5f5e87.js.LICENSE.txt │ │ │ ├── 3424.ff47255dfb5f5e87.js.map │ │ │ ├── 3438.7cd533b5f0a5f1d4.js │ │ │ ├── 3438.7cd533b5f0a5f1d4.js.LICENSE.txt │ │ │ ├── 3438.7cd533b5f0a5f1d4.js.map │ │ │ ├── 3457.810337cab3b17a68.js │ │ │ ├── 3457.810337cab3b17a68.js.map │ │ │ ├── 348.c607fd7aedea2c0b.js │ │ │ ├── 351.7a00263b380dde22.js │ │ │ ├── 351.7a00263b380dde22.js.LICENSE.txt │ │ │ ├── 351.7a00263b380dde22.js.map │ │ │ ├── 356.9b4e9765710e935a.js │ │ │ ├── 356.9b4e9765710e935a.js.LICENSE.txt │ │ │ ├── 356.9b4e9765710e935a.js.map │ │ │ ├── 3649.baddc2b0ee396ddf.js │ │ │ ├── 3649.baddc2b0ee396ddf.js.map │ │ │ ├── 3666.6ee414b96e79b305.js │ │ │ ├── 3666.6ee414b96e79b305.js.map │ │ │ ├── 3693.fbee9446e8dd9def.js │ │ │ ├── 3693.fbee9446e8dd9def.js.map │ │ │ ├── 3732.d14286b04558ef66.js │ │ │ ├── 3732.d14286b04558ef66.js.map │ │ │ ├── 3760.0e163a9cfcb8aa67.js │ │ │ ├── 3760.0e163a9cfcb8aa67.js.map │ │ │ ├── 3854.307f64bd143fc5ef.js │ │ │ ├── 3854.307f64bd143fc5ef.js.map │ │ │ ├── 3870.83c4550b5a7f6f07.js │ │ │ ├── 3870.83c4550b5a7f6f07.js.map │ │ │ ├── 3943.58c92e15d1f8db09.js │ │ │ ├── 3943.58c92e15d1f8db09.js.map │ │ │ ├── 403.0d000cf8c06ff9dd.js │ │ │ ├── 403.0d000cf8c06ff9dd.js.LICENSE.txt │ │ │ ├── 403.0d000cf8c06ff9dd.js.map │ │ │ ├── 4044.186f47483a65ba61.js │ │ │ ├── 4044.186f47483a65ba61.js.map │ │ │ ├── 4153.2ee4e8d4fb9c671d.js │ │ │ ├── 4153.2ee4e8d4fb9c671d.js.LICENSE.txt │ │ │ ├── 4153.2ee4e8d4fb9c671d.js.map │ │ │ ├── 4176.55aa49d5946ee430.js │ │ │ ├── 4176.55aa49d5946ee430.js.map │ │ │ ├── 4224.0ebbcba3075c5a78.js │ │ │ ├── 4224.0ebbcba3075c5a78.js.map │ │ │ ├── 4271.c079ca42d28f5292.js │ │ │ ├── 4271.c079ca42d28f5292.js.LICENSE.txt │ │ │ ├── 4271.c079ca42d28f5292.js.map │ │ │ ├── 4284.4ef3b79ec7895330.js │ │ │ ├── 4284.4ef3b79ec7895330.js.map │ │ │ ├── 4320.236bbf6109cda268.js │ │ │ ├── 4320.236bbf6109cda268.js.LICENSE.txt │ │ │ ├── 4320.236bbf6109cda268.js.map │ │ │ ├── 4351.7d579113d043650d.js │ │ │ ├── 4351.7d579113d043650d.js.map │ │ │ ├── 44.fe8835886ccd8d13.js │ │ │ ├── 44.fe8835886ccd8d13.js.LICENSE.txt │ │ │ ├── 44.fe8835886ccd8d13.js.map │ │ │ ├── 4404.2cd5761b2b3113e7.js │ │ │ ├── 4404.2cd5761b2b3113e7.js.LICENSE.txt │ │ │ ├── 4404.2cd5761b2b3113e7.js.map │ │ │ ├── 4418.203bf95ffa979ffe.js │ │ │ ├── 4418.203bf95ffa979ffe.js.map │ │ │ ├── 4608.1486afd546c8bac9.js │ │ │ ├── 4608.1486afd546c8bac9.js.map │ │ │ ├── 4645.4f7adfb9d85577be.js │ │ │ ├── 4645.4f7adfb9d85577be.js.map │ │ │ ├── 4663.9598f6b2aff26c16.js │ │ │ ├── 4663.9598f6b2aff26c16.js.map │ │ │ ├── 4768.6f033cd71a81cd6e.js │ │ │ ├── 4768.6f033cd71a81cd6e.js.map │ │ │ ├── 4913.a92f9cc018b535e1.js │ │ │ ├── 4913.a92f9cc018b535e1.js.map │ │ │ ├── 5002.4db5879d5a471d85.js │ │ │ ├── 5002.4db5879d5a471d85.js.map │ │ │ ├── 5010.6e2e18bdf6245cce.js │ │ │ ├── 5010.6e2e18bdf6245cce.js.map │ │ │ ├── 5012.613543bba435af3f.js │ │ │ ├── 5012.613543bba435af3f.js.map │ │ │ ├── 503.17289136c3839fa0.js │ │ │ ├── 503.17289136c3839fa0.js.LICENSE.txt │ │ │ ├── 503.17289136c3839fa0.js.map │ │ │ ├── 5045.a4d2983f1660a8c1.js │ │ │ ├── 5045.a4d2983f1660a8c1.js.LICENSE.txt │ │ │ ├── 5045.a4d2983f1660a8c1.js.map │ │ │ ├── 5058.7beee22d01d581b5.js │ │ │ ├── 5058.7beee22d01d581b5.js.map │ │ │ ├── 5081.61de1d87944ee205.js │ │ │ ├── 5081.61de1d87944ee205.js.LICENSE.txt │ │ │ ├── 5081.61de1d87944ee205.js.map │ │ │ ├── 5125.db81ad985a2463f5.js │ │ │ ├── 5125.db81ad985a2463f5.js.LICENSE.txt │ │ │ ├── 5125.db81ad985a2463f5.js.map │ │ │ ├── 513.b6c10c75ea30f2f3.js │ │ │ ├── 513.b6c10c75ea30f2f3.js.LICENSE.txt │ │ │ ├── 513.b6c10c75ea30f2f3.js.map │ │ │ ├── 517.1e4aab0bf86a974e.js │ │ │ ├── 517.1e4aab0bf86a974e.js.LICENSE.txt │ │ │ ├── 517.1e4aab0bf86a974e.js.map │ │ │ ├── 5213.a705b27cbd85e83b.js │ │ │ ├── 5213.a705b27cbd85e83b.js.LICENSE.txt │ │ │ ├── 5213.a705b27cbd85e83b.js.map │ │ │ ├── 522.ad28b3652490822b.js │ │ │ ├── 522.ad28b3652490822b.js.map │ │ │ ├── 5220.f7c946e09b27b9f7.js │ │ │ ├── 5220.f7c946e09b27b9f7.js.LICENSE.txt │ │ │ ├── 5220.f7c946e09b27b9f7.js.map │ │ │ ├── 5287.45f2561725748047.js │ │ │ ├── 5287.45f2561725748047.js.map │ │ │ ├── 5291.c5f951d35f5fdf3f.js │ │ │ ├── 5291.c5f951d35f5fdf3f.js.map │ │ │ ├── 5371.5e474f0be9ee2a68.js │ │ │ ├── 5371.5e474f0be9ee2a68.js.map │ │ │ ├── 538.3a10cc9dece49092.js │ │ │ ├── 538.3a10cc9dece49092.js.map │ │ │ ├── 5385.507031145c8c6e16.js │ │ │ ├── 5385.507031145c8c6e16.js.LICENSE.txt │ │ │ ├── 5385.507031145c8c6e16.js.map │ │ │ ├── 5456.e3cbb2db6a49e2d4.js │ │ │ ├── 5456.e3cbb2db6a49e2d4.js.map │ │ │ ├── 5536.8d4f57637b4c69ae.js │ │ │ ├── 5536.8d4f57637b4c69ae.js.map │ │ │ ├── 5578.9fa3d7cab46bae53.js │ │ │ ├── 5578.9fa3d7cab46bae53.js.map │ │ │ ├── 5624.7412d4b8fe54f98f.js │ │ │ ├── 5624.7412d4b8fe54f98f.js.LICENSE.txt │ │ │ ├── 5624.7412d4b8fe54f98f.js.map │ │ │ ├── 5727.47a288761ab6036c.js │ │ │ ├── 5727.47a288761ab6036c.js.LICENSE.txt │ │ │ ├── 5727.47a288761ab6036c.js.map │ │ │ ├── 5766.e7baf78361b168a9.js │ │ │ ├── 5766.e7baf78361b168a9.js.LICENSE.txt │ │ │ ├── 5766.e7baf78361b168a9.js.map │ │ │ ├── 5828.d4fcd874c8c8da73.js │ │ │ ├── 5828.d4fcd874c8c8da73.js.map │ │ │ ├── 5832.26ac31e47118bd72.js │ │ │ ├── 5832.26ac31e47118bd72.js.map │ │ │ ├── 5842.482934e710323549.js │ │ │ ├── 5842.482934e710323549.js.LICENSE.txt │ │ │ ├── 5842.482934e710323549.js.map │ │ │ ├── 5864.155e6c0328dd33b2.js │ │ │ ├── 5864.155e6c0328dd33b2.js.map │ │ │ ├── 5903.b43169fcf4f6049c.js │ │ │ ├── 5903.b43169fcf4f6049c.js.LICENSE.txt │ │ │ ├── 5903.b43169fcf4f6049c.js.map │ │ │ ├── 592.10dec65abdf3c6d7.js │ │ │ ├── 592.10dec65abdf3c6d7.js.map │ │ │ ├── 5958.506980d122357a76.js │ │ │ ├── 5958.506980d122357a76.js.map │ │ │ ├── 6090.50949aed72f95e13.js │ │ │ ├── 6090.50949aed72f95e13.js.map │ │ │ ├── 6091.f86cff4b4c3dad96.js │ │ │ ├── 6091.f86cff4b4c3dad96.js.map │ │ │ ├── 6095.e42cdb4c696c613a.js │ │ │ ├── 6095.e42cdb4c696c613a.js.map │ │ │ ├── 6140.9626f227efe12869.js │ │ │ ├── 6140.9626f227efe12869.js.LICENSE.txt │ │ │ ├── 6140.9626f227efe12869.js.map │ │ │ ├── 6160.7cb803c1eda3f9e6.js │ │ │ ├── 6160.7cb803c1eda3f9e6.js.map │ │ │ ├── 6216.287fbf0604641504.js │ │ │ ├── 6216.287fbf0604641504.js.LICENSE.txt │ │ │ ├── 6216.287fbf0604641504.js.map │ │ │ ├── 6239.8fa5032f8945802a.js │ │ │ ├── 6239.8fa5032f8945802a.js.LICENSE.txt │ │ │ ├── 6239.8fa5032f8945802a.js.map │ │ │ ├── 6335.ae9847a4a6191ba6.js │ │ │ ├── 6335.ae9847a4a6191ba6.js.map │ │ │ ├── 6379.e9f256442159fbb9.js │ │ │ ├── 6379.e9f256442159fbb9.js.LICENSE.txt │ │ │ ├── 6379.e9f256442159fbb9.js.map │ │ │ ├── 6385.2e4f3517f6dd6d7c.js │ │ │ ├── 6385.2e4f3517f6dd6d7c.js.LICENSE.txt │ │ │ ├── 6385.2e4f3517f6dd6d7c.js.map │ │ │ ├── 6426.78778085a2463f48.js │ │ │ ├── 6426.78778085a2463f48.js.LICENSE.txt │ │ │ ├── 6426.78778085a2463f48.js.map │ │ │ ├── 6438.642d3e92dd54f094.js │ │ │ ├── 6438.642d3e92dd54f094.js.map │ │ │ ├── 6457.b927844cda5e3887.js │ │ │ ├── 6457.b927844cda5e3887.js.map │ │ │ ├── 6461.3fe926df3e81b768.js │ │ │ ├── 6461.3fe926df3e81b768.js.LICENSE.txt │ │ │ ├── 6461.3fe926df3e81b768.js.map │ │ │ ├── 6470.8a5edc36111e389f.js │ │ │ ├── 6470.8a5edc36111e389f.js.map │ │ │ ├── 6475.7fcf4b51149a1087.js │ │ │ ├── 6475.7fcf4b51149a1087.js.map │ │ │ ├── 6486.aa48fba9f3610f77.js │ │ │ ├── 6486.aa48fba9f3610f77.js.LICENSE.txt │ │ │ ├── 6486.aa48fba9f3610f77.js.map │ │ │ ├── 6528.fb5368dbf955b65a.js │ │ │ ├── 6528.fb5368dbf955b65a.js.map │ │ │ ├── 6634.a3ae4e02310bec6d.js │ │ │ ├── 6634.a3ae4e02310bec6d.js.map │ │ │ ├── 6658.785225c950d85d50.js │ │ │ ├── 6658.785225c950d85d50.js.LICENSE.txt │ │ │ ├── 6658.785225c950d85d50.js.map │ │ │ ├── 669.bf467f9fedb637ee.js │ │ │ ├── 669.bf467f9fedb637ee.js.map │ │ │ ├── 6718.fa96d02f149aeff0.js │ │ │ ├── 6718.fa96d02f149aeff0.js.map │ │ │ ├── 6733.70bf4d405f06a236.js │ │ │ ├── 6733.70bf4d405f06a236.js.LICENSE.txt │ │ │ ├── 6733.70bf4d405f06a236.js.map │ │ │ ├── 6752.8b9af4482e4cf2ce.js │ │ │ ├── 6752.8b9af4482e4cf2ce.js.map │ │ │ ├── 6798.1b9de9ae35dddade.js │ │ │ ├── 6798.1b9de9ae35dddade.js.LICENSE.txt │ │ │ ├── 6798.1b9de9ae35dddade.js.map │ │ │ ├── 680.8b74a7da6be4d856.js │ │ │ ├── 680.8b74a7da6be4d856.js.map │ │ │ ├── 6832.1b09a73e83abfde7.js │ │ │ ├── 6832.1b09a73e83abfde7.js.LICENSE.txt │ │ │ ├── 6832.1b09a73e83abfde7.js.map │ │ │ ├── 6849.67a25cf9d61de63b.js │ │ │ ├── 6849.67a25cf9d61de63b.js.LICENSE.txt │ │ │ ├── 6849.67a25cf9d61de63b.js.map │ │ │ ├── 686.c3a97fc5f4ec6080.js │ │ │ ├── 686.c3a97fc5f4ec6080.js.LICENSE.txt │ │ │ ├── 686.c3a97fc5f4ec6080.js.map │ │ │ ├── 6898.c31d641e0f028511.js │ │ │ ├── 6898.c31d641e0f028511.js.LICENSE.txt │ │ │ ├── 6898.c31d641e0f028511.js.map │ │ │ ├── 6931.6e4eddca80c27864.js │ │ │ ├── 6931.6e4eddca80c27864.js.LICENSE.txt │ │ │ ├── 6931.6e4eddca80c27864.js.map │ │ │ ├── 6949.8d28cc79dded633b.js │ │ │ ├── 6949.8d28cc79dded633b.js.map │ │ │ ├── 70.f34eebe4106cb0f3.js │ │ │ ├── 70.f34eebe4106cb0f3.js.map │ │ │ ├── 7014.a602945490de7535.js │ │ │ ├── 7014.a602945490de7535.js.LICENSE.txt │ │ │ ├── 7014.a602945490de7535.js.map │ │ │ ├── 7025.8f4facd9c58bcbfb.js │ │ │ ├── 7025.8f4facd9c58bcbfb.js.map │ │ │ ├── 7066.65c27bd9a3b02295.js │ │ │ ├── 7066.65c27bd9a3b02295.js.LICENSE.txt │ │ │ ├── 7066.65c27bd9a3b02295.js.map │ │ │ ├── 7087.805871140ad1654d.js │ │ │ ├── 7087.805871140ad1654d.js.map │ │ │ ├── 7097.0214356a54556579.js │ │ │ ├── 7097.0214356a54556579.js.map │ │ │ ├── 711.0a6c06dacf1da563.js │ │ │ ├── 711.0a6c06dacf1da563.js.map │ │ │ ├── 7110.b4da8d26c7ae6dba.js │ │ │ ├── 7110.b4da8d26c7ae6dba.js.map │ │ │ ├── 7232.d83027244cf9007c.js │ │ │ ├── 7232.d83027244cf9007c.js.map │ │ │ ├── 7260.fe99b13811773a01.js │ │ │ ├── 7260.fe99b13811773a01.js.LICENSE.txt │ │ │ ├── 7260.fe99b13811773a01.js.map │ │ │ ├── 7355.6c9df32dda911f8e.js │ │ │ ├── 7355.6c9df32dda911f8e.js.LICENSE.txt │ │ │ ├── 7355.6c9df32dda911f8e.js.map │ │ │ ├── 7377.bd5681b49918de07.js │ │ │ ├── 7377.bd5681b49918de07.js.map │ │ │ ├── 7418.1549720fcd8397ba.js │ │ │ ├── 7418.1549720fcd8397ba.js.map │ │ │ ├── 7420.12d2c42216835a94.js │ │ │ ├── 7420.12d2c42216835a94.js.LICENSE.txt │ │ │ ├── 7420.12d2c42216835a94.js.map │ │ │ ├── 7463.9dec58eb4307bef7.js │ │ │ ├── 7463.9dec58eb4307bef7.js.LICENSE.txt │ │ │ ├── 7463.9dec58eb4307bef7.js.map │ │ │ ├── 7468.ff47869764fc7b7d.js │ │ │ ├── 7468.ff47869764fc7b7d.js.LICENSE.txt │ │ │ ├── 7468.ff47869764fc7b7d.js.map │ │ │ ├── 7533.fb609dbc805a99fa.js │ │ │ ├── 7533.fb609dbc805a99fa.js.map │ │ │ ├── 7599.e7cce5aee6a28ba5.js │ │ │ ├── 7599.e7cce5aee6a28ba5.js.map │ │ │ ├── 7615.d167dcef2bfd491f.js │ │ │ ├── 7615.d167dcef2bfd491f.js.map │ │ │ ├── 7670.84aef87315163e8a.js │ │ │ ├── 7670.84aef87315163e8a.js.LICENSE.txt │ │ │ ├── 7670.84aef87315163e8a.js.map │ │ │ ├── 7677.642aff298d7ea9ae.js │ │ │ ├── 7677.642aff298d7ea9ae.js.map │ │ │ ├── 7796.fbee205e27553641.js │ │ │ ├── 7796.fbee205e27553641.js.LICENSE.txt │ │ │ ├── 7796.fbee205e27553641.js.map │ │ │ ├── 7934.09c8bdafa66b7a17.js │ │ │ ├── 7934.09c8bdafa66b7a17.js.map │ │ │ ├── 7996.f8538ccebd4c33f8.js │ │ │ ├── 7996.f8538ccebd4c33f8.js.map │ │ │ ├── 7999.f87a524f64d66d08.js │ │ │ ├── 7999.f87a524f64d66d08.js.map │ │ │ ├── 8006.5dbd0c479e0faba6.js │ │ │ ├── 8006.5dbd0c479e0faba6.js.LICENSE.txt │ │ │ ├── 8006.5dbd0c479e0faba6.js.map │ │ │ ├── 8063.4e9488b646c8b2aa.js │ │ │ ├── 8063.4e9488b646c8b2aa.js.map │ │ │ ├── 811.d55b7edf272aa503.js │ │ │ ├── 811.d55b7edf272aa503.js.map │ │ │ ├── 8193.7eb3acb578965d68.js │ │ │ ├── 8193.7eb3acb578965d68.js.map │ │ │ ├── 8245.15620372e37fab10.js │ │ │ ├── 8245.15620372e37fab10.js.map │ │ │ ├── 8250.59b632c89d32c980.js │ │ │ ├── 8250.59b632c89d32c980.js.map │ │ │ ├── 8373.79a74859fd2da10a.js │ │ │ ├── 8373.79a74859fd2da10a.js.LICENSE.txt │ │ │ ├── 8373.79a74859fd2da10a.js.map │ │ │ ├── 8437.c780fdf265eb3f6b.js │ │ │ ├── 8437.c780fdf265eb3f6b.js.map │ │ │ ├── 8456.930291a579a419ba.js │ │ │ ├── 8456.930291a579a419ba.js.map │ │ │ ├── 8483.fc82bbb480e703f5.js │ │ │ ├── 8483.fc82bbb480e703f5.js.LICENSE.txt │ │ │ ├── 8483.fc82bbb480e703f5.js.map │ │ │ ├── 8504.4e34b5fde329a350.js │ │ │ ├── 8504.4e34b5fde329a350.js.LICENSE.txt │ │ │ ├── 8504.4e34b5fde329a350.js.map │ │ │ ├── 852.32aa291e86cd2cae.js │ │ │ ├── 852.32aa291e86cd2cae.js.map │ │ │ ├── 8660.76cebd15df0ddf4c.js │ │ │ ├── 8660.76cebd15df0ddf4c.js.map │ │ │ ├── 868.37b5170140099330.js │ │ │ ├── 868.37b5170140099330.js.map │ │ │ ├── 8713.824670ba7be04b35.js │ │ │ ├── 8713.824670ba7be04b35.js.map │ │ │ ├── 8714.a64ea91c14dc872e.js │ │ │ ├── 8714.a64ea91c14dc872e.js.map │ │ │ ├── 8770.b226cf645367289b.js │ │ │ ├── 8770.b226cf645367289b.js.map │ │ │ ├── 8795.902b4eb4f35d88d5.js │ │ │ ├── 8795.902b4eb4f35d88d5.js.LICENSE.txt │ │ │ ├── 8795.902b4eb4f35d88d5.js.map │ │ │ ├── 8833.9c80051becafe524.js │ │ │ ├── 8833.9c80051becafe524.js.LICENSE.txt │ │ │ ├── 8833.9c80051becafe524.js.map │ │ │ ├── 886.ad98e0d0d6a3c853.js │ │ │ ├── 886.ad98e0d0d6a3c853.js.map │ │ │ ├── 9009.db9db3591c1c285a.js │ │ │ ├── 9009.db9db3591c1c285a.js.map │ │ │ ├── 903.21418d0ad8412d0e.js │ │ │ ├── 903.21418d0ad8412d0e.js.map │ │ │ ├── 9045.c53528c5b41f7eaa.js │ │ │ ├── 9045.c53528c5b41f7eaa.js.LICENSE.txt │ │ │ ├── 9045.c53528c5b41f7eaa.js.map │ │ │ ├── 9153.23b2ce11c787e873.js │ │ │ ├── 9153.23b2ce11c787e873.js.LICENSE.txt │ │ │ ├── 9153.23b2ce11c787e873.js.map │ │ │ ├── 9204.98ec7890b885e1f3.js │ │ │ ├── 9204.98ec7890b885e1f3.js.LICENSE.txt │ │ │ ├── 9204.98ec7890b885e1f3.js.map │ │ │ ├── 925.9a47944293b4125d.js │ │ │ ├── 925.9a47944293b4125d.js.LICENSE.txt │ │ │ ├── 925.9a47944293b4125d.js.map │ │ │ ├── 9285.3f966410eab53641.js │ │ │ ├── 9285.3f966410eab53641.js.map │ │ │ ├── 9329.9ebd60a8f296a5ee.js │ │ │ ├── 9329.9ebd60a8f296a5ee.js.map │ │ │ ├── 9336.d57f3c0304b97e6a.js │ │ │ ├── 9336.d57f3c0304b97e6a.js.map │ │ │ ├── 9358.be348fe29479bf6d.js │ │ │ ├── 9358.be348fe29479bf6d.js.map │ │ │ ├── 9375.57088033c5665bd2.js │ │ │ ├── 9375.57088033c5665bd2.js.map │ │ │ ├── 9404.980380ace6e522a8.js │ │ │ ├── 9404.980380ace6e522a8.js.map │ │ │ ├── 9419.e36b687b07ebc665.js │ │ │ ├── 9419.e36b687b07ebc665.js.map │ │ │ ├── 9452.545f7feca8221863.js │ │ │ ├── 9452.545f7feca8221863.js.map │ │ │ ├── 9456.2afb590a050e2146.js │ │ │ ├── 9456.2afb590a050e2146.js.map │ │ │ ├── 9519.91e6be5d6bd4d1dc.js │ │ │ ├── 9519.91e6be5d6bd4d1dc.js.LICENSE.txt │ │ │ ├── 9519.91e6be5d6bd4d1dc.js.map │ │ │ ├── 9525.2cfb585865879fff.js │ │ │ ├── 9525.2cfb585865879fff.js.map │ │ │ ├── 9570.b8c2a4c8a9c977b8.js │ │ │ ├── 9570.b8c2a4c8a9c977b8.js.LICENSE.txt │ │ │ ├── 9570.b8c2a4c8a9c977b8.js.map │ │ │ ├── 9645.0b9fa3dea559f285.js │ │ │ ├── 9645.0b9fa3dea559f285.js.LICENSE.txt │ │ │ ├── 9645.0b9fa3dea559f285.js.map │ │ │ ├── 965.c332f0d6284c07ae.js │ │ │ ├── 965.c332f0d6284c07ae.js.LICENSE.txt │ │ │ ├── 965.c332f0d6284c07ae.js.map │ │ │ ├── 9699.bac6c6409ac32197.js │ │ │ ├── 9699.bac6c6409ac32197.js.map │ │ │ ├── 9752.34a37d6adb8e9e6e.js │ │ │ ├── 9752.34a37d6adb8e9e6e.js.map │ │ │ ├── 9789.5b1146bc65dcfc08.js │ │ │ ├── 9789.5b1146bc65dcfc08.js.map │ │ │ ├── 9794.ac724951b2f6163d.js │ │ │ ├── 9794.ac724951b2f6163d.js.LICENSE.txt │ │ │ ├── 9794.ac724951b2f6163d.js.map │ │ │ ├── 9823.f563060692862b76.js │ │ │ ├── 9823.f563060692862b76.js.map │ │ │ ├── 9826.3e8bb40c041fe030.js │ │ │ ├── 9826.3e8bb40c041fe030.js.map │ │ │ ├── 9840.cd864a7f4ea72211.js │ │ │ ├── 9840.cd864a7f4ea72211.js.LICENSE.txt │ │ │ ├── 9840.cd864a7f4ea72211.js.map │ │ │ ├── 9857.f4e9bcbf68896d0b.js │ │ │ ├── 9857.f4e9bcbf68896d0b.js.map │ │ │ ├── 989.1003268b838197b0.js │ │ │ ├── 989.1003268b838197b0.js.LICENSE.txt │ │ │ ├── 989.1003268b838197b0.js.map │ │ │ ├── 9904.7253f889fdaf283b.js │ │ │ ├── 9904.7253f889fdaf283b.js.LICENSE.txt │ │ │ ├── 9904.7253f889fdaf283b.js.map │ │ │ ├── 9965.cd0a1cdfb04aa39b.js │ │ │ ├── 9965.cd0a1cdfb04aa39b.js.map │ │ │ ├── entrypoint.c180d0b256f9b6d0.js │ │ │ ├── entrypoint.c180d0b256f9b6d0.js.LICENSE.txt │ │ │ ├── entrypoint.c180d0b256f9b6d0.js.map │ │ │ ├── extra.5b474fd28ce35f7e.js │ │ │ ├── extra.5b474fd28ce35f7e.js.map │ │ │ ├── manifest.json │ │ │ ├── markdown-worker.53a9706e9713d4e5.js │ │ │ ├── markdown-worker.53a9706e9713d4e5.js.map │ │ │ ├── recorder-worklet.ec8165ca85126606.js │ │ │ ├── recorder-worklet.ec8165ca85126606.js.map │ │ │ ├── sort-filter-worker.0b083050ecc47a37.js │ │ │ └── sort-filter-worker.0b083050ecc47a37.js.map │ │ ├── frontend_latest │ │ │ ├── 1026.876351c79ebf2d1a.js │ │ │ ├── 1026.876351c79ebf2d1a.js.LICENSE.txt │ │ │ ├── 1026.876351c79ebf2d1a.js.map │ │ │ ├── 1117.4a5305eb6e7fdca3.js │ │ │ ├── 1117.4a5305eb6e7fdca3.js.map │ │ │ ├── 1160.ad98ce35e3b5bf5b.js │ │ │ ├── 1160.ad98ce35e3b5bf5b.js.LICENSE.txt │ │ │ ├── 1160.ad98ce35e3b5bf5b.js.map │ │ │ ├── 1162.dfc24b3e89b825d2.js │ │ │ ├── 1162.dfc24b3e89b825d2.js.map │ │ │ ├── 1176.8a2264f8681ce85b.js │ │ │ ├── 1176.8a2264f8681ce85b.js.map │ │ │ ├── 1206.1067358199858599.js │ │ │ ├── 1206.1067358199858599.js.map │ │ │ ├── 1236.e218249bc0d4b047.js │ │ │ ├── 1236.e218249bc0d4b047.js.map │ │ │ ├── 1244.e67e8a4b61e2436d.js │ │ │ ├── 1244.e67e8a4b61e2436d.js.LICENSE.txt │ │ │ ├── 1244.e67e8a4b61e2436d.js.map │ │ │ ├── 1285.14d2e17eaeee0f9a.js │ │ │ ├── 1285.14d2e17eaeee0f9a.js.map │ │ │ ├── 1442.6784f9eadbf15d0e.js │ │ │ ├── 1442.6784f9eadbf15d0e.js.map │ │ │ ├── 1447.1c0e4244aedad5d9.js │ │ │ ├── 1447.1c0e4244aedad5d9.js.LICENSE.txt │ │ │ ├── 1447.1c0e4244aedad5d9.js.map │ │ │ ├── 1552.6d9fcd287e8aaf9b.js │ │ │ ├── 1552.6d9fcd287e8aaf9b.js.LICENSE.txt │ │ │ ├── 1552.6d9fcd287e8aaf9b.js.map │ │ │ ├── 170.35516d3f5806f7b5.js │ │ │ ├── 170.35516d3f5806f7b5.js.map │ │ │ ├── 172.f5ba6b7dcddd98b0.js │ │ │ ├── 172.f5ba6b7dcddd98b0.js.map │ │ │ ├── 1720.c546e35fb9827d19.js │ │ │ ├── 1720.c546e35fb9827d19.js.map │ │ │ ├── 1722.cc0d39edb5b07410.js │ │ │ ├── 1722.cc0d39edb5b07410.js.map │ │ │ ├── 1744.7e49f6efa6d83876.js │ │ │ ├── 1744.7e49f6efa6d83876.js.map │ │ │ ├── 1854.f49891761050f15f.js │ │ │ ├── 1854.f49891761050f15f.js.map │ │ │ ├── 1860.dba4c52605fe71b7.js │ │ │ ├── 1860.dba4c52605fe71b7.js.LICENSE.txt │ │ │ ├── 1860.dba4c52605fe71b7.js.map │ │ │ ├── 1893.07818c5925424d51.js │ │ │ ├── 1893.07818c5925424d51.js.map │ │ │ ├── 2005.5a87cf2e5caac608.js │ │ │ ├── 2005.5a87cf2e5caac608.js.LICENSE.txt │ │ │ ├── 2005.5a87cf2e5caac608.js.map │ │ │ ├── 2017.3b91c1e509ec1989.js │ │ │ ├── 2017.3b91c1e509ec1989.js.map │ │ │ ├── 2052.e98198118326bb81.js │ │ │ ├── 2052.e98198118326bb81.js.map │ │ │ ├── 2072.40f454d1e46c19a9.js │ │ │ ├── 2072.40f454d1e46c19a9.js.LICENSE.txt │ │ │ ├── 2072.40f454d1e46c19a9.js.map │ │ │ ├── 210.4ff46cf367d3384f.js │ │ │ ├── 210.4ff46cf367d3384f.js.map │ │ │ ├── 2116.a161ee428a94cc8e.js │ │ │ ├── 2116.a161ee428a94cc8e.js.map │ │ │ ├── 2139.59f1fb21818dd88d.js │ │ │ ├── 2139.59f1fb21818dd88d.js.LICENSE.txt │ │ │ ├── 2139.59f1fb21818dd88d.js.map │ │ │ ├── 2142.c822278fde8685e3.js │ │ │ ├── 2142.c822278fde8685e3.js.map │ │ │ ├── 2146.35f89392374ec851.js │ │ │ ├── 2146.35f89392374ec851.js.LICENSE.txt │ │ │ ├── 2146.35f89392374ec851.js.map │ │ │ ├── 2174.ae4cb061d00fc16b.js │ │ │ ├── 2174.ae4cb061d00fc16b.js.LICENSE.txt │ │ │ ├── 2174.ae4cb061d00fc16b.js.map │ │ │ ├── 2206.abeadab01f275d5a.js │ │ │ ├── 2206.abeadab01f275d5a.js.map │ │ │ ├── 2309.ef73237602086aa0.js │ │ │ ├── 2309.ef73237602086aa0.js.map │ │ │ ├── 2386.94ee5a128cf97e51.js │ │ │ ├── 2386.94ee5a128cf97e51.js.LICENSE.txt │ │ │ ├── 2386.94ee5a128cf97e51.js.map │ │ │ ├── 2407.0671320534a522d0.js │ │ │ ├── 2407.0671320534a522d0.js.LICENSE.txt │ │ │ ├── 2407.0671320534a522d0.js.map │ │ │ ├── 2469.ba0f04ae5da57b46.js │ │ │ ├── 2469.ba0f04ae5da57b46.js.map │ │ │ ├── 251.7eb33b5c626071cf.js │ │ │ ├── 251.7eb33b5c626071cf.js.map │ │ │ ├── 2517.5be973290b68de67.js │ │ │ ├── 2517.5be973290b68de67.js.map │ │ │ ├── 2685.e875eb39d25eaaba.js │ │ │ ├── 2685.e875eb39d25eaaba.js.map │ │ │ ├── 2734.ac328d44dbbfbe66.js │ │ │ ├── 2734.ac328d44dbbfbe66.js.map │ │ │ ├── 2751.d9601c3dd33ce385.js │ │ │ ├── 2751.d9601c3dd33ce385.js.map │ │ │ ├── 2831.38221ccba3bbdab2.js │ │ │ ├── 2831.38221ccba3bbdab2.js.LICENSE.txt │ │ │ ├── 2831.38221ccba3bbdab2.js.map │ │ │ ├── 2973.4ab555e8e4a47d67.js │ │ │ ├── 2973.4ab555e8e4a47d67.js.map │ │ │ ├── 3032.348dba6b2739d736.js │ │ │ ├── 3032.348dba6b2739d736.js.map │ │ │ ├── 3037.01efb0b7cb535c3b.js │ │ │ ├── 3037.01efb0b7cb535c3b.js.map │ │ │ ├── 3071.ca95a15c0b242b57.js │ │ │ ├── 3071.ca95a15c0b242b57.js.LICENSE.txt │ │ │ ├── 3071.ca95a15c0b242b57.js.map │ │ │ ├── 3086.6bedd87c100ebf05.js │ │ │ ├── 3086.6bedd87c100ebf05.js.map │ │ │ ├── 3139.886f1154b2bdce7a.js │ │ │ ├── 3139.886f1154b2bdce7a.js.LICENSE.txt │ │ │ ├── 3139.886f1154b2bdce7a.js.map │ │ │ ├── 317.2a8d0fcc9ae2bed7.js │ │ │ ├── 317.2a8d0fcc9ae2bed7.js.map │ │ │ ├── 3185.da3a95438cd65f21.js │ │ │ ├── 3185.da3a95438cd65f21.js.LICENSE.txt │ │ │ ├── 3185.da3a95438cd65f21.js.map │ │ │ ├── 3215.69c0ec39dc389d1f.js │ │ │ ├── 3215.69c0ec39dc389d1f.js.LICENSE.txt │ │ │ ├── 3215.69c0ec39dc389d1f.js.map │ │ │ ├── 3289.9fd5aed83f132a28.js │ │ │ ├── 3289.9fd5aed83f132a28.js.map │ │ │ ├── 3377.640aaaed74a2d79c.js │ │ │ ├── 3393.9abec8c762badab1.js │ │ │ ├── 3393.9abec8c762badab1.js.map │ │ │ ├── 3397.cc10248a8cd5123d.js │ │ │ ├── 3397.cc10248a8cd5123d.js.LICENSE.txt │ │ │ ├── 3397.cc10248a8cd5123d.js.map │ │ │ ├── 3438.5b993f765169a8db.js │ │ │ ├── 3438.5b993f765169a8db.js.LICENSE.txt │ │ │ ├── 3438.5b993f765169a8db.js.map │ │ │ ├── 3457.3a786041bba288e9.js │ │ │ ├── 3457.3a786041bba288e9.js.map │ │ │ ├── 348.afbdf568d1c2232e.js │ │ │ ├── 351.bf4479906f4c33fd.js │ │ │ ├── 351.bf4479906f4c33fd.js.LICENSE.txt │ │ │ ├── 351.bf4479906f4c33fd.js.map │ │ │ ├── 3649.6bdc5fdb4afe45ac.js │ │ │ ├── 3649.6bdc5fdb4afe45ac.js.map │ │ │ ├── 3666.877591ca1e5443e4.js │ │ │ ├── 3666.877591ca1e5443e4.js.map │ │ │ ├── 3693.51668852c7bb19bd.js │ │ │ ├── 3693.51668852c7bb19bd.js.map │ │ │ ├── 3719.d4e591f5044b4f97.js │ │ │ ├── 3719.d4e591f5044b4f97.js.LICENSE.txt │ │ │ ├── 3719.d4e591f5044b4f97.js.map │ │ │ ├── 3732.2708fce6402c1fd1.js │ │ │ ├── 3732.2708fce6402c1fd1.js.map │ │ │ ├── 3808.e5b775a33e1edd7d.js │ │ │ ├── 3808.e5b775a33e1edd7d.js.LICENSE.txt │ │ │ ├── 3808.e5b775a33e1edd7d.js.map │ │ │ ├── 3854.6fdbb31b95da7732.js │ │ │ ├── 3854.6fdbb31b95da7732.js.map │ │ │ ├── 3870.1a4e53d0e9bd9c15.js │ │ │ ├── 3870.1a4e53d0e9bd9c15.js.map │ │ │ ├── 3895.a9375d2cbc7b2c55.js │ │ │ ├── 3895.a9375d2cbc7b2c55.js.map │ │ │ ├── 3919.fbe735a540326573.js │ │ │ ├── 3919.fbe735a540326573.js.LICENSE.txt │ │ │ ├── 3919.fbe735a540326573.js.map │ │ │ ├── 3943.a9c154d79aa5c236.js │ │ │ ├── 3943.a9c154d79aa5c236.js.LICENSE.txt │ │ │ ├── 3943.a9c154d79aa5c236.js.map │ │ │ ├── 4044.2bfab01ea0305230.js │ │ │ ├── 4044.2bfab01ea0305230.js.map │ │ │ ├── 4055.0c7003897c057b0c.js │ │ │ ├── 4055.0c7003897c057b0c.js.map │ │ │ ├── 4067.45f5c26263811eb2.js │ │ │ ├── 4067.45f5c26263811eb2.js.map │ │ │ ├── 4147.64d66dfa6c33f0c7.js │ │ │ ├── 4147.64d66dfa6c33f0c7.js.LICENSE.txt │ │ │ ├── 4147.64d66dfa6c33f0c7.js.map │ │ │ ├── 4153.1a4cd3643e95639a.js │ │ │ ├── 4153.1a4cd3643e95639a.js.LICENSE.txt │ │ │ ├── 4153.1a4cd3643e95639a.js.map │ │ │ ├── 4224.f896d9860b7491a0.js │ │ │ ├── 4224.f896d9860b7491a0.js.map │ │ │ ├── 4351.f63e134be75fd24d.js │ │ │ ├── 4351.f63e134be75fd24d.js.map │ │ │ ├── 4418.75857ae473c060c6.js │ │ │ ├── 4418.75857ae473c060c6.js.map │ │ │ ├── 448.94f27f7976958f57.js │ │ │ ├── 448.94f27f7976958f57.js.map │ │ │ ├── 4485.10a78eaacb50c831.js │ │ │ ├── 4485.10a78eaacb50c831.js.LICENSE.txt │ │ │ ├── 4485.10a78eaacb50c831.js.map │ │ │ ├── 4550.95ad9f6aadc14f36.js │ │ │ ├── 4550.95ad9f6aadc14f36.js.LICENSE.txt │ │ │ ├── 4550.95ad9f6aadc14f36.js.map │ │ │ ├── 4608.6a3cd296f2a035f8.js │ │ │ ├── 4608.6a3cd296f2a035f8.js.map │ │ │ ├── 4649.ee3717e00d9e8649.js │ │ │ ├── 4649.ee3717e00d9e8649.js.LICENSE.txt │ │ │ ├── 4649.ee3717e00d9e8649.js.map │ │ │ ├── 4680.44193f4ff52da004.js │ │ │ ├── 4680.44193f4ff52da004.js.LICENSE.txt │ │ │ ├── 4680.44193f4ff52da004.js.map │ │ │ ├── 473.30ff930c743e5d29.js │ │ │ ├── 473.30ff930c743e5d29.js.map │ │ │ ├── 4768.461587f3e57e00e6.js │ │ │ ├── 4768.461587f3e57e00e6.js.map │ │ │ ├── 4814.4be7120528211163.js │ │ │ ├── 4814.4be7120528211163.js.LICENSE.txt │ │ │ ├── 4814.4be7120528211163.js.map │ │ │ ├── 4875.3b05eebb74ac799e.js │ │ │ ├── 4875.3b05eebb74ac799e.js.LICENSE.txt │ │ │ ├── 4875.3b05eebb74ac799e.js.map │ │ │ ├── 4913.e68d1aad875fafa4.js │ │ │ ├── 4913.e68d1aad875fafa4.js.map │ │ │ ├── 5002.8e6097d4025e960c.js │ │ │ ├── 5002.8e6097d4025e960c.js.map │ │ │ ├── 5012.da11407968801ed0.js │ │ │ ├── 5012.da11407968801ed0.js.map │ │ │ ├── 503.2cf3b8e1a6a30fc1.js │ │ │ ├── 503.2cf3b8e1a6a30fc1.js.LICENSE.txt │ │ │ ├── 503.2cf3b8e1a6a30fc1.js.map │ │ │ ├── 5058.61c28cc7cee6cff8.js │ │ │ ├── 5058.61c28cc7cee6cff8.js.LICENSE.txt │ │ │ ├── 5058.61c28cc7cee6cff8.js.map │ │ │ ├── 5085.53129feeb98cce50.js │ │ │ ├── 5085.53129feeb98cce50.js.LICENSE.txt │ │ │ ├── 5085.53129feeb98cce50.js.map │ │ │ ├── 513.08ed301bb2ca22cf.js │ │ │ ├── 513.08ed301bb2ca22cf.js.LICENSE.txt │ │ │ ├── 513.08ed301bb2ca22cf.js.map │ │ │ ├── 5291.c5cfdb4958b80d0c.js │ │ │ ├── 5291.c5cfdb4958b80d0c.js.map │ │ │ ├── 5371.3498b7a1cd7fc511.js │ │ │ ├── 5371.3498b7a1cd7fc511.js.map │ │ │ ├── 538.3985b6e69705c357.js │ │ │ ├── 538.3985b6e69705c357.js.map │ │ │ ├── 5456.838c7c3491343094.js │ │ │ ├── 5456.838c7c3491343094.js.map │ │ │ ├── 5478.fe996b35de70085f.js │ │ │ ├── 5478.fe996b35de70085f.js.map │ │ │ ├── 5536.7070600acaa0336d.js │ │ │ ├── 5536.7070600acaa0336d.js.map │ │ │ ├── 5578.07922a137c33a1ff.js │ │ │ ├── 5578.07922a137c33a1ff.js.map │ │ │ ├── 5624.0947cb1e9eb7e126.js │ │ │ ├── 5624.0947cb1e9eb7e126.js.LICENSE.txt │ │ │ ├── 5624.0947cb1e9eb7e126.js.map │ │ │ ├── 5687.8750a824789170b6.js │ │ │ ├── 5687.8750a824789170b6.js.map │ │ │ ├── 5695.3595bd0888b742cd.js │ │ │ ├── 5695.3595bd0888b742cd.js.map │ │ │ ├── 5828.4fd5a8a6f5675805.js │ │ │ ├── 5828.4fd5a8a6f5675805.js.map │ │ │ ├── 5832.a5f5a5a3326abbef.js │ │ │ ├── 5832.a5f5a5a3326abbef.js.map │ │ │ ├── 5842.defb7cd8c1bd7f6a.js │ │ │ ├── 5842.defb7cd8c1bd7f6a.js.LICENSE.txt │ │ │ ├── 5842.defb7cd8c1bd7f6a.js.map │ │ │ ├── 5860.4388f7296c9e334e.js │ │ │ ├── 5860.4388f7296c9e334e.js.LICENSE.txt │ │ │ ├── 5860.4388f7296c9e334e.js.map │ │ │ ├── 5864.90ef0fa8263d2d46.js │ │ │ ├── 5864.90ef0fa8263d2d46.js.map │ │ │ ├── 5903.25223a9bd2503926.js │ │ │ ├── 5903.25223a9bd2503926.js.LICENSE.txt │ │ │ ├── 5903.25223a9bd2503926.js.map │ │ │ ├── 5958.3395b832a86064d2.js │ │ │ ├── 5958.3395b832a86064d2.js.map │ │ │ ├── 6062.dda0c76f6cf6ab60.js │ │ │ ├── 6062.dda0c76f6cf6ab60.js.map │ │ │ ├── 6090.3dceb2d40a4a67c3.js │ │ │ ├── 6090.3dceb2d40a4a67c3.js.map │ │ │ ├── 6091.765fb220231122c0.js │ │ │ ├── 6091.765fb220231122c0.js.map │ │ │ ├── 6095.274d2f1c60704904.js │ │ │ ├── 6095.274d2f1c60704904.js.map │ │ │ ├── 6160.8fc4e3be49565cc7.js │ │ │ ├── 6160.8fc4e3be49565cc7.js.map │ │ │ ├── 6239.9b20ee30cb08dd0d.js │ │ │ ├── 6239.9b20ee30cb08dd0d.js.LICENSE.txt │ │ │ ├── 6239.9b20ee30cb08dd0d.js.map │ │ │ ├── 6315.e8ec478d154eb352.js │ │ │ ├── 6315.e8ec478d154eb352.js.LICENSE.txt │ │ │ ├── 6315.e8ec478d154eb352.js.map │ │ │ ├── 6335.02031c8f516b56d1.js │ │ │ ├── 6335.02031c8f516b56d1.js.map │ │ │ ├── 6343.aff0bcc2eee48c91.js │ │ │ ├── 6343.aff0bcc2eee48c91.js.LICENSE.txt │ │ │ ├── 6343.aff0bcc2eee48c91.js.map │ │ │ ├── 6356.b594bbddcd4f4e11.js │ │ │ ├── 6356.b594bbddcd4f4e11.js.LICENSE.txt │ │ │ ├── 6356.b594bbddcd4f4e11.js.map │ │ │ ├── 6379.ab532ad53979ba44.js │ │ │ ├── 6379.ab532ad53979ba44.js.LICENSE.txt │ │ │ ├── 6379.ab532ad53979ba44.js.map │ │ │ ├── 6426.b74667a5973a1a42.js │ │ │ ├── 6426.b74667a5973a1a42.js.LICENSE.txt │ │ │ ├── 6426.b74667a5973a1a42.js.map │ │ │ ├── 6438.8edd3ecbab7a6e78.js │ │ │ ├── 6438.8edd3ecbab7a6e78.js.map │ │ │ ├── 6457.4eae9134b0fe2819.js │ │ │ ├── 6457.4eae9134b0fe2819.js.map │ │ │ ├── 6461.bca93d72a70623d4.js │ │ │ ├── 6461.bca93d72a70623d4.js.LICENSE.txt │ │ │ ├── 6461.bca93d72a70623d4.js.map │ │ │ ├── 6470.6986c3653885c9a9.js │ │ │ ├── 6470.6986c3653885c9a9.js.map │ │ │ ├── 6475.f51b3532155d8ff6.js │ │ │ ├── 6475.f51b3532155d8ff6.js.LICENSE.txt │ │ │ ├── 6475.f51b3532155d8ff6.js.map │ │ │ ├── 6500.8e671ad7fbc45332.js │ │ │ ├── 6500.8e671ad7fbc45332.js.LICENSE.txt │ │ │ ├── 6500.8e671ad7fbc45332.js.map │ │ │ ├── 6578.d48e8309482d8c25.js │ │ │ ├── 6578.d48e8309482d8c25.js.LICENSE.txt │ │ │ ├── 6578.d48e8309482d8c25.js.map │ │ │ ├── 6611.0bb1f924f34ace4e.js │ │ │ ├── 6611.0bb1f924f34ace4e.js.LICENSE.txt │ │ │ ├── 6611.0bb1f924f34ace4e.js.map │ │ │ ├── 6620.838e0242dd1ea5c1.js │ │ │ ├── 6620.838e0242dd1ea5c1.js.map │ │ │ ├── 6634.662078304e83bfe5.js │ │ │ ├── 6634.662078304e83bfe5.js.map │ │ │ ├── 669.5f362af360f1b525.js │ │ │ ├── 669.5f362af360f1b525.js.map │ │ │ ├── 6752.02ea68dbd8c75d3c.js │ │ │ ├── 6752.02ea68dbd8c75d3c.js.LICENSE.txt │ │ │ ├── 6752.02ea68dbd8c75d3c.js.map │ │ │ ├── 6849.c8f50beafbcfc4e8.js │ │ │ ├── 6849.c8f50beafbcfc4e8.js.LICENSE.txt │ │ │ ├── 6849.c8f50beafbcfc4e8.js.map │ │ │ ├── 686.feaf6f0bdfd344d3.js │ │ │ ├── 686.feaf6f0bdfd344d3.js.LICENSE.txt │ │ │ ├── 686.feaf6f0bdfd344d3.js.map │ │ │ ├── 6890.ee4ce6eb5b1b4e88.js │ │ │ ├── 6890.ee4ce6eb5b1b4e88.js.LICENSE.txt │ │ │ ├── 6890.ee4ce6eb5b1b4e88.js.map │ │ │ ├── 6898.032dff82fddb8f03.js │ │ │ ├── 6898.032dff82fddb8f03.js.LICENSE.txt │ │ │ ├── 6898.032dff82fddb8f03.js.map │ │ │ ├── 6949.a116adb22f97591f.js │ │ │ ├── 6949.a116adb22f97591f.js.map │ │ │ ├── 70.e2f3a787e38d8ccd.js │ │ │ ├── 70.e2f3a787e38d8ccd.js.map │ │ │ ├── 7014.cdcee32a3860116e.js │ │ │ ├── 7014.cdcee32a3860116e.js.LICENSE.txt │ │ │ ├── 7014.cdcee32a3860116e.js.map │ │ │ ├── 7025.8a58aef7a156e36a.js │ │ │ ├── 7025.8a58aef7a156e36a.js.map │ │ │ ├── 7087.521f801c3f3c8897.js │ │ │ ├── 7087.521f801c3f3c8897.js.map │ │ │ ├── 7260.ac08de067df0b198.js │ │ │ ├── 7260.ac08de067df0b198.js.LICENSE.txt │ │ │ ├── 7260.ac08de067df0b198.js.map │ │ │ ├── 7348.2bea090b6376d409.js │ │ │ ├── 7348.2bea090b6376d409.js.LICENSE.txt │ │ │ ├── 7348.2bea090b6376d409.js.map │ │ │ ├── 7377.149b48d863e73840.js │ │ │ ├── 7377.149b48d863e73840.js.map │ │ │ ├── 7418.0d28b76da2ef8d0e.js │ │ │ ├── 7418.0d28b76da2ef8d0e.js.map │ │ │ ├── 7420.e933fc17f0d9b312.js │ │ │ ├── 7420.e933fc17f0d9b312.js.LICENSE.txt │ │ │ ├── 7420.e933fc17f0d9b312.js.map │ │ │ ├── 7457.125fe566e091a953.js │ │ │ ├── 7457.125fe566e091a953.js.LICENSE.txt │ │ │ ├── 7457.125fe566e091a953.js.map │ │ │ ├── 7463.1b049eb5793eb4e4.js │ │ │ ├── 7463.1b049eb5793eb4e4.js.LICENSE.txt │ │ │ ├── 7463.1b049eb5793eb4e4.js.map │ │ │ ├── 7599.d4c5588d4e2237c0.js │ │ │ ├── 7599.d4c5588d4e2237c0.js.map │ │ │ ├── 763.2371a8d55f58c655.js │ │ │ ├── 763.2371a8d55f58c655.js.map │ │ │ ├── 7999.55489a3cb3ae23aa.js │ │ │ ├── 7999.55489a3cb3ae23aa.js.map │ │ │ ├── 8006.ae77ad58cc9b5478.js │ │ │ ├── 8006.ae77ad58cc9b5478.js.LICENSE.txt │ │ │ ├── 8006.ae77ad58cc9b5478.js.map │ │ │ ├── 8043.8c446da8e3a3193c.js │ │ │ ├── 8043.8c446da8e3a3193c.js.LICENSE.txt │ │ │ ├── 8043.8c446da8e3a3193c.js.map │ │ │ ├── 8063.af780e84c6debed9.js │ │ │ ├── 8063.af780e84c6debed9.js.map │ │ │ ├── 8073.fdf6f57d6068b201.js │ │ │ ├── 8073.fdf6f57d6068b201.js.LICENSE.txt │ │ │ ├── 8073.fdf6f57d6068b201.js.map │ │ │ ├── 811.a786ebfc3ec078cd.js │ │ │ ├── 811.a786ebfc3ec078cd.js.LICENSE.txt │ │ │ ├── 811.a786ebfc3ec078cd.js.map │ │ │ ├── 8193.94f22c03ff7f39d8.js │ │ │ ├── 8193.94f22c03ff7f39d8.js.map │ │ │ ├── 8245.51474e349e2608e2.js │ │ │ ├── 8245.51474e349e2608e2.js.map │ │ │ ├── 8250.211850b68efaff24.js │ │ │ ├── 8250.211850b68efaff24.js.map │ │ │ ├── 8315.1eacad853bc1a599.js │ │ │ ├── 8315.1eacad853bc1a599.js.map │ │ │ ├── 8437.ad7759180edc79a9.js │ │ │ ├── 8437.ad7759180edc79a9.js.LICENSE.txt │ │ │ ├── 8437.ad7759180edc79a9.js.map │ │ │ ├── 8456.4655d492f048ae9c.js │ │ │ ├── 8456.4655d492f048ae9c.js.map │ │ │ ├── 8504.e84b4b69ca389751.js │ │ │ ├── 8504.e84b4b69ca389751.js.LICENSE.txt │ │ │ ├── 8504.e84b4b69ca389751.js.map │ │ │ ├── 852.780b761997cade8e.js │ │ │ ├── 852.780b761997cade8e.js.map │ │ │ ├── 8532.03024a102f3be3ad.js │ │ │ ├── 8532.03024a102f3be3ad.js.map │ │ │ ├── 8593.d27a4c7f5f52e6c1.js │ │ │ ├── 8593.d27a4c7f5f52e6c1.js.LICENSE.txt │ │ │ ├── 8593.d27a4c7f5f52e6c1.js.map │ │ │ ├── 8770.a329709e3a602e39.js │ │ │ ├── 8770.a329709e3a602e39.js.map │ │ │ ├── 8795.6c1478cae1477ee5.js │ │ │ ├── 8795.6c1478cae1477ee5.js.LICENSE.txt │ │ │ ├── 8795.6c1478cae1477ee5.js.map │ │ │ ├── 886.e2c691b18644e75a.js │ │ │ ├── 886.e2c691b18644e75a.js.map │ │ │ ├── 8963.7237dc7073b4aa5d.js │ │ │ ├── 8963.7237dc7073b4aa5d.js.map │ │ │ ├── 9102.95598c8e38b36e70.js │ │ │ ├── 9102.95598c8e38b36e70.js.LICENSE.txt │ │ │ ├── 9102.95598c8e38b36e70.js.map │ │ │ ├── 9153.bbd74722bafc3a41.js │ │ │ ├── 9153.bbd74722bafc3a41.js.LICENSE.txt │ │ │ ├── 9153.bbd74722bafc3a41.js.map │ │ │ ├── 925.71a91781c4fa3c11.js │ │ │ ├── 925.71a91781c4fa3c11.js.LICENSE.txt │ │ │ ├── 925.71a91781c4fa3c11.js.map │ │ │ ├── 9329.6b846c0461566ec3.js │ │ │ ├── 9329.6b846c0461566ec3.js.map │ │ │ ├── 9336.8ae7f87f802d5630.js │ │ │ ├── 9336.8ae7f87f802d5630.js.map │ │ │ ├── 9358.04f899bdf7c33a09.js │ │ │ ├── 9358.04f899bdf7c33a09.js.map │ │ │ ├── 9366.cbb6e5ebcde29dec.js │ │ │ ├── 9366.cbb6e5ebcde29dec.js.LICENSE.txt │ │ │ ├── 9366.cbb6e5ebcde29dec.js.map │ │ │ ├── 9368.a1436f83712425be.js │ │ │ ├── 9368.a1436f83712425be.js.LICENSE.txt │ │ │ ├── 9368.a1436f83712425be.js.map │ │ │ ├── 9375.d94a026f9fb042c9.js │ │ │ ├── 9375.d94a026f9fb042c9.js.LICENSE.txt │ │ │ ├── 9375.d94a026f9fb042c9.js.map │ │ │ ├── 9452.612b016de13c47d8.js │ │ │ ├── 9452.612b016de13c47d8.js.map │ │ │ ├── 9456.1a7fe6f58eed1ed7.js │ │ │ ├── 9456.1a7fe6f58eed1ed7.js.map │ │ │ ├── 9570.e3ef91af8c34e35e.js │ │ │ ├── 9570.e3ef91af8c34e35e.js.LICENSE.txt │ │ │ ├── 9570.e3ef91af8c34e35e.js.map │ │ │ ├── 9616.3e210dff22e17d01.js │ │ │ ├── 9616.3e210dff22e17d01.js.LICENSE.txt │ │ │ ├── 9616.3e210dff22e17d01.js.map │ │ │ ├── 9645.8b3fb5fc9283c093.js │ │ │ ├── 9645.8b3fb5fc9283c093.js.LICENSE.txt │ │ │ ├── 9645.8b3fb5fc9283c093.js.map │ │ │ ├── 9711.ab376b663a666774.js │ │ │ ├── 9711.ab376b663a666774.js.map │ │ │ ├── 9752.81ae24256a095d0b.js │ │ │ ├── 9752.81ae24256a095d0b.js.map │ │ │ ├── 9794.59eeeef3d6fd68c6.js │ │ │ ├── 9794.59eeeef3d6fd68c6.js.LICENSE.txt │ │ │ ├── 9794.59eeeef3d6fd68c6.js.map │ │ │ ├── 9823.2ae57dc4eb289324.js │ │ │ ├── 9823.2ae57dc4eb289324.js.map │ │ │ ├── 9826.ed95e1fa83402917.js │ │ │ ├── 9826.ed95e1fa83402917.js.map │ │ │ ├── 9857.d294077e9996b006.js │ │ │ ├── 9857.d294077e9996b006.js.map │ │ │ ├── 989.95782770d527cdda.js │ │ │ ├── 989.95782770d527cdda.js.LICENSE.txt │ │ │ ├── 989.95782770d527cdda.js.map │ │ │ ├── 9894.a66f08c03278c8ac.js │ │ │ ├── 9894.a66f08c03278c8ac.js.LICENSE.txt │ │ │ ├── 9894.a66f08c03278c8ac.js.map │ │ │ ├── 9965.49f3c402d28d24de.js │ │ │ ├── 9965.49f3c402d28d24de.js.map │ │ │ ├── entrypoint.bb9d28f38e9fba76.js │ │ │ ├── entrypoint.bb9d28f38e9fba76.js.LICENSE.txt │ │ │ ├── entrypoint.bb9d28f38e9fba76.js.map │ │ │ ├── extra.fb9760592efef202.js │ │ │ ├── extra.fb9760592efef202.js.map │ │ │ ├── manifest.json │ │ │ ├── markdown-worker.40c26a32b2cbbe53.js │ │ │ ├── markdown-worker.40c26a32b2cbbe53.js.LICENSE.txt │ │ │ ├── markdown-worker.40c26a32b2cbbe53.js.map │ │ │ ├── recorder-worklet.e19554ec87ef374e.js │ │ │ ├── recorder-worklet.e19554ec87ef374e.js.map │ │ │ ├── sort-filter-worker.5d60c2ed348e2db0.js │ │ │ ├── sort-filter-worker.5d60c2ed348e2db0.js.LICENSE.txt │ │ │ └── sort-filter-worker.5d60c2ed348e2db0.js.map │ │ ├── static │ │ │ └── fonts │ │ │ │ └── roboto │ │ │ │ ├── Roboto-Black.woff2 │ │ │ │ ├── Roboto-BlackItalic.woff2 │ │ │ │ ├── Roboto-Bold.woff2 │ │ │ │ ├── Roboto-BoldItalic.woff2 │ │ │ │ ├── Roboto-Light.woff2 │ │ │ │ ├── Roboto-LightItalic.woff2 │ │ │ │ ├── Roboto-Medium.woff2 │ │ │ │ ├── Roboto-MediumItalic.woff2 │ │ │ │ ├── Roboto-Regular.woff2 │ │ │ │ ├── Roboto-RegularItalic.woff2 │ │ │ │ ├── Roboto-Thin.woff2 │ │ │ │ └── Roboto-ThinItalic.woff2 │ │ └── version.py │ ├── iconset.js │ ├── manifest.json │ ├── repairs.py │ ├── repositories │ │ ├── __init__.py │ │ ├── appdaemon.py │ │ ├── base.py │ │ ├── integration.py │ │ ├── plugin.py │ │ ├── python_script.py │ │ ├── template.py │ │ └── theme.py │ ├── switch.py │ ├── system_health.py │ ├── types.py │ ├── update.py │ ├── utils │ │ ├── __init__.py │ │ ├── backup.py │ │ ├── configuration_schema.py │ │ ├── data.py │ │ ├── decode.py │ │ ├── decorator.py │ │ ├── file_system.py │ │ ├── filters.py │ │ ├── github_graphql_query.py │ │ ├── json.py │ │ ├── logger.py │ │ ├── path.py │ │ ├── queue_manager.py │ │ ├── regex.py │ │ ├── store.py │ │ ├── url.py │ │ ├── validate.py │ │ ├── version.py │ │ └── workarounds.py │ ├── validate │ │ ├── README.md │ │ ├── __init__.py │ │ ├── archived.py │ │ ├── base.py │ │ ├── brands.py │ │ ├── description.py │ │ ├── hacsjson.py │ │ ├── images.py │ │ ├── information.py │ │ ├── integration_manifest.py │ │ ├── issues.py │ │ ├── manager.py │ │ └── topics.py │ └── websocket │ │ ├── __init__.py │ │ ├── critical.py │ │ ├── repositories.py │ │ └── repository.py ├── hass_agent │ ├── __init__.py │ ├── config_flow.py │ ├── const.py │ ├── device_trigger.py │ ├── manifest.json │ ├── media_player.py │ ├── notify.py │ └── views.py ├── higrow │ └── sensors │ │ └── sensors.yaml ├── jokes │ ├── __init__.py │ ├── config_flow.py │ ├── const.py │ ├── manifest.json │ └── sensor.py ├── llmvision │ ├── __init__.py │ ├── calendar.py │ ├── config_flow.py │ ├── const.py │ ├── manifest.json │ ├── media_handlers.py │ ├── memory.py │ ├── providers.py │ └── services.yaml ├── local_luftdaten │ ├── __init__.py │ ├── const.py │ ├── manifest.json │ └── sensor.py ├── mass │ ├── __init__.py │ ├── actions.py │ ├── config_flow.py │ ├── const.py │ ├── entity.py │ ├── helpers.py │ ├── intent.py │ ├── manifest.json │ ├── media_browser.py │ ├── media_player.py │ └── services.yaml ├── mikrotik_router │ ├── __init__.py │ ├── apiparser.py │ ├── binary_sensor.py │ ├── binary_sensor_types.py │ ├── button.py │ ├── button_types.py │ ├── config_flow.py │ ├── const.py │ ├── coordinator.py │ ├── device_tracker.py │ ├── device_tracker_types.py │ ├── diagnostics.py │ ├── entity.py │ ├── exceptions.py │ ├── helper.py │ ├── manifest.json │ ├── mikrotikapi.py │ ├── sensor.py │ ├── sensor_types.py │ ├── services.yaml │ ├── switch.py │ ├── switch_types.py │ ├── update.py │ └── update_types.py ├── mold_risk_index │ ├── __init__.py │ ├── config_flow.py │ ├── const.py │ ├── manifest.json │ └── sensor.py ├── moonraker │ ├── __init__.py │ ├── api.py │ ├── binary_sensor.py │ ├── button.py │ ├── camera.py │ ├── config_flow.py │ ├── const.py │ ├── entity.py │ ├── light.py │ ├── manifest.json │ ├── number.py │ ├── sensor.py │ ├── services.yaml │ └── switch.py ├── next_rocket_launch │ ├── __init__.py │ ├── manifest.json │ └── sensor.py ├── nuki_ng │ ├── __init__.py │ ├── binary_sensor.py │ ├── button.py │ ├── config_flow.py │ ├── constants.py │ ├── lock.py │ ├── manifest.json │ ├── nuki.py │ ├── select.py │ ├── sensor.py │ ├── services.yaml │ ├── states.py │ └── switch.py ├── open_epaper_link │ ├── __init__.py │ ├── ble_utils.py │ ├── button.py │ ├── config_flow.py │ ├── const.py │ ├── device_trigger.py │ ├── g5_decoder.py │ ├── hub.py │ ├── image.py │ ├── image_decompressor.py │ ├── imagegen.py │ ├── light.py │ ├── manifest.json │ ├── materialdesignicons-webfont.ttf │ ├── ppb.ttf │ ├── rbm.ttf │ ├── select.py │ ├── sensor.py │ ├── services.py │ ├── services.yaml │ ├── switch.py │ ├── tag_types.py │ ├── text.py │ └── util.py ├── openplantbook │ ├── __init__.py │ ├── config_flow.py │ ├── const.py │ ├── manifest.json │ ├── plantbook_exception.py │ ├── services.yaml │ └── uploader.py ├── plant │ ├── __init__.py │ ├── config_flow.py │ ├── const.py │ ├── group.py │ ├── manifest.json │ ├── number.py │ ├── plant_helpers.py │ ├── plant_meters.py │ ├── plant_thresholds.py │ ├── sensor.py │ └── services.yaml ├── powercalc │ ├── __init__.py │ ├── common.py │ ├── config_flow.py │ ├── const.py │ ├── device_binding.py │ ├── diagnostics.py │ ├── discovery.py │ ├── errors.py │ ├── flow_helper │ │ ├── __init__.py │ │ ├── dynamic_field_builder.py │ │ └── schema.py │ ├── group_include │ │ ├── __init__.py │ │ ├── filter.py │ │ └── include.py │ ├── helpers.py │ ├── manifest.json │ ├── power_profile │ │ ├── __init__.py │ │ ├── error.py │ │ ├── factory.py │ │ ├── library.py │ │ ├── loader │ │ │ ├── __init__.py │ │ │ ├── composite.py │ │ │ ├── local.py │ │ │ ├── protocol.py │ │ │ └── remote.py │ │ └── power_profile.py │ ├── repairs.py │ ├── sensor.py │ ├── sensors │ │ ├── __init__.py │ │ ├── abstract.py │ │ ├── daily_energy.py │ │ ├── energy.py │ │ ├── group │ │ │ ├── __init__.py │ │ │ ├── config_entry_utils.py │ │ │ ├── custom.py │ │ │ ├── domain.py │ │ │ ├── factory.py │ │ │ ├── standby.py │ │ │ ├── subtract.py │ │ │ └── tracked_untracked.py │ │ ├── power.py │ │ └── utility_meter.py │ ├── service │ │ ├── __init__.py │ │ └── gui_configuration.py │ ├── services.yaml │ └── strategy │ │ ├── __init__.py │ │ ├── composite.py │ │ ├── factory.py │ │ ├── fixed.py │ │ ├── linear.py │ │ ├── lut.py │ │ ├── multi_switch.py │ │ ├── playbook.py │ │ ├── selector.py │ │ ├── strategy_interface.py │ │ └── wled.py ├── services.yaml ├── spook │ ├── __init__.py │ ├── binary_sensor.py │ ├── button.py │ ├── config_flow.py │ ├── const.py │ ├── ectoplasms │ │ ├── __init__.py │ │ ├── automation │ │ │ ├── __init__.py │ │ │ └── repairs │ │ │ │ ├── __init__.py │ │ │ │ ├── unknown_area_references.py │ │ │ │ ├── unknown_device_references.py │ │ │ │ ├── unknown_entity_references.py │ │ │ │ ├── unknown_floor_references.py │ │ │ │ ├── unknown_label_references.py │ │ │ │ └── unknown_service_references.py │ │ ├── blueprint │ │ │ ├── __init__.py │ │ │ └── services │ │ │ │ ├── __init__.py │ │ │ │ └── importer.py │ │ ├── cloud │ │ │ ├── __init__.py │ │ │ ├── entity.py │ │ │ └── switch.py │ │ ├── group │ │ │ ├── __init__.py │ │ │ └── repairs │ │ │ │ ├── __init__.py │ │ │ │ └── unknown_members.py │ │ ├── homeassistant │ │ │ ├── __init__.py │ │ │ ├── button.py │ │ │ ├── entity.py │ │ │ ├── sensor.py │ │ │ ├── services │ │ │ │ ├── __init__.py │ │ │ │ ├── add_alias_to_area.py │ │ │ │ ├── add_alias_to_floor.py │ │ │ │ ├── add_area_to_floor.py │ │ │ │ ├── add_device_to_area.py │ │ │ │ ├── add_entity_to_area.py │ │ │ │ ├── add_label_to_area.py │ │ │ │ ├── add_label_to_device.py │ │ │ │ ├── add_label_to_entity.py │ │ │ │ ├── create_area.py │ │ │ │ ├── create_floor.py │ │ │ │ ├── create_label.py │ │ │ │ ├── delete_all_orphaned_entities.py │ │ │ │ ├── delete_area.py │ │ │ │ ├── delete_floor.py │ │ │ │ ├── delete_label.py │ │ │ │ ├── disable_config_entry.py │ │ │ │ ├── disable_device.py │ │ │ │ ├── disable_entity.py │ │ │ │ ├── disable_polling.py │ │ │ │ ├── enable_config_entry.py │ │ │ │ ├── enable_device.py │ │ │ │ ├── enable_entity.py │ │ │ │ ├── enable_polling.py │ │ │ │ ├── hide_entity.py │ │ │ │ ├── ignore_all_discovered.py │ │ │ │ ├── list_orphaned_database_entities.py │ │ │ │ ├── remove_alias_from_area.py │ │ │ │ ├── remove_alias_from_floor.py │ │ │ │ ├── remove_area_from_floor.py │ │ │ │ ├── remove_device_from_area.py │ │ │ │ ├── remove_entity_from_area.py │ │ │ │ ├── remove_label_from_area.py │ │ │ │ ├── remove_label_from_device.py │ │ │ │ ├── remove_label_from_entity.py │ │ │ │ ├── restart.py │ │ │ │ ├── set_area_aliases.py │ │ │ │ ├── set_floor_aliases.py │ │ │ │ ├── unhide_entity.py │ │ │ │ └── update_entity_id.py │ │ │ └── templating │ │ │ │ ├── __init__.py │ │ │ │ ├── flatten.py │ │ │ │ ├── fnmatch.py │ │ │ │ ├── fnmatch_filter.py │ │ │ │ ├── md5.py │ │ │ │ ├── sha1.py │ │ │ │ ├── sha256.py │ │ │ │ ├── sha512.py │ │ │ │ ├── shuffle.py │ │ │ │ └── typeof.py │ │ ├── input_number │ │ │ ├── __init__.py │ │ │ └── services │ │ │ │ ├── __init__.py │ │ │ │ ├── decrement.py │ │ │ │ ├── increment.py │ │ │ │ ├── max.py │ │ │ │ └── min.py │ │ ├── input_select │ │ │ ├── __init__.py │ │ │ └── services │ │ │ │ ├── __init__.py │ │ │ │ ├── random.py │ │ │ │ ├── shuffle.py │ │ │ │ └── sort.py │ │ ├── integration │ │ │ ├── __init__.py │ │ │ └── repairs │ │ │ │ ├── __init__.py │ │ │ │ └── unknown_source.py │ │ ├── lovelace │ │ │ ├── __init__.py │ │ │ └── repairs │ │ │ │ ├── __init__.py │ │ │ │ └── unknown_entity_references.py │ │ ├── number │ │ │ ├── __init__.py │ │ │ └── services │ │ │ │ ├── __init__.py │ │ │ │ ├── decrement.py │ │ │ │ ├── increment.py │ │ │ │ ├── max.py │ │ │ │ └── min.py │ │ ├── person │ │ │ ├── __init__.py │ │ │ └── services │ │ │ │ ├── __init__.py │ │ │ │ ├── add_device_tracker.py │ │ │ │ └── remove_device_tracker.py │ │ ├── proximity │ │ │ ├── __init__.py │ │ │ └── repairs │ │ │ │ ├── __init__.py │ │ │ │ ├── unknown_ignored_zones.py │ │ │ │ ├── unknown_tracked_entities.py │ │ │ │ └── unknown_zone.py │ │ ├── recorder │ │ │ ├── __init__.py │ │ │ └── services │ │ │ │ ├── __init__.py │ │ │ │ └── import_statistics.py │ │ ├── repairs │ │ │ ├── __init__.py │ │ │ ├── button.py │ │ │ ├── entity.py │ │ │ ├── event.py │ │ │ ├── sensor.py │ │ │ └── services │ │ │ │ ├── __init__.py │ │ │ │ ├── create.py │ │ │ │ ├── ignore_all.py │ │ │ │ ├── remove.py │ │ │ │ └── unignore_all.py │ │ ├── scene │ │ │ ├── __init__.py │ │ │ └── repairs │ │ │ │ ├── __init__.py │ │ │ │ └── unknown_entity_references.py │ │ ├── script │ │ │ ├── __init__.py │ │ │ └── repairs │ │ │ │ ├── __init__.py │ │ │ │ ├── unknown_area_references.py │ │ │ │ ├── unknown_device_references.py │ │ │ │ ├── unknown_entity_references.py │ │ │ │ ├── unknown_floor_references.py │ │ │ │ └── unknown_label_references.py │ │ ├── select │ │ │ ├── __init__.py │ │ │ └── services │ │ │ │ ├── __init__.py │ │ │ │ └── random.py │ │ ├── spook │ │ │ ├── __init__.py │ │ │ └── services │ │ │ │ ├── __init__.py │ │ │ │ ├── boo.py │ │ │ │ └── random_fail.py │ │ ├── switch_as_x │ │ │ ├── __init__.py │ │ │ └── repairs │ │ │ │ ├── __init__.py │ │ │ │ └── unknown_source.py │ │ ├── timer │ │ │ ├── __init__.py │ │ │ └── services │ │ │ │ ├── __init__.py │ │ │ │ └── set_duration.py │ │ ├── trend │ │ │ ├── __init__.py │ │ │ └── repairs │ │ │ │ ├── __init__.py │ │ │ │ └── unknown_source.py │ │ ├── utility_meter │ │ │ ├── __init__.py │ │ │ └── repairs │ │ │ │ ├── __init__.py │ │ │ │ └── unknown_source.py │ │ └── zone │ │ │ ├── __init__.py │ │ │ └── services │ │ │ ├── __init__.py │ │ │ ├── create.py │ │ │ ├── delete.py │ │ │ └── update.py │ ├── entity.py │ ├── event.py │ ├── integrations │ │ ├── __init__.py │ │ └── spook_inverse │ │ │ ├── __init__.py │ │ │ ├── binary_sensor.py │ │ │ ├── config_flow.py │ │ │ ├── const.py │ │ │ ├── entity.py │ │ │ ├── manifest.json │ │ │ └── switch.py │ ├── manifest.json │ ├── number.py │ ├── repairs.py │ ├── select.py │ ├── sensor.py │ ├── services.py │ ├── services.yaml │ ├── switch.py │ ├── templating.py │ ├── time.py │ ├── translations │ │ └── LICENSE.md │ └── util.py ├── spook_inverse ├── tuya_local │ ├── __init__.py │ ├── alarm_control_panel.py │ ├── binary_sensor.py │ ├── button.py │ ├── camera.py │ ├── climate.py │ ├── cloud.py │ ├── config_flow.py │ ├── const.py │ ├── cover.py │ ├── device.py │ ├── devices │ │ ├── 9in1_airquality_monitor.yaml │ │ ├── CT20W_pir_motion_detector.yaml │ │ ├── DH-CSK03W_dehumidifier.yaml │ │ ├── EM3390TF_weather_station.yaml │ │ ├── HCT-626_dual_water_timer.yaml │ │ ├── README.md │ │ ├── ZC34T-03-3A_swing_arm_opener.yaml │ │ ├── __init__.py │ │ ├── a03_siren.yaml │ │ ├── abalon_bcm700d_curtain.yaml │ │ ├── abir_x8_vacuum.yaml │ │ ├── absina_evcharger.yaml │ │ ├── adpow_gob6pro_evcharger.yaml │ │ ├── advancedfires_1500_fireplace.yaml │ │ ├── advwin_6l_petfeeder.yaml │ │ ├── aeno_ek1s_kettle.yaml │ │ ├── aeno_ek7s_kettle.yaml │ │ ├── aeno_ks1s_kitchenscale.yaml │ │ ├── aeratron_ae3plus_fan.yaml │ │ ├── af3w_petfeeder.yaml │ │ ├── afyeev_16a_evcharger.yaml │ │ ├── afyeev_evcharger.yaml │ │ ├── agl_ultracontato.yaml │ │ ├── agl_ultramagic_lock.yaml │ │ ├── ailrinni_fingerprint_lock.yaml │ │ ├── airam_s1wfaa_siren.yaml │ │ ├── airquality5in1.yaml │ │ ├── airquality6in1.yaml │ │ ├── airrobo_p20_vacuum.yaml │ │ ├── airx_h8_humidifier.yaml │ │ ├── akai_dryer.yaml │ │ ├── aktobis_wdh_310ek_dehumidifier.yaml │ │ ├── alecoair_d12_dehumidifier.yaml │ │ ├── alecoair_d16_dehumidifier.yaml │ │ ├── alen_35i_airpurifier.yaml │ │ ├── amantii-r12ap1-fireplace.yaml │ │ ├── amari_ceiling_fanlight.yaml │ │ ├── amico_smart_ceiling_fan.yaml │ │ ├── ampbolt_portable_evcharger.yaml │ │ ├── andersson_gsh_heater.yaml │ │ ├── anko_fan.yaml │ │ ├── anko_kettle.yaml │ │ ├── aquatech_x6_water_heater.yaml │ │ ├── ard100_valve.yaml │ │ ├── arida_s7l2_dehumidifier.yaml │ │ ├── arida_venti160_hrv.yaml │ │ ├── arknoah_aquarium_lights.yaml │ │ ├── arlec_10_pathlights.yaml │ │ ├── arlec_12speed_tower_fan.yaml │ │ ├── arlec_19speed_fan.yaml │ │ ├── arlec_5l_petfeeder.yaml │ │ ├── arlec_6speed_fan.yaml │ │ ├── arlec_apr005ha_air_purifier.yaml │ │ ├── arlec_ceh243ha_heater.yaml │ │ ├── arlec_ceiling_fan_remote.yaml │ │ ├── arlec_fan.yaml │ │ ├── arlec_fan_atf4602bha.yaml │ │ ├── arlec_fan_light.yaml │ │ ├── arlec_lve160ha_balllights.yaml │ │ ├── arlec_pa1123bkha_portable_air_conditioner.yaml │ │ ├── arlec_panel_heater.yaml │ │ ├── arlec_panel_heater_v2.yaml │ │ ├── arlec_pb88uha_s2_switch.yaml │ │ ├── arlec_rf_transmitter.yaml │ │ ├── arlec_rgb_ledstrip.yaml │ │ ├── arlec_smart_button.yaml │ │ ├── arlec_thermostat_smartplug.yaml │ │ ├── asahom_outdoor_rgbcw_lights.yaml │ │ ├── asakuki_diffuser.yaml │ │ ├── asc_wifi_circuit_breaker.yaml │ │ ├── asip_0622_planter.yaml │ │ ├── aspen_asp200_fan.yaml │ │ ├── atomi_ceiling_fan.yaml │ │ ├── atomi_ceramic_heater.yaml │ │ ├── atomi_string_lights.yaml │ │ ├── atorch_at2pl_breaker.yaml │ │ ├── atorch_at4ptw_thermostat.yaml │ │ ├── atorch_at4pw_energymeter.yaml │ │ ├── atorch_s1bw_smartplug.yaml │ │ ├── atorch_s1tw_thermostat.yaml │ │ ├── atorch_s1wp.yaml │ │ ├── aubess_1gang_switch.yaml │ │ ├── aubess_2gang_switch.yaml │ │ ├── aubess_3gang_switch.yaml │ │ ├── aubess_rainpoint_irrigation_system.yaml │ │ ├── aulifants_energymonitor_breaker.yaml │ │ ├── avatto_cls02_curtainduallights.yaml │ │ ├── avatto_curtain_duallights.yaml │ │ ├── avatto_curtain_light.yaml │ │ ├── avatto_curtain_switch.yaml │ │ ├── avatto_roller_blinds.yaml │ │ ├── avatto_trv06_radiatorvalve.yaml │ │ ├── avatto_whs20s_irremote.yaml │ │ ├── avatto_wt100_thermostat.yaml │ │ ├── avatto_wt20r_thermostat.yaml │ │ ├── avidsen_soria_solarinverter.yaml │ │ ├── awow_th213_thermostat.yaml │ │ ├── awow_th213v2_thermostat.yaml │ │ ├── axen_ks100w_heatpump.yaml │ │ ├── aygrochy_inline_wifi_air_vent.yaml │ │ ├── aziot_fan_switch.yaml │ │ ├── aziot_multi_switch.yaml │ │ ├── aziot_quad_switch.yaml │ │ ├── ballu_aura.yaml │ │ ├── basic_ir_remote.yaml │ │ ├── bauhn_ap5w0624_powerstrip.yaml │ │ ├── bcetasy_18in1_airquality.yaml │ │ ├── bcom_intercom_camera.yaml │ │ ├── beca_bac002_thermostat_c.yaml │ │ ├── beca_bhp6000_thermostat_c.yaml │ │ ├── beca_bhp6000_thermostat_f.yaml │ │ ├── beca_bhp6000_thermostat_mapped.yaml │ │ ├── beca_bht002_thermostat_c.yaml │ │ ├── beca_bht006_thermostat_c.yaml │ │ ├── beca_bht12_thermostat.yaml │ │ ├── beca_zht002_thermostat_c.yaml │ │ ├── becool_heatpump.yaml │ │ ├── benexmart_blind_motor.yaml │ │ ├── beok_tcb38_thermostat.yaml │ │ ├── beok_tgm50_thermostat.yaml │ │ ├── beok_tgr81_thermostat_c.yaml │ │ ├── beok_tol47_thermostat.yaml │ │ ├── beok_tr8b_thermostat.yaml │ │ ├── beok_tr9b_thermostat.yaml │ │ ├── betterlife_bl1500_heater.yaml │ │ ├── bht002_galw_thermostat.yaml │ │ ├── bht002_gblw_thermostat.yaml │ │ ├── ble_adaprox_fingerbot.yaml │ │ ├── ble_hct611_watertimer.yaml │ │ ├── ble_hu06_lock.yaml │ │ ├── ble_kb150a_lock.yaml │ │ ├── ble_orion_lock.yaml │ │ ├── ble_positivo_smart_fechadura.yaml │ │ ├── ble_positivo_smart_keypad.yaml │ │ ├── ble_pt216_temp_humidity.yaml │ │ ├── ble_pulido_p13_lock.yaml │ │ ├── ble_smart_plant_moisture.yaml │ │ ├── ble_solar_light.yaml │ │ ├── ble_tcs024b_smart_plant_moisture.yaml │ │ ├── ble_water_valve.yaml │ │ ├── ble_yl01_watertester.yaml │ │ ├── ble_ysgbs01_lock.yaml │ │ ├── blitzwill_ceilingfanlight.yaml │ │ ├── blitzwolf_bw_lt31.yaml │ │ ├── blitzwolf_bwis6_alarm.yaml │ │ ├── blitzwolf_bwsh2_humidifier.yaml │ │ ├── blitzwolf_bwsh5_humidifier.yaml │ │ ├── blitzwolf_bwshp6_smartplug.yaml │ │ ├── blitzwolf_bwshp9_powerstrip.yaml │ │ ├── blumfeldt_cosmicbeam_heater.yaml │ │ ├── bneta_f1d_petfeeder.yaml │ │ ├── bonaire_heater.yaml │ │ ├── brade_mc6_thermostat.yaml │ │ ├── brandson_a307362x3_fan.yaml │ │ ├── bresser_smart_thermo_hygrometer.yaml │ │ ├── bresser_weather_station.yaml │ │ ├── breville_airdynamic3d_fan.yaml │ │ ├── breville_airrounderplus_heater.yaml │ │ ├── breville_easyair_purifier.yaml │ │ ├── breville_lad208_dehumidifier.yaml │ │ ├── breville_smart_air_viral_protect_plus.yaml │ │ ├── breville_smartairconnect_purifier.yaml │ │ ├── briliant_fan_light.yaml │ │ ├── brilliant_double_switch.yaml │ │ ├── brilliant_quad_powerstrip_usb.yaml │ │ ├── brilliant_quad_switch.yaml │ │ ├── brilliant_securitylights.yaml │ │ ├── brilliant_single_switch.yaml │ │ ├── brilliant_triple_switch.yaml │ │ ├── brizlabs_string_lights.yaml │ │ ├── bstuokey_access_keypad.yaml │ │ ├── bstuokey_invisible_lock.yaml │ │ ├── btbcoin_ac5299_pccontroller.yaml │ │ ├── bvf_cp1_heater.yaml │ │ ├── bwt_heatpump.yaml │ │ ├── c30w_gassensor.yaml │ │ ├── cadence_aroma_diffuser.yaml │ │ ├── caldo_up_t_wifi.yaml │ │ ├── calex_aromadiffuser.yaml │ │ ├── calex_convector_heater.yaml │ │ ├── calex_s45cleare27_light.yaml │ │ ├── calibo_smart_ceiling_fan.yaml │ │ ├── camnsmart_e27_camera.yaml │ │ ├── carro_ph805_humidifier.yaml │ │ ├── carro_pn04f02d_fan_light.yaml │ │ ├── carro_smart_ceiling_fan_light.yaml │ │ ├── carson_cb.yaml │ │ ├── casafan_ceiling_fan_light.yaml │ │ ├── casdon_td_pro_2.yaml │ │ ├── catit_pet_feeder.yaml │ │ ├── catit_pixi_6meal_feeder.yaml │ │ ├── catit_pixi_smart_feeder.yaml │ │ ├── catit_pixi_smart_fountain.yaml │ │ ├── cbi_astute_outdoor_smartswitch.yaml │ │ ├── cc_curtain.yaml │ │ ├── ccb11_blind_controller.yaml │ │ ├── cct_lightbulb.yaml │ │ ├── cct_modeless_lightbulb.yaml │ │ ├── cct_v1_lightbulb.yaml │ │ ├── cecofry_5500_airfryer.yaml │ │ ├── cecotec_bigdry_4000_dehumidifier.yaml │ │ ├── cecotec_congas1970_vacuum.yaml │ │ ├── cecotec_fan_light.yaml │ │ ├── cecotec_readywarm_8400.yaml │ │ ├── ceres_plus_petfeeder.yaml │ │ ├── cesmarthome_acwall_outlet.yaml │ │ ├── chameleon_tcg_towerfan.yaml │ │ ├── chanfok_ceiling_fanlight.yaml │ │ ├── chanfok_fan_light.yaml │ │ ├── ciarra_cbcs4850_rangehood.yaml │ │ ├── cleanair_604b_humidifier.yaml │ │ ├── cleanair_605b_humidifier.yaml │ │ ├── cleanair_ca702_dehumidifier.yaml │ │ ├── cleverio_ad100_dehumidifier.yaml │ │ ├── cleverio_ap100_purifier.yaml │ │ ├── cleverio_cd200_doorbell.yaml │ │ ├── cleverio_pf100_petfeeder.yaml │ │ ├── climative_dh20s_dehumidifier.yaml │ │ ├── clofte_duo_400_humidifier.yaml │ │ ├── cnc_ycb9zf_breaker.yaml │ │ ├── co2_box.yaml │ │ ├── comon_lights.yaml │ │ ├── compteur_energy_meter.yaml │ │ ├── confortotal_minisplit.yaml │ │ ├── cooper_hunter_air_conditioner.yaml │ │ ├── costway_portable_ac.yaml │ │ ├── cover_switch_with_backlight.yaml │ │ ├── cpvan_cp2w_alarm.yaml │ │ ├── create_fan_light.yaml │ │ ├── create_fan_lightdimmable.yaml │ │ ├── create_warmtoweladvance_heater.yaml │ │ ├── cronos_gphdda_heater.yaml │ │ ├── ct1203_clamp_meter.yaml │ │ ├── currysmarter_6gen_rollershutter.yaml │ │ ├── curtain_with_feedback.yaml │ │ ├── daewoo_dhome_heatpump.yaml │ │ ├── daizuki_heatpump.yaml │ │ ├── deakon_evi_waterheatpump.yaml │ │ ├── della_airconditioner.yaml │ │ ├── deltaco_shlw5m_ledstrip.yaml │ │ ├── denver_shp200mk2_dualsmartplug.yaml │ │ ├── depuley_smart_ceiling_fan.yaml │ │ ├── desk_lamp.yaml │ │ ├── deta_dimmer_switch.yaml │ │ ├── deta_fan.yaml │ │ ├── devola_intelligent_heater.yaml │ │ ├── devola_patio_heater.yaml │ │ ├── dewall_evcharger.yaml │ │ ├── dewin_kws306wf_energymeter.yaml │ │ ├── dienmern_dm165a_noisemeter.yaml │ │ ├── digoo_dgsp01_dual_nightlight_switch.yaml │ │ ├── digoo_dgsp202.yaml │ │ ├── digoo_hamb_alarm.yaml │ │ ├── diivoo_dwv010.yaml │ │ ├── diivoo_wt05.yaml │ │ ├── dimming_1ch_switch.yaml │ │ ├── dimming_light_track.yaml │ │ ├── dimming_lightbulb.yaml │ │ ├── ditua_dt1522yn_aromadiffuser.yaml │ │ ├── djive_arc_fan.yaml │ │ ├── dl01es_energymeter.yaml │ │ ├── doel_tiplus_litterbox.yaml │ │ ├── dongguan_electric_curtain.yaml │ │ ├── dongguan_garage_door_opener.yaml │ │ ├── door_peephole_camera.yaml │ │ ├── dooya_curtain.yaml │ │ ├── dowell_dchs-k7_32_7kw_ev_charger.yaml │ │ ├── dr_heater_dr008_thermostat.yaml │ │ ├── dream_maker_feel_fan.yaml │ │ ├── dreamlight_led_strip.yaml │ │ ├── drexma_et7aw_thermostat.yaml │ │ ├── dry_pury_evo_dehumidifier.yaml │ │ ├── dts238_7_energy_meter.yaml │ │ ├── dual_clamp_energymeter.yaml │ │ ├── dual_dimmable_lamp.yaml │ │ ├── dual_dimmer_module.yaml │ │ ├── dual_power_monitor_smartplug.yaml │ │ ├── dual_power_monitor_smartplugv2.yaml │ │ ├── dunwore_f60_floorheating.yaml │ │ ├── duoqu_selfcleaning_litterbox.yaml │ │ ├── duracomfort_dh50pwm_dehumidifier.yaml │ │ ├── duux_blizzard_portable_aircon.yaml │ │ ├── duux_bright_purifier.yaml │ │ ├── duux_whisper_fan.yaml │ │ ├── duux_whisper_flex_ultimate_fan.yaml │ │ ├── dynasty_btx_fireplace.yaml │ │ ├── dyras_tf16wifi_towerfan.yaml │ │ ├── eanons_humidifier.yaml │ │ ├── earu_dpn_circuitbreaker.yaml │ │ ├── earu_eaemp3c100_energymeter.yaml │ │ ├── earu_k6h3aw_thermostat.yaml │ │ ├── earu_multicircuit_energymeter.yaml │ │ ├── earu_smart_wifi_circuit_breaker_with_energy_monitor.yaml │ │ ├── easybaby_gs801_milkmaker.yaml │ │ ├── ebac_dj4000_dehumidifier.yaml │ │ ├── eberg_cooly_c35hd.yaml │ │ ├── eberg_fyn_towerfan.yaml │ │ ├── eberg_qubo_q40hd_heatpump.yaml │ │ ├── eberg_rico_r12e2_dehumidifier.yaml │ │ ├── echief_sgh01_planter.yaml │ │ ├── ecopoint_ev_charger.yaml │ │ ├── ecostrad_accentiq_heater.yaml │ │ ├── ecostrad_iq_heating_element.yaml │ │ ├── ecostrad_iqceramic_radiator.yaml │ │ ├── edgetheorylabs_coldplunge_heatpump.yaml │ │ ├── eeese_anna_dehumidifier.yaml │ │ ├── eeese_carl_dehumidifier.yaml │ │ ├── eeese_otto_dehumidifier.yaml │ │ ├── eesee_adam_dehumidifier.yaml │ │ ├── eg4_solar_heatpump.yaml │ │ ├── eglo_ceiling_fan.yaml │ │ ├── elechico_ccst6001_thermostat.yaml │ │ ├── electric_panel_heater.yaml │ │ ├── electriq_12wminv_heatpump.yaml │ │ ├── electriq_airflex15w_heatpump.yaml │ │ ├── electriq_cd12pro_dehumidifier.yaml │ │ ├── electriq_cd12pw_dehumidifier.yaml │ │ ├── electriq_cd12pwv2_dehumidifier.yaml │ │ ├── electriq_cd20pro_dehumidifier.yaml │ │ ├── electriq_cd25pro_dehumidifier.yaml │ │ ├── electriq_desd9lw_dehumidifier.yaml │ │ ├── electriq_desd9lwv2_dehumidifier.yaml │ │ ├── electriq_ecosilent12wap_aircon.yaml │ │ ├── electriq_ecosilent14hpw_aircon.yaml │ │ ├── electriq_pd45e_dehumidifier.yaml │ │ ├── electriq_sc16hpw_aircon.yaml │ │ ├── elinksmart_khsy2626_fan.yaml │ │ ├── elspet_cat_litterbox.yaml │ │ ├── em3378_weather_station.yaml │ │ ├── emerio_dh129238_dehumidifier.yaml │ │ ├── emmeti_zona_thermostat.yaml │ │ ├── ems_waterheater.yaml │ │ ├── emylo_energy_meter.yaml │ │ ├── enbrighten_cafe_stringlights.yaml │ │ ├── enbrighten_curtainlights.yaml │ │ ├── energy_monitoring_powerstrip.yaml │ │ ├── ept_level_sensor.yaml │ │ ├── eruiklink_curtains.yaml │ │ ├── erz04c_energy_meter.yaml │ │ ├── es01_powerstrip.yaml │ │ ├── espfort_ecspsp_usbsmartplug.yaml │ │ ├── essentials_purifier.yaml │ │ ├── essentials_smart_electric_heater.yaml │ │ ├── etersky_aroma_diffuser.yaml │ │ ├── etersky_curtain_switch.yaml │ │ ├── etna_vw644mc_dishwasher.yaml │ │ ├── etop_ch7100_thermostat.yaml │ │ ├── etop_fcu_thermostat.yaml │ │ ├── etop_ht_thermostat.yaml │ │ ├── etop_htch_thermostat.yaml │ │ ├── eurom_600_heater.yaml │ │ ├── eurom_600_heater_v2.yaml │ │ ├── eurom_601_heater.yaml │ │ ├── eurom_800_heater.yaml │ │ ├── eurom_alutherm_heater.yaml │ │ ├── eurom_alutherm_heater_v2.yaml │ │ ├── eurom_sani_bathroom_towel_radiator.yaml │ │ ├── eurom_saniwallheat2000_heater.yaml │ │ ├── eurom_walldesignheat2000_heater.yaml │ │ ├── eurom_wifi_thermostat.yaml │ │ ├── euroster4040_thermostat.yaml │ │ ├── evotherm_eti_heatpump.yaml │ │ ├── evsun_evcharger.yaml │ │ ├── extreme_aquariumlight.yaml │ │ ├── ezaiot_r9lite_thermostat.yaml │ │ ├── ezaiot_thermostat_smartplug.yaml │ │ ├── fairland_iphcr15_heatpump.yaml │ │ ├── fairland_rmic06_heatpump.yaml │ │ ├── fairland_x20_poolheatpump.yaml │ │ ├── fanco_ecosilentdeluxe.yaml │ │ ├── fancyled_fpgahdmi2_light.yaml │ │ ├── faroro_pet_feeder.yaml │ │ ├── feit_dimmer.yaml │ │ ├── ferroli_titano_twin.yaml │ │ ├── fersk_vind_2_climate.yaml │ │ ├── feyree_ev_charger.yaml │ │ ├── feyree_ev_portable_charger.yaml │ │ ├── fisher_summer_air_conditioner.yaml │ │ ├── fisher_water_heatpump.yaml │ │ ├── flinq_breeze_pedestalfan.yaml │ │ ├── forceclima_soundless_airconditioner.yaml │ │ ├── fral_supercool_airconditioner.yaml │ │ ├── fral_supercool_airconditioner_fsc08.yaml │ │ ├── fresco_hydrateultra_petfountain.yaml │ │ ├── fresco_hydrateultra_petfountain_v2.yaml │ │ ├── friedrich_airconditioner.yaml │ │ ├── friedrich_uct08b10a_airconditioner.yaml │ │ ├── fs_03w_curtain.yaml │ │ ├── fuers_videodoorbell.yaml │ │ ├── fujicool_yuzu_heatpump.yaml │ │ ├── gainsboroughliberty_entrance_lock.yaml │ │ ├── galaxy_projector_light.yaml │ │ ├── gaqqee_kws302wf_energymeter.yaml │ │ ├── garage_door_camera.yaml │ │ ├── garage_door_opener.yaml │ │ ├── gardenpac_heatpump.yaml │ │ ├── garza_irrigation_system.yaml │ │ ├── garza_thermostat.yaml │ │ ├── gautone_pg103_alarm.yaml │ │ ├── ge_jasco_ultra_pro_toggle_dimmer_v2.yaml │ │ ├── ge_jasco_ultra_pro_toggle_switch.yaml │ │ ├── generic_5speed_fanregulator.yaml │ │ ├── geyserwise_water_heater.yaml │ │ ├── ghome_sw19_fanlight.yaml │ │ ├── giatsu_vaw2_waterheater.yaml │ │ ├── gold_cct_lightbulb.yaml │ │ ├── goldair_101cm_tower_fan.yaml │ │ ├── goldair_dehumidifier.yaml │ │ ├── goldair_fan.yaml │ │ ├── goldair_geco_heater.yaml │ │ ├── goldair_ggk1000_kettle │ │ ├── goldair_gpcv_heater.yaml │ │ ├── goldair_gpdh340_dehumidifier.yaml │ │ ├── goldair_gpph900_heater.yaml │ │ ├── goldair_gpph_heater.yaml │ │ ├── goldair_phet07ea_heater.yaml │ │ ├── goldair_platinum_tower_fan.yaml │ │ ├── goldair_portable_airconditioner.yaml │ │ ├── goldair_smartsleep_bedwarmer.yaml │ │ ├── gologi_dehumidifier.yaml │ │ ├── goodcell_ev_charger.yaml │ │ ├── gorilla_fan_v2.yaml │ │ ├── gosund_SW2_dimmer_switch.yaml │ │ ├── gosund_sp112_usbsmartplug.yaml │ │ ├── gosund_usb_triple_powerstrip.yaml │ │ ├── gosund_wp9rtl_usbpowerstrip.yaml │ │ ├── gotzejensen_kt975k_kettle.yaml │ │ ├── gratkit_filament_dryer.yaml │ │ ├── graywind_shades.yaml │ │ ├── greenmigo_alpha_q25_pro_wifi.yaml │ │ ├── greenwind_dehumidifier.yaml │ │ ├── grid_connect_double_switch.yaml │ │ ├── grid_connect_usb_double_power_point.yaml │ │ ├── grid_connect_usb_power_point.yaml │ │ ├── gts8_40_2P_breaker.yaml │ │ ├── gw_motor_roller_blind.yaml │ │ ├── gzair_radon_gas_detector.yaml │ │ ├── haier_nayun_gasalarm.yaml │ │ ├── hama_radiator_controller.yaml │ │ ├── haoliyuan_ewc02_airquality.yaml │ │ ├── haozee_presence_wallswitch.yaml │ │ ├── haozee_ps10_presenceswitch.yaml │ │ ├── haozee_rbsrain01_rainsensor.yaml │ │ ├── haozee_watervalve.yaml │ │ ├── hapaw_pet_fountain.yaml │ │ ├── hauschen_smart_mirror.yaml │ │ ├── hdmi_ambient65_light.yaml │ │ ├── hdmi_sync_light.yaml │ │ ├── heatstorm_dh100twi_heater.yaml │ │ ├── heatstorm_hs6000gc_heater.yaml │ │ ├── hellnar_heatpump.yaml │ │ ├── herschel_irheater.yaml │ │ ├── herschel_selectxls_mirror.yaml │ │ ├── herschel_xls_tpl_thermostat.yaml │ │ ├── himox_h05_purifier.yaml │ │ ├── himox_h06_purifier.yaml │ │ ├── hiper_bladeless_fan.yaml │ │ ├── hircr_remote_control.yaml │ │ ├── hisb80a_energymeter.yaml │ │ ├── hjz_radiator.yaml │ │ ├── hlg_infinity_alarm.yaml │ │ ├── hoenofly_ceiling_fan_with_light.yaml │ │ ├── hoenyzy_valve_timer.yaml │ │ ├── holman_helios_weatherstation.yaml │ │ ├── holman_wx1_taptimer.yaml │ │ ├── holman_wx2_taptimer.yaml │ │ ├── holman_wx8_irrigation_controller.yaml │ │ ├── holmes_tower_fan.yaml │ │ ├── hombli_6speed_ceilingfan.yaml │ │ ├── hombli_thermostatic_radiator_valve.yaml │ │ ├── homebase_oscillating_fan.yaml │ │ ├── homemate_fan_regulator.yaml │ │ ├── homemate_multi_switch.yaml │ │ ├── homemate_ptzcamera.yaml │ │ ├── homend_royaltea_kettle.yaml │ │ ├── honeyguardian_s56_petfeeder.yaml │ │ ├── honeywell_air_touch_p2.yaml │ │ ├── honeywell_dehumidifier.yaml │ │ ├── hornbill_y4_smart_lock.yaml │ │ ├── hosome_purifier.yaml │ │ ├── hotshot2000_heater.yaml │ │ ├── howeall_register_booster_fan.yaml │ │ ├── hrt_as90_climatealarm.yaml │ │ ├── hunterpacific_9speed_fanlight.yaml │ │ ├── huntertbk_hf6602t_doorbell.yaml │ │ ├── hy_combo_heatpump.yaml │ │ ├── hyd_weair_plus_fan.yaml │ │ ├── hydrotherm_dynamic_x8_water_heater.yaml │ │ ├── hydrotherm_dynamic_x8_water_heaterv6.yaml │ │ ├── hysen_hy02tp_thermostat.yaml │ │ ├── hysen_hy08acf_thermostat.yaml │ │ ├── hysen_hy08we2_thermostat.yaml │ │ ├── hysen_hy101rf_thermostat.yaml │ │ ├── hyundai_sahara_dehumidifier.yaml │ │ ├── idea_heatingbelt_airconditioner.yaml │ │ ├── idra_skiv_airconditioner.yaml │ │ ├── iebelong_ech_doorbell_rfhub.yaml │ │ ├── igenix_ig9901wifi_airconditioner.yaml │ │ ├── igethome_ds1_videodoorbell.yaml │ │ ├── ih001_led_controller.yaml │ │ ├── ihome_autovac_nova.yaml │ │ ├── ihunt_400_airpurifier.yaml │ │ ├── ihunt_50_airpurifier.yaml │ │ ├── illumanance_sensor.yaml │ │ ├── illumanance_v2_sensor.yaml │ │ ├── ilonda_l88_fishfeeder.yaml │ │ ├── imitos_downlight.yaml │ │ ├── immax_neo_light_vento.yaml │ │ ├── immax_neolite_weatherstation.yaml │ │ ├── inkbird_bbq4t_thermometer.yaml │ │ ├── inkbird_bbq4t_thermometerv2.yaml │ │ ├── inkbird_ibbq4bw_thermometer.yaml │ │ ├── inkbird_ibs_m1s.yaml │ │ ├── inkbird_ibs_m2.yaml │ │ ├── inkbird_ibt_26s_thermometer.yaml │ │ ├── inkbird_ihc200_humiditycontroller.yaml │ │ ├── inkbird_ipt2ch_thermostat.yaml │ │ ├── inkbird_isc007bw_smokercontrol.yaml │ │ ├── inkbird_itc306a_thermostat.yaml │ │ ├── inkbird_itc308_thermostat.yaml │ │ ├── inkbird_pth9cw_airquality.yaml │ │ ├── inkbird_sousvide_cooker.yaml │ │ ├── inline_ultrasonic_aromadiffuser.yaml │ │ ├── inow_heater_element.yaml │ │ ├── inow_heater_element_v2.yaml │ │ ├── intelbras_IFR7000_lock.yaml │ │ ├── inventor_atmospherexl_dehumidifier.yaml │ │ ├── inventor_comfort_airconditioner.yaml │ │ ├── inventor_evaionpro_dehumidifier.yaml │ │ ├── inventor_risepro8l_dehumidifier.yaml │ │ ├── inventor_tokenslegend_airconditioner.yaml │ │ ├── ion_wifi_dimmer.yaml │ │ ├── ipettie_w5_petfeeder.yaml │ │ ├── ips_pro_heatpump.yaml │ │ ├── ir_moes_heatpump.yaml │ │ ├── ir_remote_sensors.yaml │ │ ├── isparkle_rgb_ledcurtain.yaml │ │ ├── its_45hd_heatpump.yaml │ │ ├── jh_pcmini.yaml │ │ ├── jh_pcpro+.yaml │ │ ├── jiahong_et44w_thermostat.yaml │ │ ├── jiahong_et72w_thermostat.yaml │ │ ├── jjpro_jpd01_dehumidifier.yaml │ │ ├── jjpro_jpd02_dehumidifier.yaml │ │ ├── juskys_oh125bw2_radiator.yaml │ │ ├── kabum_smart500_vacuum.yaml │ │ ├── kabum_smart700_v2023_vaccum.yaml │ │ ├── kabum_smart700_vacuum.yaml │ │ ├── kanchou_petfountain.yaml │ │ ├── kavunion_c1_ventilationfan.yaml │ │ ├── kcl_m1803a_diffuser.yaml │ │ ├── kcvents_vt501_fan.yaml │ │ ├── kennedy_fireplace.yaml │ │ ├── kerui_200w_camera.yaml │ │ ├── kerui_300w_camera.yaml │ │ ├── kesser_infrared_heater.yaml │ │ ├── kesser_infrared_heater_floodlights.yaml │ │ ├── kesser_infrared_wall_heater.yaml │ │ ├── ketotek_ktem06pro_energymeter.yaml │ │ ├── keyun_rgb_ceilingfan.yaml │ │ ├── kilo_plus_air_purifier.yaml │ │ ├── kimex_cinemascreen.yaml │ │ ├── kiturami_nctr100_thermostat.yaml │ │ ├── kkmoon_airquality_monitor.yaml │ │ ├── kkmoon_thermostat.yaml │ │ ├── klarstein_amazonia_dishwasher.yaml │ │ ├── klarstein_bornholmsmart1500_heater.yaml │ │ ├── klarstein_iceblock_airconditioner.yaml │ │ ├── klarstein_skyscraper_ice_smart.yaml │ │ ├── klarstein_skytowergrandsmart_fan.yaml │ │ ├── klarstein_wonderwall600_irheater.yaml │ │ ├── klarstein_wonderwall_air.yaml │ │ ├── klarstein_wonderwall_bornholm.yaml │ │ ├── klarstein_wonderwall_irheater.yaml │ │ ├── klarta_forste4_purifier.yaml │ │ ├── klarta_humea_humidifier.yaml │ │ ├── klarta_stor2_purifier.yaml │ │ ├── kogan_5pro_airpurifier.yaml │ │ ├── kogan_air_purifier.yaml │ │ ├── kogan_bidet.yaml │ │ ├── kogan_bladeless_fan.yaml │ │ ├── kogan_dehumidifier.yaml │ │ ├── kogan_garage_opener.yaml │ │ ├── kogan_glass_1_7l_kettle.yaml │ │ ├── kogan_kahtp_heater.yaml │ │ ├── kogan_kashmfp20ba_heater.yaml │ │ ├── kogan_kasmgphXXXX_heater.yaml │ │ ├── kogan_kasthfp2kwa_towerheater.yaml │ │ ├── kogan_kasvwac30ya_airconditioner.yaml │ │ ├── kogan_kawfhtp_heater.yaml │ │ ├── kogan_kawfpac09ya_airconditioner.yaml │ │ ├── kogan_kawfpac12ya_airconditioner.yaml │ │ ├── kogan_kawfpac16pya_airconditioner.yaml │ │ ├── kogan_lx10_vacuum.yaml │ │ ├── kogan_lx8_vacuum.yaml │ │ ├── kogan_noise_machine.yaml │ │ ├── kogan_vacuum_lx15.yaml │ │ ├── koiduo_water_heater.yaml │ │ ├── kolanky_evcharger.yaml │ │ ├── komeco_qc60_heatpump.yaml │ │ ├── konlen_snt957w_tempsensor.yaml │ │ ├── konlen_wf96l_waterlevel_controller.yaml │ │ ├── korex_axwf306n_smart_kettle.yaml │ │ ├── krain_krx8_irrigation_controller.yaml │ │ ├── kw02_video_doorbell.yaml │ │ ├── ky_35w10_shutter.yaml │ │ ├── kyvol_e30_vacuum.yaml │ │ ├── kyvol_ea200_humidifier.yaml │ │ ├── ledkia_fan_light.yaml │ │ ├── ledlux_thermostat.yaml │ │ ├── ledvance_smart_plabl100x25b.yaml │ │ ├── lefant_ls1_vacuum.yaml │ │ ├── lefant_m213_vacuum.yaml │ │ ├── lefant_n3_vacuum.yaml │ │ ├── lefant_t700_vacuum.yaml │ │ ├── lehmann_lhohc2013c_radiator.yaml │ │ ├── lenovo_e1_vacuum.yaml │ │ ├── leos_loo_too.yaml │ │ ├── lerlink_highpower_switch.yaml │ │ ├── lexy_f501_fan.yaml │ │ ├── liectroux_g7_vacuum.yaml │ │ ├── liectroux_xr500_t3_vacuum.yaml │ │ ├── lifubide_x600_purifier.yaml │ │ ├── light_string.yaml │ │ ├── lindasmart_7s_doorbell.yaml │ │ ├── linkoze_dual_button.yaml │ │ ├── littepets.yaml │ │ ├── livingcomfort_twinwindow_fan.yaml │ │ ├── loeffen_LFIM6000_icecubemaker.yaml │ │ ├── logicom_powerstrip.yaml │ │ ├── lohxa_sr208c_waterheater.yaml │ │ ├── loonas_curtain.yaml │ │ ├── loratap_curtain_switch.yaml │ │ ├── loratap_curtain_switch_QCSC400ZB-V2.yaml │ │ ├── loratap_dual_switch.yaml │ │ ├── loratap_garage_door.yaml │ │ ├── loratap_relay.yaml │ │ ├── loratap_wifi_curtain_switch_double.yaml │ │ ├── loratap_zigbee_curtain.yaml │ │ ├── loratap_zigbee_six_switch.yaml │ │ ├── loycco_sound_nightlight.yaml │ │ ├── ls830ty_curtain.yaml │ │ ├── lsc_neon_ledstrip.yaml │ │ ├── lsc_ptz_camera.yaml │ │ ├── lsc_rgbcct_ledstrip.yaml │ │ ├── lsc_smart_ceiling_light.yaml │ │ ├── lscsmartconnect_camerapetfeeder.yaml │ │ ├── lscsmartconnect_gardenspotlights.yaml │ │ ├── lscsmartconnect_outdoorcamera.yaml │ │ ├── lscsmartconnect_outdoorptzcamera.yaml │ │ ├── lscsmartconnect_partystring_light.yaml │ │ ├── lscsmartconnect_rgbcct_bulb.yaml │ │ ├── lscsmartconnect_videodoorbell.yaml │ │ ├── lublueblu_sl60d_vacuum.yaml │ │ ├── lucci_fan.yaml │ │ ├── lucking_hs6_lock.yaml │ │ ├── luko_dehumidifier.yaml │ │ ├── lumary_a1_ceilingfanlight.yaml │ │ ├── lyfco_portable_airconditioner.yaml │ │ ├── lytmi_hdmisync_backlight.yaml │ │ ├── m027_curtain.yaml │ │ ├── m515_curtain_motor.yaml │ │ ├── madimack_eco_heatpump.yaml │ │ ├── madimack_elite_v3_heatpump.yaml │ │ ├── madimack_elite_v3_heatpump_updated.yaml │ │ ├── madimack_elitev4_heatpump.yaml │ │ ├── madimack_heatpump.yaml │ │ ├── madimack_inverflow_pro.yaml │ │ ├── makegood_double_power_point_with_energy.yaml │ │ ├── makegood_switch_dual_timer-energy.yaml │ │ ├── makeskyblue_mppt_charger.yaml │ │ ├── malmbergs_dual_dimmer.yaml │ │ ├── malmbergs_single_dimmer.yaml │ │ ├── malmbergs_triple_dimmer.yaml │ │ ├── mamnv_br151_vacuum_and_mop.yaml │ │ ├── manta_windy_MT0200B.yaml │ │ ├── mantra_fan.yaml │ │ ├── marpou_ceiling_lamp_ledlight.yaml │ │ ├── matsee_2way_energymeter.yaml │ │ ├── matsee_2wayv2_energymeter.yaml │ │ ├── maxcio_aromadiffuser.yaml │ │ ├── mayborn_groclock.yaml │ │ ├── me201w_level_sensor.yaml │ │ ├── me80_thermostat.yaml │ │ ├── meaco_aretetwo_dehumidifier.yaml │ │ ├── meacocool_mcseries_airconditioner.yaml │ │ ├── medion_life_p1002.yaml │ │ ├── medion_s10_vacuum.yaml │ │ ├── medion_s20_vacuum.yaml │ │ ├── medion_x10sw_vacuum.yaml │ │ ├── mellerware_citymove_vacuum.yaml │ │ ├── mellerware_comfy_radiator.yaml │ │ ├── minco_mh1823d_thermostat.yaml │ │ ├── minoston_timer_switch.yaml │ │ ├── mirabella_genio_motion_sensor.yaml │ │ ├── mirabella_genio_usb.yaml │ │ ├── mirabella_geniopixel_light.yaml │ │ ├── mirabella_power_strip.yaml │ │ ├── modena_es15sky_waterheater.yaml │ │ ├── modernflames_orion_fireplace.yaml │ │ ├── moebot_s_mower.yaml │ │ ├── moes_bht002_thermostat_c.yaml │ │ ├── moes_controlpanel.yaml │ │ ├── moes_dimmer.yaml │ │ ├── moes_double_curtainswitch.yaml │ │ ├── moes_dual_dimmer.yaml │ │ ├── moes_indoorptz_camera.yaml │ │ ├── moes_motionsensor_light.yaml │ │ ├── moes_motionsensor_switch.yaml │ │ ├── moes_presencesensor.yaml │ │ ├── moes_quad_switch.yaml │ │ ├── moes_rgb_socket.yaml │ │ ├── moes_single_watertimer.yaml │ │ ├── moes_star_projector.yaml │ │ ├── moes_starfeather_switch.yaml │ │ ├── moes_temp_humidity.yaml │ │ ├── moes_threegang.yaml │ │ ├── moes_touch_curtain_switch.yaml │ │ ├── moes_trv_thermostat.yaml │ │ ├── moes_wcmp52_camera.yaml │ │ ├── moes_wht009_thermostat.yaml │ │ ├── moes_wsyeuc_curtainswitch.yaml │ │ ├── moesgo_dimmer.yaml │ │ ├── moistenland_water_timer.yaml │ │ ├── momcozy_white_noise_machine_v2.yaml │ │ ├── monzana_klimaanlage_air_conditioner.yaml │ │ ├── morento_hy4866_wf.yaml │ │ ├── morento_mr7566_wf.yaml │ │ ├── morris_mdb_12160hiw_dehumidifier.yaml │ │ ├── motion_sensor_light.yaml │ │ ├── mppt_4048_solarcharger.yaml │ │ ├── mrc_magnum_floorheater.yaml │ │ ├── mrpure_saltchlorinator.yaml │ │ ├── multi_leaf_dy_107_thermostat.yaml │ │ ├── mustool_mt15mt29_airbox.yaml │ │ ├── mypin_6l_videopetfeeder.yaml │ │ ├── myq_td8_videodoorbell.yaml │ │ ├── myuet_me82_thermostat.yaml │ │ ├── nac_ap470_purifier.yaml │ │ ├── nashone_mts700wb_thermostat.yaml │ │ ├── neatsvor_x600_vacuum.yaml │ │ ├── nedis_airquality.yaml │ │ ├── nedis_htpl20f_heater.yaml │ │ ├── nedis_openclose_sensor.yaml │ │ ├── nedis_outdoor_camera.yaml │ │ ├── nedis_pet_feeder.yaml │ │ ├── nedis_pilldispenser.yaml │ │ ├── nedis_ptc_fan_heater.yaml │ │ ├── nedis_zbrc10wt_remotecontrol.yaml │ │ ├── neo_coolcam_siren.yaml │ │ ├── neo_ir_climate_controller.yaml │ │ ├── neo_zigbee_siren.yaml │ │ ├── neptun_smart_waterleak.yaml │ │ ├── netmostat_n1_thermostat.yaml │ │ ├── nice_digi_lock.yaml │ │ ├── nine_ev_charger.yaml │ │ ├── noeifevo_q21w_evcharger.yaml │ │ ├── nooie_nsp21_smartplug.yaml │ │ ├── nooie_pu13_smartplug.yaml │ │ ├── novadigital_quad_switch.yaml │ │ ├── novadigital_sl06_lock.yaml │ │ ├── nue_smart_fan_3speed_light.yaml │ │ ├── nulite_nlb245_heatpump.yaml │ │ ├── nwt_7speed_fan.yaml │ │ ├── nx_100ap_air_purifier.yaml │ │ ├── nybro_heater.yaml │ │ ├── ogacfo_ultrasonicfloor_humidifier.yaml │ │ ├── okp_k2_vacuum.yaml │ │ ├── omnibreeze_5speed_towerfan.yaml │ │ ├── omnibreeze_tower_fan.yaml │ │ ├── orion_dl033ha_lock.yaml │ │ ├── orion_indoor_siren.yaml │ │ ├── orion_outdoor_siren.yaml │ │ ├── orion_ptc2000_heater.yaml │ │ ├── orion_smart_lock.yaml │ │ ├── orison_chanfok_neo_fan_light.yaml │ │ ├── orison_rgb_ceilingfan.yaml │ │ ├── orno_sigo_doorbell.yaml │ │ ├── oscal_powermax6000_portablepower.yaml │ │ ├── otu_r1o1_lock.yaml │ │ ├── outon_smart_lamp.yaml │ │ ├── ovlaim_ceiling_fan_light.yaml │ │ ├── owon_pct513_thermostat.yaml │ │ ├── papifeed_pet_feeder.yaml │ │ ├── parkside_plgs2012a1_smart_charger.yaml │ │ ├── parkside_ppwd30a1_vacuum.yaml │ │ ├── parkside_solar_inverter.yaml │ │ ├── pc311ty_energy_meter.yaml │ │ ├── pc321ty_energy_meter.yaml │ │ ├── pc321zty_energy_meter.yaml │ │ ├── pc473_3phase_monitor.yaml │ │ ├── petlibro_PLAF103_feeder.yaml │ │ ├── petlibro_camera_feeder.yaml │ │ ├── petoneer_fresco_ezgo_petfountain.yaml │ │ ├── petoneer_frescomini_petfountain.yaml │ │ ├── petoneer_nutri_pet_feeder.yaml │ │ ├── petree_cube_litter_box.yaml │ │ ├── petrust_tkwf002_petfountain.yaml │ │ ├── petsnowy_snowplus_catlitter.yaml │ │ ├── petspride_petfeeder_OO15.yaml │ │ ├── petwant_f13w_petfeeder.yaml │ │ ├── pgst_climate_sensor.yaml │ │ ├── pgst_pw150_alarm.yaml │ │ ├── phw218_waterquality_monitor.yaml │ │ ├── pinelake_birdfeeder.yaml │ │ ├── pinguino_portable_airconditioner.yaml │ │ ├── pinjia_pj3101a_presence.yaml │ │ ├── pir_rgbcw_light.yaml │ │ ├── pir_sensor.yaml │ │ ├── pir_sensor_alarm.yaml │ │ ├── pir_spotlight.yaml │ │ ├── pj1103_clamp_meter.yaml │ │ ├── plantsio_ivy_smart_planter.yaml │ │ ├── plikc_neve_thermostat.yaml │ │ ├── pni_water_feeeder.yaml │ │ ├── poiema_one_purifier.yaml │ │ ├── point_panel_heater.yaml │ │ ├── pointone_stormvspeciv_dual_fan.yaml │ │ ├── polytherm_polyalpha_thermostat.yaml │ │ ├── poolex_arctic_action.yaml │ │ ├── poolex_icespa70_heatpump.yaml │ │ ├── poolex_mag_fi_heatpump.yaml │ │ ├── poolex_q7_heatpump.yaml │ │ ├── poolex_qline_heatpump.yaml │ │ ├── poolex_silverline_heatpump.yaml │ │ ├── poolex_vertigo_heatpump.yaml │ │ ├── poolsana_heatpump.yaml │ │ ├── position_blinds.yaml │ │ ├── powerasia_6inchrecessed_lighting.yaml │ │ ├── powerstrip_3outlet_powermonitor.yaml │ │ ├── powerstrip_4outlet_usbs.yaml │ │ ├── powerstrip_6outlet_usbs.yaml │ │ ├── powerworld_pw040_waterheatpump.yaml │ │ ├── powerworld_pw58330_waterheater.yaml │ │ ├── powerworld_pw58410_hvaconly.yaml │ │ ├── powerworld_pw58410_waterheater.yaml │ │ ├── powr_curve_stand_fan.yaml │ │ ├── prestige_m3_ceilingfanlight.yaml │ │ ├── primebras_athenas_lock.yaml │ │ ├── princess_panel_heater.yaml │ │ ├── princess_pedestal_fan.yaml │ │ ├── princess_tower_fan.yaml │ │ ├── probreeze_pb20.yaml │ │ ├── prodotec_airquality_monitor.yaml │ │ ├── proenergy_pe08_poolheater.yaml │ │ ├── proscenic_a8_airpurifier.yaml │ │ ├── proscenic_a9_airpurifier.yaml │ │ ├── proscenic_m9_vacuum.yaml │ │ ├── prosto_ptc2000_heater.yaml │ │ ├── protech_pt19dw_climateclock.yaml │ │ ├── psmart_t436_thermostat.yaml │ │ ├── pth9bw_airquality.yaml │ │ ├── puppy_kitty_pet_feeder.yaml │ │ ├── puppy_kitty_pet_feeder_f14w.yaml │ │ ├── purline_m100_heater.yaml │ │ ├── pv28-cw_airquality_monitor.yaml │ │ ├── pziot_e01_energymeter.yaml │ │ ├── qh_gd_elegant_heater.yaml │ │ ├── qlima_d812_dehumidifier.yaml │ │ ├── qlima_d820a_dehumidifier.yaml │ │ ├── qnect_usb_powerstrip.yaml │ │ ├── qoto_03_sprinkler.yaml │ │ ├── qoto_05_water_valve.yaml │ │ ├── qs_c01_curtain.yaml │ │ ├── qs_c02_curtain.yaml │ │ ├── quad_power_timer.yaml │ │ ├── quad_powerstrip.yaml │ │ ├── quad_powerstrip_usb.yaml │ │ ├── quad_temphumidity_switch.yaml │ │ ├── raddy_pt5_poolthermometer.yaml │ │ ├── rainpoint_water_timer.yaml │ │ ├── raykube_a1promax_lock.yaml │ │ ├── rcu16_relaymodule.yaml │ │ ├── rectec_rt700_grill.yaml │ │ ├── recteq_rt1250f_grill.yaml │ │ ├── reiga_ceiling_fan.yaml │ │ ├── relay_switch_remote.yaml │ │ ├── remora_heatpump.yaml │ │ ├── renpho_rp_ap001s.yaml │ │ ├── revesien_qprow_diffuser.yaml │ │ ├── rgb_led_strip.yaml │ │ ├── rgb_light_bar.yaml │ │ ├── rgb_nightlight_outlet.yaml │ │ ├── rgbcw_lightbulb.yaml │ │ ├── rgbcw_lightbulb_xld_cl002.yaml │ │ ├── rgbcw_lightbulbv2.yaml │ │ ├── rgbled_garland.yaml │ │ ├── rgbw_lightbulb.yaml │ │ ├── rgbw_lightbulbv2.yaml │ │ ├── rgbww_lightbulb.yaml │ │ ├── rhpd10_doorbell_camera.yaml │ │ ├── richelieu_undercabinet_lighting_pucks.yaml │ │ ├── rinkmo_d2_vacuum.yaml │ │ ├── riyue_box3_fanlight.yaml │ │ ├── rl_video_lock.yaml │ │ ├── rohnson_r28858_airfryer.yaml │ │ ├── rohnson_r9530_dehumidifier.yaml │ │ ├── rojeco_pet_feeder.yaml │ │ ├── rojeco_pet_feeder_ptm001_4l_single.yaml │ │ ├── roomratv_ceiling_fanlight.yaml │ │ ├── rotenso_ronix_heatpump.yaml │ │ ├── royal_airconditioner.yaml │ │ ├── royalclima_fresh_climate.yaml │ │ ├── royalclima_rcb150_ventilation.yaml │ │ ├── rq400a_gasalarm.yaml │ │ ├── rse_tywfh301_gate.yaml │ │ ├── rtcz03_presencesensor.yaml │ │ ├── rumba_bathroom_heater.yaml │ │ ├── rztk_aqua_pro_wifi_humidifier.yaml │ │ ├── s11_rfir_remote.yaml │ │ ├── safe_conn09_barrier.yaml │ │ ├── sailesi_litterbox.yaml │ │ ├── saimetei_towel_warmer.yaml │ │ ├── salcar_t9w_thermostat.yaml │ │ ├── sanden_gaua45hpd_heatpumpcontroller.yaml │ │ ├── saswell_c16_thermostat.yaml │ │ ├── saswell_t29utk_thermostat.yaml │ │ ├── sboardiii_weigand_lock.yaml │ │ ├── sc116wz3a_camera.yaml │ │ ├── scheeair_nova100_ventilationfan.yaml │ │ ├── sd123_hpr01_presence.yaml │ │ ├── sefaul_q9_dehumidifier.yaml │ │ ├── semptec_zx7007_heater.yaml │ │ ├── sencor_air_conditioner.yaml │ │ ├── sendo_airconditioner_c.yaml │ │ ├── sensei_airconditioner.yaml │ │ ├── setti_czajnik_kettle.yaml │ │ ├── seven_channel_switch.yaml │ │ ├── sevr_x1_evcharger.yaml │ │ ├── sh07_sprinkler_controller.yaml │ │ ├── sherko_curtain.yaml │ │ ├── shinco_30d_dehumidifier.yaml │ │ ├── sichler_zx7655_heater.yaml │ │ ├── siguro_apk50_purifier.yaml │ │ ├── siguro_fan.yaml │ │ ├── siguro_sgrhdf300w_dehumidifier.yaml │ │ ├── silvercrest_coffee_maker.yaml │ │ ├── silvercrest_hf6602t_airfryer.yaml │ │ ├── silvercrest_kettle.yaml │ │ ├── simple_blinds.yaml │ │ ├── simple_contact_sensor.yaml │ │ ├── simple_dual_switch.yaml │ │ ├── simple_dual_switch_timer.yaml │ │ ├── simple_dual_switch_timer_v2.yaml │ │ ├── simple_eight_switch.yaml │ │ ├── simple_gate_opener.yaml │ │ ├── simple_lightbulb.yaml │ │ ├── simple_quad_switch.yaml │ │ ├── simple_rgbcw_lightbulb.yaml │ │ ├── simple_six_switch.yaml │ │ ├── simple_switch.yaml │ │ ├── simple_switch_timer.yaml │ │ ├── simple_switch_timerv2.yaml │ │ ├── simple_triple_switch.yaml │ │ ├── simple_triple_switch_timer.yaml │ │ ├── single_phase_clamp_meter.yaml │ │ ├── single_switch_with_backlight.yaml │ │ ├── sirena_ws902plus_siren.yaml │ │ ├── skyfan_dc_fan.yaml │ │ ├── skyfan_fan_light.yaml │ │ ├── smardeer_lock33.yaml │ │ ├── smart_led_strip.yaml │ │ ├── smart_mist3_fan.yaml │ │ ├── smart_multi_plug_4t_4usb.yaml │ │ ├── smart_powerstrip.yaml │ │ ├── smart_powerstrip_3_outlet_energy.yaml │ │ ├── smart_siren_alarm.yaml │ │ ├── smart_surge_protector_plug_2x2.yaml │ │ ├── smart_watering_device.yaml │ │ ├── smartdgm_portable_air_conditioner.yaml │ │ ├── smartmcb_smt006_energymeter.yaml │ │ ├── smartmcb_smt006_energymeterv2.yaml │ │ ├── smartmi_e1_purifier.yaml │ │ ├── smartplug_encoded.yaml │ │ ├── smartplug_usb.yaml │ │ ├── smartplug_with_childlock.yaml │ │ ├── smartplugv1.yaml │ │ ├── smartplugv2.yaml │ │ ├── smartplugv2_childlock.yaml │ │ ├── smartplugv2_energy.yaml │ │ ├── smartplugv2_energyv2.yaml │ │ ├── smartplugv2_energyv3.yaml │ │ ├── smartplugv2_polled_power.yaml │ │ ├── smartplugv3.yaml │ │ ├── smcm_doorbellpro_camera.yaml │ │ ├── smoke_detector.yaml │ │ ├── snt957w_de_cbu_temp_humidity.yaml │ │ ├── snt957w_tde_temp.yaml │ │ ├── sobralik_water_fountain.yaml │ │ ├── soho_air_purifier.yaml │ │ ├── solaire_vitra_smart_heater_s2.yaml │ │ ├── solar_inverter.yaml │ │ ├── solar_inverter_gtb_series.yaml │ │ ├── solareast_aurora2_heatpump.yaml │ │ ├── soleusair_air_purifier.yaml │ │ ├── somgom_double_switch.yaml │ │ ├── somgom_single_switch.yaml │ │ ├── sonnenkoenig_fresco.yaml │ │ ├── sonninkonig_eco_elegance_heater.yaml │ │ ├── sop10_sprinkler.yaml │ │ ├── space_dog_music_lamp.yaml │ │ ├── spaelectrics_light_controller.yaml │ │ ├── speaka_sptvcm510_tvmount.yaml │ │ ├── stadlerform_eva_humidifier.yaml │ │ ├── stadlerform_karl_humidifier.yaml │ │ ├── stadlerform_roger_purifier.yaml │ │ ├── staniot_smart_security_panel.yaml │ │ ├── starlight_heatpump.yaml │ │ ├── steigen_solarpro_dryer.yaml │ │ ├── steinbach_silent_mini_heatpump.yaml │ │ ├── steinbach_solid_4.3_heatpump.yaml │ │ ├── stepuptech_solar_inverter.yaml │ │ ├── stepuptech_solar_inverter_v2.yaml │ │ ├── stirling_fs140dc_fan.yaml │ │ ├── stl_siren.yaml │ │ ├── sulion_ceiling_fan.yaml │ │ ├── sunbeam_dual_bedwarmer.yaml │ │ ├── sunbeam_single_bedwarmer.yaml │ │ ├── sundream_lcseries_chlorinator.yaml │ │ ├── sunred_triangle_heater.yaml │ │ ├── suntec_coolfix_airconditioner.yaml │ │ ├── swimfun_inverboost_poolheatpump.yaml │ │ ├── sws01_weather_station.yaml │ │ ├── sygonix_smarter_dehumidifier.yaml │ │ ├── t5e_wf_thermostat.yaml │ │ ├── tampa_led_system.yaml │ │ ├── tary_taac380_evcharger.yaml │ │ ├── taurus_agadir_heater.yaml │ │ ├── taxnele_energy_meter.yaml │ │ ├── techinc_smart_3m_neon_strip.yaml │ │ ├── teckin_ss42_sockets.yaml │ │ ├── tediton_k7_doorlock.yaml │ │ ├── tefal_xplorer_vacuum.yaml │ │ ├── tellur_thermostat.yaml │ │ ├── templeandwebster_alina_fan.yaml │ │ ├── tera_w01_evcharger.yaml │ │ ├── tesla_air_purifier_mini.yaml │ │ ├── tesla_air_purifier_pro.yaml │ │ ├── tesla_airconditioner.yaml │ │ ├── tesla_aroma_diffuser.yaml │ │ ├── tesla_aux_airconditioner.yaml │ │ ├── tesla_humidifier.yaml │ │ ├── tesla_pet_feeder.yaml │ │ ├── tesla_s300_purifier.yaml │ │ ├── tesla_xl_dehumidifier.yaml │ │ ├── tesvor_s6_vacuum.yaml │ │ ├── tg_electro_motion_sensor.yaml │ │ ├── th05_temp_humidity_sensor.yaml │ │ ├── th05z_temphumidity.yaml │ │ ├── th08_temperature_and_humidity_sensor.yaml │ │ ├── th16_temp_humidity_sensor.yaml │ │ ├── thb2_temperature_and_humidity_sensor.yaml │ │ ├── thermex_if50v_waterheater.yaml │ │ ├── thermex_lima80v_waterheater.yaml │ │ ├── thermoval_aquati_waterheater.yaml │ │ ├── timeguard_wfpir.yaml │ │ ├── tmwf02_fan.yaml │ │ ├── tolviviov_dp21w_alarmpanel.yaml │ │ ├── tompd_63lw_breaker.yaml │ │ ├── tompd_63wifi_breaker.yaml │ │ ├── tomzn_energy_meter.yaml │ │ ├── tonepie_t1pro_catlitterbox.yaml │ │ ├── tonepie_t1pro_catlitterbox_max.yaml │ │ ├── tonepie_t1pro_catlitterbox_v2.yaml │ │ ├── tongou_qcb2_circuitbreaker.yaml │ │ ├── tongou_qcb2_singlephasebreaker.yaml │ │ ├── tongou_qcb2wb_breaker.yaml │ │ ├── tongou_sa1_wifi_energy_meter.yaml │ │ ├── tongou_st463jwt_breaker.yaml │ │ ├── tongou_toqsyswt_breaker.yaml │ │ ├── tontine_039-WIFI_blanket.yaml │ │ ├── topens_wifi_remote_control.yaml │ │ ├── touchstone_sideline_fireplace.yaml │ │ ├── treatlife_ds02_fan.yaml │ │ ├── treatlife_ds03_fan_light.yaml │ │ ├── treatlife_ds03v2_fanlight.yaml │ │ ├── treatlife_dual_plugin_dimmer.yaml │ │ ├── treatlife_psw_presencesensor.yaml │ │ ├── trotec_pac-w_heatpump.yaml │ │ ├── trucool_tc1160_airconditioner.yaml │ │ ├── truelife_air_purrifier_p3.yaml │ │ ├── truelife_air_purrifier_p7.yaml │ │ ├── ts106_alarm.yaml │ │ ├── ttec_reobipro_vacuum.yaml │ │ ├── tuya_000004rime_weather_station.yaml │ │ ├── tuya_energy_meter.yaml │ │ ├── tuya_smart_zigbee_door_sensor.yaml │ │ ├── tv_backlights.yaml │ │ ├── tya238akmp_ambientlight.yaml │ │ ├── tyte_d1_thermostat.yaml │ │ ├── ultenic_air_fryer.yaml │ │ ├── ultenic_t10_vacuum.yaml │ │ ├── unistyle_wt04_watertimer.yaml │ │ ├── unknow_2way_energymeter.yaml │ │ ├── usb_4way_powerstrip.yaml │ │ ├── ustellar_ut99911_rgb.yaml │ │ ├── v330l_petfeeder.yaml │ │ ├── vaco_mobyblue_heatpump.yaml │ │ ├── vacplus_dehumidifier.yaml │ │ ├── valehaus_syzn119_tow_w.yaml │ │ ├── varin_rgbcw_ceilingfan.yaml │ │ ├── vestfrost_vp_a1z40hw_purifier.yaml │ │ ├── vevor_3_7kw_evcharger.yaml │ │ ├── vevor_ev_charger.yaml │ │ ├── vevor_l2_ev_charger.yaml │ │ ├── vevor_selfcleaning_litterbox.yaml │ │ ├── vidos_m13xt_videodoorbell.yaml │ │ ├── vine_tj550_thermostat.yaml │ │ ├── vivax_heatpump.yaml │ │ ├── vivion_airconditioner.yaml │ │ ├── vivosun_de0003_dehumidifier.yaml │ │ ├── vonroc_wifi_heater.yaml │ │ ├── vork_vk6067aw_purifier.yaml │ │ ├── vtaplus_axial_fanheater.yaml │ │ ├── wadapower_q8_evcharger.yaml │ │ ├── warme_gsh_heater.yaml │ │ ├── wasserstein_aquapal_watermonitor.yaml │ │ ├── wdyk_2p63a_energy_meter.yaml │ │ ├── wdyk_3phase_energymonitor.yaml │ │ ├── wdyk_4p100a_energymeter.yaml │ │ ├── weaja_s9_gasalarm.yaml │ │ ├── weau_pool_heatpump.yaml │ │ ├── weau_pool_heatpump13kW.yaml │ │ ├── weau_pool_heatpump_v2.yaml │ │ ├── weeket_kettle.yaml │ │ ├── welltobe_cat_feeder.yaml │ │ ├── wenzhi_wz35_presencesensor.yaml │ │ ├── wetair_wawh1210lw_humidifier.yaml │ │ ├── wetair_wch750_heater.yaml │ │ ├── wf39m_dimmer_smartplug.yaml │ │ ├── wf520d_wifi_dual_touch_dimmer.yaml │ │ ├── wfws02rj_dual_switch.yaml │ │ ├── whm04_doorbell.yaml │ │ ├── wilfa_haze_hu400bc_humidifier.yaml │ │ ├── windcalm_fan.yaml │ │ ├── windcalm_fan_with_light.yaml │ │ ├── windmill_airconditioner.yaml │ │ ├── wistar_roller_blind.yaml │ │ ├── wistar_roller_blind_nopos.yaml │ │ ├── wlrtcz05z_presencesensor.yaml │ │ ├── wolfguard_wt2r_alarm.yaml │ │ ├── wood_wdd90_dehumidifier.yaml │ │ ├── woods_cortina_airconditioner.yaml │ │ ├── woods_milan_airconditioner.yaml │ │ ├── woox_r4028_powerstrip.yaml │ │ ├── woox_r7246_ir_remote_with_th_sensor.yaml │ │ ├── wouej_evcharger.yaml │ │ ├── wzm100w_presence_sensor.yaml │ │ ├── xcase_nx4964_lockbox.yaml │ │ ├── xiumii_smart_human_presence_sensor.yaml │ │ ├── xoca_dac2121c_energy_meter.yaml │ │ ├── xtreme_tc20_codetector.yaml │ │ ├── yagusmart_3pn_energymeter.yaml │ │ ├── yidi_fan_light_switch.yaml │ │ ├── yieryi_ph_meter.yaml │ │ ├── yijingkc_2848_ceilingfan.yaml │ │ ├── yinmik_waterquality_tester.yaml │ │ ├── yp_petfeeeder.yaml │ │ ├── yuposl_petfeeder.yaml │ │ ├── yx025wb_aromadiffuser.yaml │ │ ├── yx316wifi_aroma_diffuser.yaml │ │ ├── yym_805SW_aroma_nightlight.yaml │ │ ├── zemismart_am25_rollerblind.yaml │ │ ├── zemismart_curtain.yaml │ │ ├── zemismart_dpwbs01_sprinklercontroller.yaml │ │ ├── zemismart_roller_shade.yaml │ │ ├── zemismart_roller_shade_zm25r2.yaml │ │ ├── zemismart_sdm01_energymeter.yaml │ │ ├── zemismart_sdm02ttw_energymeter.yaml │ │ ├── zemismart_spm01_energymeter.yaml │ │ ├── zemismart_zm85el1x_rollershade.yaml │ │ ├── zemismart_zmai90_energymeter.yaml │ │ ├── zg205w_mmWave_presence_sensor.yaml │ │ ├── zigbee_climate_alarm.yaml │ │ ├── zigbee_dv7vcs_human_presence_sensor.yaml │ │ ├── zigbee_mir_te100ty_climate_sensor.yaml │ │ ├── zigbee_smart_bulb.yaml │ │ ├── zigbee_ultrasonic_watermeter.yaml │ │ ├── zigbee_waterleak_sensor.yaml │ │ ├── zigbee_zb10wt_temphumid_sensor.yaml │ │ ├── zigbee_zn373186_temphumid_sensor.yaml │ │ ├── zigbee_zth08ztu_temphumid_sensor.yaml │ │ ├── zm_wifi_smartmeter.yaml │ │ ├── zpmeter_ultrasonic_watermeter.yaml │ │ ├── zx_db11_doorbell_alarm.yaml │ │ ├── zx_db11b_doorbell_alarm.yaml │ │ ├── zx_g30_alarm.yaml │ │ ├── zx_gs21_gasmonitor.yaml │ │ ├── zyhps01_human_presence_sensor.yaml │ │ ├── zym100_presence_sensor.yaml │ │ ├── zym100w_presence_sensor.yaml │ │ ├── zym100w_v2_presence_sensor.yaml │ │ └── zym201_presence_sensor.yaml │ ├── diagnostics.py │ ├── entity.py │ ├── event.py │ ├── fan.py │ ├── helpers │ │ ├── config.py │ │ ├── device_config.py │ │ └── log.py │ ├── humidifier.py │ ├── lawn_mower.py │ ├── light.py │ ├── lock.py │ ├── manifest.json │ ├── number.py │ ├── remote.py │ ├── select.py │ ├── sensor.py │ ├── siren.py │ ├── switch.py │ ├── text.py │ ├── time.py │ ├── vacuum.py │ ├── valve.py │ └── water_heater.py ├── uptime_kuma │ ├── __init__.py │ ├── binary_sensor.py │ ├── config_flow.py │ ├── const.py │ ├── entity.py │ ├── manifest.json │ ├── sensor.py │ └── utils.py ├── watchman │ ├── __init__.py │ ├── config_flow.py │ ├── const.py │ ├── coordinator.py │ ├── entity.py │ ├── manifest.json │ ├── sensor.py │ ├── services.yaml │ └── utils │ │ ├── __init__.py │ │ ├── logger.py │ │ └── utils.py ├── xiaomi_cloud_map_extractor │ ├── __init__.py │ ├── camera.py │ ├── common │ │ ├── __init__.py │ │ ├── backoff.py │ │ ├── image_handler.py │ │ ├── map_data.py │ │ ├── map_data_parser.py │ │ ├── vacuum.py │ │ ├── vacuum_v2.py │ │ └── xiaomi_cloud_connector.py │ ├── const.py │ ├── dreame │ │ ├── __init__.py │ │ ├── image_handler.py │ │ ├── map_data_parser.py │ │ └── vacuum.py │ ├── manifest.json │ ├── roidmi │ │ ├── __init__.py │ │ ├── image_handler.py │ │ ├── map_data_parser.py │ │ └── vacuum.py │ ├── services.yaml │ ├── types.py │ ├── unsupported │ │ ├── __init__.py │ │ └── vacuum.py │ ├── viomi │ │ ├── __init__.py │ │ ├── image_handler.py │ │ ├── map_data_parser.py │ │ ├── parsing_buffer.py │ │ └── vacuum.py │ └── xiaomi │ │ ├── __init__.py │ │ ├── image_handler.py │ │ ├── map_data_parser.py │ │ └── vacuum.py ├── youtube │ ├── __init__.py │ ├── manifest.json │ └── sensor.py └── ytube_music_player │ ├── __init__.py │ ├── browse_media.py │ ├── config_flow.py │ ├── const.py │ ├── manifest.json │ ├── media_player.py │ ├── select.py │ ├── sensor.py │ └── services.yaml ├── custom_intents └── example_intent.yaml ├── custom_sentences └── en │ └── example_intent.yaml ├── customizations ├── domains │ └── .gitkeep ├── entities │ └── .gitkeep └── globs │ └── .gitkeep ├── customize_sample.yaml ├── downloads └── .gitkeep ├── entities ├── alerts │ ├── battery_low_devices.yaml │ ├── update_available_addons.yaml │ ├── update_available_hacs.yaml │ └── update_available_supervisor.yaml ├── binary_sensors │ ├── balcony_temp_falling.yaml │ ├── balcony_temp_rising.yaml │ ├── battery_low_devices.yaml │ ├── dark_outside.yaml │ ├── heating_dining_room.yaml │ ├── heating_living_room.yaml │ ├── heating_luka_room.yaml │ ├── heating_zita_room.yaml │ ├── loggia_temp_falling.yaml │ ├── loggia_temp_rising.yaml │ ├── meteoalarm.yaml │ ├── people_home.yaml │ ├── smart_inverter_on.yaml │ ├── update_for_addons.yaml │ ├── update_for_hacs.yaml │ ├── update_for_supervisor.yaml │ └── zigbee_lastseen_problem.yaml ├── cameras │ └── roborock.yaml ├── command_line │ ├── binary_sensors │ │ └── mqtt_status.yaml │ └── sensors │ │ ├── count_lines.yaml │ │ ├── storagenode_status.yaml │ │ └── version_supervisor.yaml ├── counter │ ├── detergent_dishwasher.yaml │ ├── detergent_washingmachine.yaml │ ├── ha_error_counter.yaml │ └── ha_warning_counter.yaml ├── device_trackers │ └── google_maps.yaml ├── geo_location │ └── usgs.yaml ├── groups │ ├── balcony.yaml │ ├── bathroom.yaml │ ├── bedroom.yaml │ ├── corridor.yaml │ ├── dining_room.yaml │ ├── family.yaml │ ├── hall.yaml │ ├── heating.yaml │ ├── home_media.yaml │ ├── kitchen.yaml │ ├── living_room.yaml │ ├── loft.yaml │ ├── luka_room.yaml │ ├── radio.yaml │ ├── toilet.yaml │ └── warning.yaml ├── input_booleans │ ├── ac_running.yaml │ ├── audio_notifications.yaml │ ├── dishwasher_running.yaml │ ├── evening_report_status.yaml │ ├── freeze_warning.yaml │ ├── guest_mode.yaml │ ├── morning_report_status.yaml │ ├── plants │ │ ├── sleep_dracena_,marginate.yaml │ │ ├── sleep_dypsis_lutescenes.yaml │ │ ├── sleep_ficus_benjamina.yaml │ │ ├── sleep_parthenocissus.yaml │ │ ├── sleep_parthenocissus_small.yaml │ │ └── sleep_schefflera_arboricola.yaml │ ├── school.yaml │ ├── school_online_luka.yaml │ ├── school_online_zita.yaml │ ├── solarws_sleep.yaml │ ├── text_notifications.yaml │ ├── ups_on_batteries.yaml │ └── washiing_machine_running.yaml ├── input_datetime │ ├── audio_notification_off.yaml │ ├── audio_notification_on.yaml │ ├── evening_report.yaml │ ├── morning_report.yaml │ ├── school_day_end_luka_a.yaml │ ├── school_day_end_luka_b.yaml │ ├── school_day_end_zita_a.yaml │ ├── school_day_end_zita_b.yaml │ ├── school_day_start_luka_a.yaml │ ├── school_day_start_luka_b.yaml │ ├── school_day_start_zita_a.yaml │ ├── school_day_start_zita_b.yaml │ ├── school_first_day_luka.yaml │ ├── school_first_day_zita.yaml │ ├── school_last_day_luka.yaml │ ├── school_last_day_zita.yaml │ ├── school_wakeup_luka.yaml │ ├── school_wakeup_zita.yaml │ ├── text_notification_off.yaml │ └── text_notification_on.yaml ├── input_number │ ├── energy_daily_cost.yaml │ ├── energy_monthly_cost.yaml │ ├── gas_meter_m3.yaml │ ├── offpeak_energy_cost.yaml │ ├── peak_energy_cost.yaml │ ├── radio_volume.yaml │ ├── servo_slider.yaml │ └── zigbee_join_minutes.yaml ├── input_selects │ ├── logger_level.yaml │ ├── radio_speaker.yaml │ └── radio_station.yaml ├── input_texts │ ├── .gitkeep │ ├── chores_dishwasher.yaml │ ├── chores_dog_walk.yaml │ ├── chores_trash.yaml │ ├── chores_washing_machine.yaml │ ├── custom_radio.yaml │ └── version_latest_notified.yaml ├── lights │ ├── .gitkeep │ ├── README.md │ └── elgato_lights.yaml ├── notify │ ├── andrej_discord.yaml │ ├── clock_me.yaml │ ├── daily_energy_log.yaml │ ├── display_me.yaml │ ├── family_notifications.yaml │ ├── kids_notifications.yaml │ ├── mini_me.yaml │ ├── parents_notifications.yaml │ ├── syno_chat.yaml │ ├── telegram.yaml │ ├── test_me.yaml │ └── whatever_me.yaml ├── persons │ └── .gitkeep ├── plants │ ├── dracena_marginata.yaml │ ├── dypsis_lutescenes.yaml │ ├── ficus_benjamina.yaml │ ├── ficus_benjamina_natasja.yaml │ ├── hydrangea.yaml │ ├── parthenocissu.yaml │ ├── parthenocissus_small.yaml │ ├── schefflera_arboricola.yaml │ └── test_plant.yaml ├── rest_command │ ├── github_actions.yaml │ ├── github_close_issue.yaml │ ├── github_issue_comment.yaml │ ├── github_issue_state.yaml │ ├── new_github_issue.yaml │ ├── new_github_issue_replace_battery.yaml │ ├── new_version_gitbhub_issue_comment.yaml │ └── new_version_github_issue.yaml ├── sensors │ ├── anniversary.yaml │ ├── battery_low_devices.yaml │ ├── holiday.yaml │ ├── lights_1st_floor.yaml │ ├── lights_2nd_floor.yaml │ ├── luftdaten_local.yaml │ ├── media │ │ ├── yt_automateyourlife.yaml │ │ ├── yt_beardedtinker.yaml │ │ ├── yt_intermittech.yaml │ │ ├── yt_makeitwork.yaml │ │ ├── yt_markwatttech.yaml │ │ ├── yt_mostlychris.yaml │ │ ├── yt_slackerlabs.yaml │ │ ├── yt_smarthomemaker.yaml │ │ └── yt_tangotech.yaml │ ├── meteoalarm_description.yaml │ ├── meteoalarm_event.yaml │ ├── meteoalarm_expires.yaml │ ├── meteoalarm_instruction.yaml │ ├── meteoalarm_onset.yaml │ ├── meteoalarm_severity.yaml │ ├── mold_luka_room.yaml │ ├── mold_zita_room.yaml │ ├── odd_even.yaml │ ├── radio_speaker_selected.yaml │ ├── radio_station_selected.yaml │ ├── rain_gauge.yaml │ ├── reddit.yaml │ ├── school │ │ ├── school_days_left_luka.yaml │ │ ├── school_days_left_zita.yaml │ │ ├── school_starts_days_luka.yaml │ │ ├── school_starts_days_zita.yaml │ │ ├── school_today_luka.yaml │ │ ├── school_today_zita.yaml │ │ ├── school_tomorrow_luka.yaml │ │ └── school_tomorrow_zita.yaml │ ├── switchbot_meter.yaml │ ├── switches_1st_floor.yaml │ ├── switches_2nd_floor.yaml │ ├── system │ │ ├── counters │ │ │ ├── count_alerts.yaml │ │ │ ├── count_automations.yaml │ │ │ ├── count_binary_sensors.yaml │ │ │ ├── count_button.yaml │ │ │ ├── count_calendar.yaml │ │ │ ├── count_cameras.yaml │ │ │ ├── count_climate.yaml │ │ │ ├── count_conversation.yaml │ │ │ ├── count_counters.yaml │ │ │ ├── count_cover.yaml │ │ │ ├── count_devices.yaml │ │ │ ├── count_entities.yaml │ │ │ ├── count_event.yaml │ │ │ ├── count_fan.yaml │ │ │ ├── count_groups.yaml │ │ │ ├── count_input_boolean.yaml │ │ │ ├── count_input_datetime.yaml │ │ │ ├── count_input_number.yaml │ │ │ ├── count_input_select.yaml │ │ │ ├── count_input_text.yaml │ │ │ ├── count_lights.yaml │ │ │ ├── count_locks.yaml │ │ │ ├── count_media_players.yaml │ │ │ ├── count_number.yaml │ │ │ ├── count_person.yaml │ │ │ ├── count_plants.yaml │ │ │ ├── count_remote.yaml │ │ │ ├── count_scene.yaml │ │ │ ├── count_schedule.yaml │ │ │ ├── count_scripts.yaml │ │ │ ├── count_select.yaml │ │ │ ├── count_sensors.yaml │ │ │ ├── count_siren.yaml │ │ │ ├── count_stt.yaml │ │ │ ├── count_switch.yaml │ │ │ ├── count_tag.yaml │ │ │ ├── count_text.yaml │ │ │ ├── count_timer.yaml │ │ │ ├── count_todo.yaml │ │ │ ├── count_tts.yaml │ │ │ ├── count_vacuum.yaml │ │ │ ├── count_wake_word.yaml │ │ │ ├── count_weather.yaml │ │ │ └── count_zone.yaml │ │ ├── current_week.yaml │ │ ├── github_latest_issue.yaml │ │ └── time_date.yaml │ ├── today.yaml │ ├── total_away_time_daily.yaml │ ├── utilities │ │ ├── average_humidity.yaml │ │ ├── heating_action_dining_room.yaml │ │ ├── heating_action_living_room.yaml │ │ ├── heating_action_luka_room.yaml │ │ ├── heating_action_zita_room.yaml │ │ ├── heating_dining_status_24h.yaml │ │ ├── heating_dining_status_30d.yaml │ │ ├── heating_living_status_24h.yaml │ │ ├── heating_living_status_30d.yaml │ │ ├── heating_luka_status_24h.yaml │ │ ├── heating_luka_status_30d.yaml │ │ ├── heating_zita_status_24h.yaml │ │ ├── heating_zita_status_30d.yaml │ │ ├── max_room_temps.yaml │ │ ├── min_room_temps.yaml │ │ ├── smart_inverter_average.yaml │ │ ├── smart_inverter_max.yaml │ │ ├── smart_inverter_min.yaml │ │ └── smart_inverter_timer.yaml │ ├── zita_phone_use_today.yaml │ └── zita_phone_use_week.yaml ├── shell_command │ └── mount_music_folder.yaml ├── switches │ ├── radio_mute.yaml │ ├── radio_play.yaml │ ├── radio_stop.yaml │ ├── radio_volume_down.yaml │ ├── radio_volume_up.yaml │ └── wol_bt_pc.yaml ├── templates │ ├── distance_andrej.yaml │ ├── distance_luka.yaml │ ├── distance_mirta.yaml │ ├── distance_zita.yaml │ ├── energy_cost_daily_offpeak.yaml │ ├── energy_cost_daily_peak.yaml │ ├── energy_cost_daily_total.yaml │ ├── energy_cost_monthly_offpeak.yaml │ ├── energy_cost_monthly_total.yaml │ ├── energy_cost_monthy_peak.yaml │ ├── hass_bt_disk_c.yaml │ ├── hass_bt_disk_d.yaml │ ├── hass_luka_disk_c.yaml │ ├── hass_luka_disk_e.yaml │ ├── hass_zita_disk_c.yaml │ ├── lights_downstaris.yaml │ ├── lights_upstairs.yaml │ ├── low_battery_devices.yaml │ ├── openepaper_weather.yaml │ ├── rainfall_today.yaml │ ├── smart_inverter_template_energy.yaml │ ├── smart_inverter_template_power.yaml │ ├── solar_ac_current.yaml │ ├── solar_ac_voltage.yaml │ ├── solar_cumulative_output.yaml │ ├── switches_downstairs.yaml │ └── switches_upstairs.yaml ├── timer │ ├── front_door_open.yaml │ ├── kitchen_motion.yaml │ ├── living_room_motion.yaml │ └── zigbee_permit_join.yaml └── tts │ ├── google_translate.yaml │ ├── google_translate_hr.yaml.disable │ └── microsoft_tts.yaml ├── esphome ├── CCS811.yaml ├── Google_Sans_Bold.ttf ├── Google_Sans_Medium.ttf ├── R24dvd.h ├── apollo-air-1-bd4d64.yaml ├── apollo-msr-1-a5b148.yaml ├── archive │ ├── atom-bluetooth-proxy-e9d154-2.yaml │ ├── atom-bluetooth-proxy-e9d154.yaml │ ├── atom-bt-proxy-luka.yaml │ ├── atom-proxy-8bf364.yaml │ ├── dypsis_lutescenes.yaml │ ├── esp32-bluetooth-proxy-318804.yaml │ ├── esp32c3.yaml │ ├── esphome-web-2f80a0.yaml │ ├── ficus-benjamina.yaml │ ├── light_1.yaml │ ├── loft_pithy_screen.yaml │ ├── m5stack-atom-lite-088eb0.yaml │ ├── m5stackecho.yaml │ ├── parthenocissus.yaml │ ├── parthenocissus_small.yaml │ ├── picow.yaml │ ├── schefflera-arboricola.yaml │ ├── servo.yaml │ ├── sw420.yaml │ └── test.yaml ├── arial.ttf ├── atom-bt-proxy-zita.yaml ├── bt-proxy-loft.yaml ├── common.h ├── dracena_marginata.yaml ├── fonts │ ├── LiberationSans-Bold.ttf │ ├── LiberationSans-BoldItalic.ttf │ ├── LiberationSans-Italic.ttf │ ├── LiberationSans-Regular.ttf │ └── Paul.ttf ├── ili9488.yaml ├── images │ ├── alert.png │ ├── brightness.png │ ├── dinner.png │ ├── door.png │ ├── ha.png │ ├── ioios.png │ └── warmth.png ├── localdeck-2f80a0.yaml ├── m5stack-atom-echo-53e63c.yaml ├── materialdesignicons-webfont.ttf ├── smart_doorbell.yaml ├── t5.yaml ├── tagreader.yaml └── weather_station.yaml ├── google_calendars_sample.yaml ├── integrations ├── alerts.yaml ├── alexa.yaml ├── automations.yaml ├── binary_sensor.yaml ├── camera.yaml ├── cast.yaml.disabled ├── command_line.yaml ├── config.yaml ├── conversation.yaml ├── counter.yaml ├── default_config.yaml ├── device_trackers.yaml ├── ffmpeg.yaml ├── frontend.yaml ├── geo_location.yaml ├── google_assistant.yaml ├── group.yaml ├── history.yaml ├── homeassistant.yaml ├── http.yaml ├── image_processing.yaml ├── input_boolean.yaml ├── input_datetime.yaml ├── input_numbers.yaml ├── input_select.yaml ├── input_texts.yaml ├── intent_script.yaml ├── lights.yaml ├── logbook.yaml ├── logger.yaml ├── media_player.yaml ├── mqtt.yaml ├── namecheapdns.yaml ├── network.yaml ├── notify.yaml ├── person.yaml ├── powercalc.yaml ├── python_scripts.yaml ├── recorder.yaml ├── rest.yaml ├── rest_command.yaml ├── scenes.yaml ├── script.yaml ├── sensor.yaml ├── shell_command.yaml ├── stream.yaml ├── sun.yaml ├── switch.yaml ├── system_health.yaml ├── system_log.yaml ├── template.yaml ├── timer.yaml ├── tts.yaml ├── wakeonlan.yaml ├── weather.yaml ├── webhook.yaml ├── zeroconf.yaml └── zone.yaml ├── ip_bans_sample.yaml ├── known_devices_sample.yaml ├── lovelace ├── 01-home.yaml ├── 02-outdoor.yaml ├── 03-lights.yaml ├── 04-luka_room.yaml ├── 05-zita_room.yaml ├── 06-media.yaml ├── 07-climate.yaml ├── 07-electricity.yaml ├── 08-cameras.yaml ├── 09-backend.yaml ├── 10-voron.yaml ├── 11-plants.yaml ├── 12-battery.yaml ├── 13-doomsday.yaml ├── 14-system.yaml ├── 15-shelly.yaml ├── 16-roborock.yaml ├── 17-test.yaml ├── 18-packages.yaml ├── 19-configuration.yaml └── lovelace.yaml ├── media ├── GothamRnd-Bold.ttf └── youtube-8359676_640.png ├── panels └── iframes │ ├── README.md │ ├── gsheets.yaml │ └── uptime_kuma.yaml.disabled ├── python_scripts ├── light_counter.py ├── sensors │ └── sensors.yaml └── ttgo-t-higrow-aut.py ├── scenes.yaml ├── scripts ├── README.md ├── ac_off_door.yaml ├── ac_on_temperature.yaml ├── almost_midnight_speech.yaml ├── briefing_evening.yaml ├── briefing_morning.yaml ├── evening_lights_speech.yaml ├── google_home_resume.yaml ├── google_home_resume_helper.yaml ├── google_script_ha_restart.yaml ├── google_script_ha_start.yaml ├── midnight_lights_off_speech.yaml ├── notify_engine.yaml ├── nuki_bridge_polling_queue.yaml.disabled ├── play_beardedtinker_yt.yaml ├── pm10_increase_speech.yaml ├── pm25_increase_speech.yaml ├── radio_play.yaml ├── radio_stop.yaml ├── schoolnight_bedtime_luka.yaml ├── schoolnight_bedtime_zita.yaml ├── speech_engine.yaml ├── speech_processing.yaml ├── sunrise_speech.yaml └── telegram_gps_response_andrej_sample.yaml ├── secrets_github.yaml ├── secrets_sample.yaml ├── service_account_ga_sample.json ├── templates └── speech │ ├── briefing.yaml │ ├── briefing.yaml.disabled │ └── rest.yaml.disabled ├── themes ├── README.md ├── clear-dark.yaml ├── dark-blue.yaml ├── dark-cyan.yaml ├── dark-gray.yaml ├── dark-red.yaml ├── google_dark_theme │ └── google_dark_theme.yaml ├── google_light_theme │ └── google_light_theme.yaml ├── light-blue.yaml ├── light-navy-blue.yaml ├── midnight.yaml ├── slate.yaml └── sublimination.yaml ├── tmp ├── .gitkeep └── README.md ├── tts └── .gitkeep └── www ├── .gitkeep ├── custom_lovelace ├── soil-state-card.js.map ├── soil-state-cards.js └── xiaomi_vacuum_map_card │ ├── coordinates-converter.js │ ├── style.js │ ├── texts.js │ └── xiaomi-vacuum-map-card.js └── img └── vacuum.png /.HA_VERSION: -------------------------------------------------------------------------------- 1 | 2025.9.3 -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: ["https://www.youtube.com/BeardedTinker/join"] 2 | -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/.github/config.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/weekly-digest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/.github/weekly-digest.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/yamllint-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/.github/yamllint-config.yml -------------------------------------------------------------------------------- /.timeline: -------------------------------------------------------------------------------- 1 | 1708157640.859293 -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vacuum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/.vacuum -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/README.md -------------------------------------------------------------------------------- /automations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations.yaml -------------------------------------------------------------------------------- /automations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/README.md -------------------------------------------------------------------------------- /automations/alarms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/alarms/README.md -------------------------------------------------------------------------------- /automations/alarms/luka_schoolday_wakeup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/alarms/luka_schoolday_wakeup.yaml -------------------------------------------------------------------------------- /automations/alarms/luka_wifi_connect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/alarms/luka_wifi_connect.yaml -------------------------------------------------------------------------------- /automations/alarms/luka_wifi_disconnect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/alarms/luka_wifi_disconnect.yaml -------------------------------------------------------------------------------- /automations/alarms/school_input_off.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/alarms/school_input_off.yaml -------------------------------------------------------------------------------- /automations/alarms/school_input_on.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/alarms/school_input_on.yaml -------------------------------------------------------------------------------- /automations/alarms/zita_schoolday_bedtime.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/alarms/zita_schoolday_bedtime.yaml -------------------------------------------------------------------------------- /automations/alarms/zita_wifi_connect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/alarms/zita_wifi_connect.yaml -------------------------------------------------------------------------------- /automations/alarms/zita_wifi_disconnect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/alarms/zita_wifi_disconnect.yaml -------------------------------------------------------------------------------- /automations/audio_notification_switch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/audio_notification_switch.yaml -------------------------------------------------------------------------------- /automations/chores_announcement.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/chores_announcement.yaml -------------------------------------------------------------------------------- /automations/chores_announcement_weekend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/chores_announcement_weekend.yaml -------------------------------------------------------------------------------- /automations/chores_assignment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/chores_assignment.yaml -------------------------------------------------------------------------------- /automations/front-door-sensor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/front-door-sensor.yaml -------------------------------------------------------------------------------- /automations/lights/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/lights/README.md -------------------------------------------------------------------------------- /automations/lights/almost-midnight-lights.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/lights/almost-midnight-lights.yaml -------------------------------------------------------------------------------- /automations/lights/midnight-lights.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/lights/midnight-lights.yaml -------------------------------------------------------------------------------- /automations/lights/sunset-lights.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/lights/sunset-lights.yaml -------------------------------------------------------------------------------- /automations/listen_radio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/listen_radio.yaml -------------------------------------------------------------------------------- /automations/locations/home.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/locations/home.yaml -------------------------------------------------------------------------------- /automations/locations/hrt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/locations/hrt.yaml -------------------------------------------------------------------------------- /automations/locations/luka_keys_location.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/locations/luka_keys_location.yaml -------------------------------------------------------------------------------- /automations/locations/office.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/locations/office.yaml -------------------------------------------------------------------------------- /automations/locations/school.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/locations/school.yaml -------------------------------------------------------------------------------- /automations/notification_glovo_app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/notification_glovo_app.yaml -------------------------------------------------------------------------------- /automations/plants/water_plants_reminder.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/plants/water_plants_reminder.yaml -------------------------------------------------------------------------------- /automations/radio_volume.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/radio_volume.yaml -------------------------------------------------------------------------------- /automations/routine_speech_evening.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/routine_speech_evening.yaml -------------------------------------------------------------------------------- /automations/routine_speech_morning.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/routine_speech_morning.yaml -------------------------------------------------------------------------------- /automations/summer_air.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/summer_air.yaml -------------------------------------------------------------------------------- /automations/sunrise_notification.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/sunrise_notification.yaml -------------------------------------------------------------------------------- /automations/switches/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/switches/README.md -------------------------------------------------------------------------------- /automations/switches/remotes/beer_button.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/switches/remotes/beer_button.yaml -------------------------------------------------------------------------------- /automations/system/backup_create_backup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/system/backup_create_backup.yaml -------------------------------------------------------------------------------- /automations/system/backup_restore_state.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/system/backup_restore_state.yaml -------------------------------------------------------------------------------- /automations/system/github-workflow-failed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/system/github-workflow-failed.yaml -------------------------------------------------------------------------------- /automations/system/github_actions_webhook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/system/github_actions_webhook.yaml -------------------------------------------------------------------------------- /automations/system/github_webhook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/system/github_webhook.yaml -------------------------------------------------------------------------------- /automations/system/ha_log_event_trigger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/system/ha_log_event_trigger.yaml -------------------------------------------------------------------------------- /automations/system/ha_start_notifications.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/system/ha_start_notifications.yaml -------------------------------------------------------------------------------- /automations/system/logger_level_select.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/system/logger_level_select.yaml -------------------------------------------------------------------------------- /automations/system/mount_nas.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/system/mount_nas.yaml -------------------------------------------------------------------------------- /automations/system/synology_chat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/system/synology_chat.yaml -------------------------------------------------------------------------------- /automations/system/synology_temp_critical.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/system/synology_temp_critical.yaml -------------------------------------------------------------------------------- /automations/system/tts_clear_cache.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/system/tts_clear_cache.yaml -------------------------------------------------------------------------------- /automations/telegram/telegram-HA-ping.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/telegram/telegram-HA-ping.yaml -------------------------------------------------------------------------------- /automations/telegram/telegram-bot-stop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/telegram/telegram-bot-stop.yaml -------------------------------------------------------------------------------- /automations/telegram/telegram-camera-ss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/telegram/telegram-camera-ss.yaml -------------------------------------------------------------------------------- /automations/telegram/telegram-inline-ping.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/telegram/telegram-inline-ping.yaml -------------------------------------------------------------------------------- /automations/telegram/telegram-lights-menu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/telegram/telegram-lights-menu.yaml -------------------------------------------------------------------------------- /automations/text_notification_switch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/text_notification_switch.yaml -------------------------------------------------------------------------------- /automations/utilities/shelly_gas_alert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/utilities/shelly_gas_alert.yaml -------------------------------------------------------------------------------- /automations/utilities/shelly_gas_normal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/utilities/shelly_gas_normal.yaml -------------------------------------------------------------------------------- /automations/utilities/shelly_gas_warning.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/utilities/shelly_gas_warning.yaml -------------------------------------------------------------------------------- /automations/weather/blitzorung.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/weather/blitzorung.yaml -------------------------------------------------------------------------------- /automations/weather/earthquake_detected.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/weather/earthquake_detected.yaml -------------------------------------------------------------------------------- /automations/weather/meteoalarm-alert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/weather/meteoalarm-alert.yaml -------------------------------------------------------------------------------- /automations/weather/openuv-update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/weather/openuv-update.yaml -------------------------------------------------------------------------------- /automations/webhook_nuki.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/webhook_nuki.yaml -------------------------------------------------------------------------------- /automations/webhook_reolink.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/webhook_reolink.yaml -------------------------------------------------------------------------------- /automations/webhook_unknown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/webhook_unknown.yaml -------------------------------------------------------------------------------- /automations/wehbook_router.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/wehbook_router.yaml -------------------------------------------------------------------------------- /automations/withings_thermo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/withings_thermo.yaml -------------------------------------------------------------------------------- /automations/zigbee_lastseen_alert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/automations/zigbee_lastseen_alert.yaml -------------------------------------------------------------------------------- /configuration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/configuration.yaml -------------------------------------------------------------------------------- /custom_components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /custom_components/alexa_media/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/alexa_media/__init__.py -------------------------------------------------------------------------------- /custom_components/alexa_media/alexa_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/alexa_media/alexa_entity.py -------------------------------------------------------------------------------- /custom_components/alexa_media/alexa_media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/alexa_media/alexa_media.py -------------------------------------------------------------------------------- /custom_components/alexa_media/binary_sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/alexa_media/binary_sensor.py -------------------------------------------------------------------------------- /custom_components/alexa_media/config_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/alexa_media/config_flow.py -------------------------------------------------------------------------------- /custom_components/alexa_media/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/alexa_media/const.py -------------------------------------------------------------------------------- /custom_components/alexa_media/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/alexa_media/exceptions.py -------------------------------------------------------------------------------- /custom_components/alexa_media/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/alexa_media/helpers.py -------------------------------------------------------------------------------- /custom_components/alexa_media/light.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/alexa_media/light.py -------------------------------------------------------------------------------- /custom_components/alexa_media/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/alexa_media/manifest.json -------------------------------------------------------------------------------- /custom_components/alexa_media/media_player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/alexa_media/media_player.py -------------------------------------------------------------------------------- /custom_components/alexa_media/notify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/alexa_media/notify.py -------------------------------------------------------------------------------- /custom_components/alexa_media/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/alexa_media/sensor.py -------------------------------------------------------------------------------- /custom_components/alexa_media/services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/alexa_media/services.py -------------------------------------------------------------------------------- /custom_components/alexa_media/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/alexa_media/services.yaml -------------------------------------------------------------------------------- /custom_components/alexa_media/switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/alexa_media/switch.py -------------------------------------------------------------------------------- /custom_components/anniversaries/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/anniversaries/__init__.py -------------------------------------------------------------------------------- /custom_components/anniversaries/calendar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/anniversaries/calendar.py -------------------------------------------------------------------------------- /custom_components/anniversaries/config_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/anniversaries/config_flow.py -------------------------------------------------------------------------------- /custom_components/anniversaries/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/anniversaries/const.py -------------------------------------------------------------------------------- /custom_components/anniversaries/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/anniversaries/manifest.json -------------------------------------------------------------------------------- /custom_components/anniversaries/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/anniversaries/sensor.py -------------------------------------------------------------------------------- /custom_components/anniversary/__init_.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /custom_components/anniversary/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/anniversary/manifest.json -------------------------------------------------------------------------------- /custom_components/anniversary/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/anniversary/sensor.py -------------------------------------------------------------------------------- /custom_components/battery_notes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/battery_notes/__init__.py -------------------------------------------------------------------------------- /custom_components/battery_notes/button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/battery_notes/button.py -------------------------------------------------------------------------------- /custom_components/battery_notes/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/battery_notes/common.py -------------------------------------------------------------------------------- /custom_components/battery_notes/config_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/battery_notes/config_flow.py -------------------------------------------------------------------------------- /custom_components/battery_notes/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/battery_notes/const.py -------------------------------------------------------------------------------- /custom_components/battery_notes/coordinator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/battery_notes/coordinator.py -------------------------------------------------------------------------------- /custom_components/battery_notes/diagnostics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/battery_notes/diagnostics.py -------------------------------------------------------------------------------- /custom_components/battery_notes/discovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/battery_notes/discovery.py -------------------------------------------------------------------------------- /custom_components/battery_notes/entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/battery_notes/entity.py -------------------------------------------------------------------------------- /custom_components/battery_notes/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/battery_notes/errors.py -------------------------------------------------------------------------------- /custom_components/battery_notes/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/battery_notes/filters.py -------------------------------------------------------------------------------- /custom_components/battery_notes/library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/battery_notes/library.py -------------------------------------------------------------------------------- /custom_components/battery_notes/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/battery_notes/manifest.json -------------------------------------------------------------------------------- /custom_components/battery_notes/repairs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/battery_notes/repairs.py -------------------------------------------------------------------------------- /custom_components/battery_notes/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/battery_notes/sensor.py -------------------------------------------------------------------------------- /custom_components/battery_notes/services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/battery_notes/services.py -------------------------------------------------------------------------------- /custom_components/battery_notes/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/battery_notes/services.yaml -------------------------------------------------------------------------------- /custom_components/battery_notes/store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/battery_notes/store.py -------------------------------------------------------------------------------- /custom_components/blitzortung/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/blitzortung/__init__.py -------------------------------------------------------------------------------- /custom_components/blitzortung/config_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/blitzortung/config_flow.py -------------------------------------------------------------------------------- /custom_components/blitzortung/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/blitzortung/const.py -------------------------------------------------------------------------------- /custom_components/blitzortung/diagnostics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/blitzortung/diagnostics.py -------------------------------------------------------------------------------- /custom_components/blitzortung/geo_location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/blitzortung/geo_location.py -------------------------------------------------------------------------------- /custom_components/blitzortung/geohash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/blitzortung/geohash.py -------------------------------------------------------------------------------- /custom_components/blitzortung/geohash_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/blitzortung/geohash_utils.py -------------------------------------------------------------------------------- /custom_components/blitzortung/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/blitzortung/manifest.json -------------------------------------------------------------------------------- /custom_components/blitzortung/mqtt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/blitzortung/mqtt.py -------------------------------------------------------------------------------- /custom_components/blitzortung/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/blitzortung/sensor.py -------------------------------------------------------------------------------- /custom_components/blitzortung/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "1.3.10" 2 | -------------------------------------------------------------------------------- /custom_components/calendarific/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/calendarific/__init__.py -------------------------------------------------------------------------------- /custom_components/calendarific/config_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/calendarific/config_flow.py -------------------------------------------------------------------------------- /custom_components/calendarific/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/calendarific/const.py -------------------------------------------------------------------------------- /custom_components/calendarific/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/calendarific/manifest.json -------------------------------------------------------------------------------- /custom_components/calendarific/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/calendarific/sensor.py -------------------------------------------------------------------------------- /custom_components/frigate/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/frigate/__init__.py -------------------------------------------------------------------------------- /custom_components/frigate/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/frigate/api.py -------------------------------------------------------------------------------- /custom_components/frigate/binary_sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/frigate/binary_sensor.py -------------------------------------------------------------------------------- /custom_components/frigate/camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/frigate/camera.py -------------------------------------------------------------------------------- /custom_components/frigate/config_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/frigate/config_flow.py -------------------------------------------------------------------------------- /custom_components/frigate/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/frigate/const.py -------------------------------------------------------------------------------- /custom_components/frigate/diagnostics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/frigate/diagnostics.py -------------------------------------------------------------------------------- /custom_components/frigate/icons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/frigate/icons.py -------------------------------------------------------------------------------- /custom_components/frigate/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/frigate/image.py -------------------------------------------------------------------------------- /custom_components/frigate/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/frigate/manifest.json -------------------------------------------------------------------------------- /custom_components/frigate/media_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/frigate/media_source.py -------------------------------------------------------------------------------- /custom_components/frigate/number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/frigate/number.py -------------------------------------------------------------------------------- /custom_components/frigate/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/frigate/sensor.py -------------------------------------------------------------------------------- /custom_components/frigate/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/frigate/services.yaml -------------------------------------------------------------------------------- /custom_components/frigate/switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/frigate/switch.py -------------------------------------------------------------------------------- /custom_components/frigate/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/frigate/update.py -------------------------------------------------------------------------------- /custom_components/frigate/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/frigate/views.py -------------------------------------------------------------------------------- /custom_components/frigate/ws_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/frigate/ws_api.py -------------------------------------------------------------------------------- /custom_components/frigate/ws_event_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/frigate/ws_event_proxy.py -------------------------------------------------------------------------------- /custom_components/growcube/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/growcube/__init__.py -------------------------------------------------------------------------------- /custom_components/growcube/binary_sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/growcube/binary_sensor.py -------------------------------------------------------------------------------- /custom_components/growcube/button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/growcube/button.py -------------------------------------------------------------------------------- /custom_components/growcube/config_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/growcube/config_flow.py -------------------------------------------------------------------------------- /custom_components/growcube/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/growcube/const.py -------------------------------------------------------------------------------- /custom_components/growcube/coordinator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/growcube/coordinator.py -------------------------------------------------------------------------------- /custom_components/growcube/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/growcube/manifest.json -------------------------------------------------------------------------------- /custom_components/growcube/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/growcube/sensor.py -------------------------------------------------------------------------------- /custom_components/growcube/services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/growcube/services.py -------------------------------------------------------------------------------- /custom_components/growcube/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/growcube/services.yaml -------------------------------------------------------------------------------- /custom_components/gtfs2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/gtfs2/__init__.py -------------------------------------------------------------------------------- /custom_components/gtfs2/config_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/gtfs2/config_flow.py -------------------------------------------------------------------------------- /custom_components/gtfs2/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/gtfs2/const.py -------------------------------------------------------------------------------- /custom_components/gtfs2/coordinator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/gtfs2/coordinator.py -------------------------------------------------------------------------------- /custom_components/gtfs2/gtfs_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/gtfs2/gtfs_helper.py -------------------------------------------------------------------------------- /custom_components/gtfs2/gtfs_rt_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/gtfs2/gtfs_rt_helper.py -------------------------------------------------------------------------------- /custom_components/gtfs2/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/gtfs2/manifest.json -------------------------------------------------------------------------------- /custom_components/gtfs2/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/gtfs2/sensor.py -------------------------------------------------------------------------------- /custom_components/gtfs2/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/gtfs2/services.yaml -------------------------------------------------------------------------------- /custom_components/gtfs2/zip_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/gtfs2/zip_file.py -------------------------------------------------------------------------------- /custom_components/hacs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/hacs/__init__.py -------------------------------------------------------------------------------- /custom_components/hacs/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/hacs/base.py -------------------------------------------------------------------------------- /custom_components/hacs/config_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/hacs/config_flow.py -------------------------------------------------------------------------------- /custom_components/hacs/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/hacs/const.py -------------------------------------------------------------------------------- /custom_components/hacs/coordinator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/hacs/coordinator.py -------------------------------------------------------------------------------- /custom_components/hacs/data_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/hacs/data_client.py -------------------------------------------------------------------------------- /custom_components/hacs/diagnostics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/hacs/diagnostics.py -------------------------------------------------------------------------------- /custom_components/hacs/entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/hacs/entity.py -------------------------------------------------------------------------------- /custom_components/hacs/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/hacs/enums.py -------------------------------------------------------------------------------- /custom_components/hacs/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/hacs/exceptions.py -------------------------------------------------------------------------------- /custom_components/hacs/frontend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/hacs/frontend.py -------------------------------------------------------------------------------- /custom_components/hacs/hacs_frontend/__init__.py: -------------------------------------------------------------------------------- 1 | """HACS Frontend""" 2 | from .version import VERSION 3 | 4 | def locate_dir(): 5 | return __path__[0] -------------------------------------------------------------------------------- /custom_components/hacs/hacs_frontend/extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/hacs/hacs_frontend/extra.js -------------------------------------------------------------------------------- /custom_components/hacs/hacs_frontend/version.py: -------------------------------------------------------------------------------- 1 | VERSION="20250128065759" -------------------------------------------------------------------------------- /custom_components/hacs/iconset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/hacs/iconset.js -------------------------------------------------------------------------------- /custom_components/hacs/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/hacs/manifest.json -------------------------------------------------------------------------------- /custom_components/hacs/repairs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/hacs/repairs.py -------------------------------------------------------------------------------- /custom_components/hacs/repositories/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/hacs/repositories/base.py -------------------------------------------------------------------------------- /custom_components/hacs/repositories/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/hacs/repositories/plugin.py -------------------------------------------------------------------------------- /custom_components/hacs/repositories/theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/hacs/repositories/theme.py -------------------------------------------------------------------------------- /custom_components/hacs/switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/hacs/switch.py -------------------------------------------------------------------------------- /custom_components/hacs/system_health.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/hacs/system_health.py -------------------------------------------------------------------------------- /custom_components/hacs/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/hacs/types.py -------------------------------------------------------------------------------- /custom_components/hacs/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/hacs/update.py -------------------------------------------------------------------------------- /custom_components/hacs/utils/__init__.py: -------------------------------------------------------------------------------- 1 | """Initialize HACS utils.""" 2 | -------------------------------------------------------------------------------- /custom_components/hacs/utils/backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/hacs/utils/backup.py -------------------------------------------------------------------------------- /custom_components/hacs/utils/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/hacs/utils/data.py -------------------------------------------------------------------------------- /custom_components/hacs/utils/decode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/hacs/utils/decode.py -------------------------------------------------------------------------------- /custom_components/hacs/utils/decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/hacs/utils/decorator.py -------------------------------------------------------------------------------- /custom_components/hacs/utils/file_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/hacs/utils/file_system.py -------------------------------------------------------------------------------- /custom_components/hacs/utils/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/hacs/utils/filters.py -------------------------------------------------------------------------------- /custom_components/hacs/utils/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/hacs/utils/json.py -------------------------------------------------------------------------------- /custom_components/hacs/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/hacs/utils/logger.py -------------------------------------------------------------------------------- /custom_components/hacs/utils/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/hacs/utils/path.py -------------------------------------------------------------------------------- /custom_components/hacs/utils/queue_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/hacs/utils/queue_manager.py -------------------------------------------------------------------------------- /custom_components/hacs/utils/regex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/hacs/utils/regex.py -------------------------------------------------------------------------------- /custom_components/hacs/utils/store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/hacs/utils/store.py -------------------------------------------------------------------------------- /custom_components/hacs/utils/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/hacs/utils/url.py -------------------------------------------------------------------------------- /custom_components/hacs/utils/validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/hacs/utils/validate.py -------------------------------------------------------------------------------- /custom_components/hacs/utils/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/hacs/utils/version.py -------------------------------------------------------------------------------- /custom_components/hacs/utils/workarounds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/hacs/utils/workarounds.py -------------------------------------------------------------------------------- /custom_components/hacs/validate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/hacs/validate/README.md -------------------------------------------------------------------------------- /custom_components/hacs/validate/__init__.py: -------------------------------------------------------------------------------- 1 | """Initialize validation.""" 2 | -------------------------------------------------------------------------------- /custom_components/hacs/validate/archived.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/hacs/validate/archived.py -------------------------------------------------------------------------------- /custom_components/hacs/validate/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/hacs/validate/base.py -------------------------------------------------------------------------------- /custom_components/hacs/validate/brands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/hacs/validate/brands.py -------------------------------------------------------------------------------- /custom_components/hacs/validate/description.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/hacs/validate/description.py -------------------------------------------------------------------------------- /custom_components/hacs/validate/hacsjson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/hacs/validate/hacsjson.py -------------------------------------------------------------------------------- /custom_components/hacs/validate/images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/hacs/validate/images.py -------------------------------------------------------------------------------- /custom_components/hacs/validate/information.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/hacs/validate/information.py -------------------------------------------------------------------------------- /custom_components/hacs/validate/issues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/hacs/validate/issues.py -------------------------------------------------------------------------------- /custom_components/hacs/validate/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/hacs/validate/manager.py -------------------------------------------------------------------------------- /custom_components/hacs/validate/topics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/hacs/validate/topics.py -------------------------------------------------------------------------------- /custom_components/hacs/websocket/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/hacs/websocket/__init__.py -------------------------------------------------------------------------------- /custom_components/hacs/websocket/critical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/hacs/websocket/critical.py -------------------------------------------------------------------------------- /custom_components/hacs/websocket/repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/hacs/websocket/repository.py -------------------------------------------------------------------------------- /custom_components/hass_agent/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/hass_agent/__init__.py -------------------------------------------------------------------------------- /custom_components/hass_agent/config_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/hass_agent/config_flow.py -------------------------------------------------------------------------------- /custom_components/hass_agent/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/hass_agent/const.py -------------------------------------------------------------------------------- /custom_components/hass_agent/device_trigger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/hass_agent/device_trigger.py -------------------------------------------------------------------------------- /custom_components/hass_agent/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/hass_agent/manifest.json -------------------------------------------------------------------------------- /custom_components/hass_agent/media_player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/hass_agent/media_player.py -------------------------------------------------------------------------------- /custom_components/hass_agent/notify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/hass_agent/notify.py -------------------------------------------------------------------------------- /custom_components/hass_agent/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/hass_agent/views.py -------------------------------------------------------------------------------- /custom_components/higrow/sensors/sensors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/higrow/sensors/sensors.yaml -------------------------------------------------------------------------------- /custom_components/jokes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/jokes/__init__.py -------------------------------------------------------------------------------- /custom_components/jokes/config_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/jokes/config_flow.py -------------------------------------------------------------------------------- /custom_components/jokes/const.py: -------------------------------------------------------------------------------- 1 | """Jokes constants.""" 2 | 3 | DOMAIN = "jokes" 4 | -------------------------------------------------------------------------------- /custom_components/jokes/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/jokes/manifest.json -------------------------------------------------------------------------------- /custom_components/jokes/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/jokes/sensor.py -------------------------------------------------------------------------------- /custom_components/llmvision/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/llmvision/__init__.py -------------------------------------------------------------------------------- /custom_components/llmvision/calendar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/llmvision/calendar.py -------------------------------------------------------------------------------- /custom_components/llmvision/config_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/llmvision/config_flow.py -------------------------------------------------------------------------------- /custom_components/llmvision/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/llmvision/const.py -------------------------------------------------------------------------------- /custom_components/llmvision/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/llmvision/manifest.json -------------------------------------------------------------------------------- /custom_components/llmvision/media_handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/llmvision/media_handlers.py -------------------------------------------------------------------------------- /custom_components/llmvision/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/llmvision/memory.py -------------------------------------------------------------------------------- /custom_components/llmvision/providers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/llmvision/providers.py -------------------------------------------------------------------------------- /custom_components/llmvision/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/llmvision/services.yaml -------------------------------------------------------------------------------- /custom_components/local_luftdaten/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/local_luftdaten/__init__.py -------------------------------------------------------------------------------- /custom_components/local_luftdaten/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/local_luftdaten/const.py -------------------------------------------------------------------------------- /custom_components/local_luftdaten/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/local_luftdaten/sensor.py -------------------------------------------------------------------------------- /custom_components/mass/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/mass/__init__.py -------------------------------------------------------------------------------- /custom_components/mass/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/mass/actions.py -------------------------------------------------------------------------------- /custom_components/mass/config_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/mass/config_flow.py -------------------------------------------------------------------------------- /custom_components/mass/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/mass/const.py -------------------------------------------------------------------------------- /custom_components/mass/entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/mass/entity.py -------------------------------------------------------------------------------- /custom_components/mass/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/mass/helpers.py -------------------------------------------------------------------------------- /custom_components/mass/intent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/mass/intent.py -------------------------------------------------------------------------------- /custom_components/mass/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/mass/manifest.json -------------------------------------------------------------------------------- /custom_components/mass/media_browser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/mass/media_browser.py -------------------------------------------------------------------------------- /custom_components/mass/media_player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/mass/media_player.py -------------------------------------------------------------------------------- /custom_components/mass/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/mass/services.yaml -------------------------------------------------------------------------------- /custom_components/mikrotik_router/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/mikrotik_router/__init__.py -------------------------------------------------------------------------------- /custom_components/mikrotik_router/apiparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/mikrotik_router/apiparser.py -------------------------------------------------------------------------------- /custom_components/mikrotik_router/button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/mikrotik_router/button.py -------------------------------------------------------------------------------- /custom_components/mikrotik_router/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/mikrotik_router/const.py -------------------------------------------------------------------------------- /custom_components/mikrotik_router/entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/mikrotik_router/entity.py -------------------------------------------------------------------------------- /custom_components/mikrotik_router/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/mikrotik_router/helper.py -------------------------------------------------------------------------------- /custom_components/mikrotik_router/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/mikrotik_router/sensor.py -------------------------------------------------------------------------------- /custom_components/mikrotik_router/services.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /custom_components/mikrotik_router/switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/mikrotik_router/switch.py -------------------------------------------------------------------------------- /custom_components/mikrotik_router/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/mikrotik_router/update.py -------------------------------------------------------------------------------- /custom_components/mold_risk_index/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/mold_risk_index/__init__.py -------------------------------------------------------------------------------- /custom_components/mold_risk_index/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/mold_risk_index/const.py -------------------------------------------------------------------------------- /custom_components/mold_risk_index/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/mold_risk_index/sensor.py -------------------------------------------------------------------------------- /custom_components/moonraker/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/moonraker/__init__.py -------------------------------------------------------------------------------- /custom_components/moonraker/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/moonraker/api.py -------------------------------------------------------------------------------- /custom_components/moonraker/binary_sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/moonraker/binary_sensor.py -------------------------------------------------------------------------------- /custom_components/moonraker/button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/moonraker/button.py -------------------------------------------------------------------------------- /custom_components/moonraker/camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/moonraker/camera.py -------------------------------------------------------------------------------- /custom_components/moonraker/config_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/moonraker/config_flow.py -------------------------------------------------------------------------------- /custom_components/moonraker/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/moonraker/const.py -------------------------------------------------------------------------------- /custom_components/moonraker/entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/moonraker/entity.py -------------------------------------------------------------------------------- /custom_components/moonraker/light.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/moonraker/light.py -------------------------------------------------------------------------------- /custom_components/moonraker/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/moonraker/manifest.json -------------------------------------------------------------------------------- /custom_components/moonraker/number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/moonraker/number.py -------------------------------------------------------------------------------- /custom_components/moonraker/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/moonraker/sensor.py -------------------------------------------------------------------------------- /custom_components/moonraker/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/moonraker/services.yaml -------------------------------------------------------------------------------- /custom_components/moonraker/switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/moonraker/switch.py -------------------------------------------------------------------------------- /custom_components/next_rocket_launch/__init__.py: -------------------------------------------------------------------------------- 1 | """The Next Rocket Launch integration.""" 2 | -------------------------------------------------------------------------------- /custom_components/next_rocket_launch/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/next_rocket_launch/sensor.py -------------------------------------------------------------------------------- /custom_components/nuki_ng/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/nuki_ng/__init__.py -------------------------------------------------------------------------------- /custom_components/nuki_ng/binary_sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/nuki_ng/binary_sensor.py -------------------------------------------------------------------------------- /custom_components/nuki_ng/button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/nuki_ng/button.py -------------------------------------------------------------------------------- /custom_components/nuki_ng/config_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/nuki_ng/config_flow.py -------------------------------------------------------------------------------- /custom_components/nuki_ng/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/nuki_ng/constants.py -------------------------------------------------------------------------------- /custom_components/nuki_ng/lock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/nuki_ng/lock.py -------------------------------------------------------------------------------- /custom_components/nuki_ng/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/nuki_ng/manifest.json -------------------------------------------------------------------------------- /custom_components/nuki_ng/nuki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/nuki_ng/nuki.py -------------------------------------------------------------------------------- /custom_components/nuki_ng/select.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/nuki_ng/select.py -------------------------------------------------------------------------------- /custom_components/nuki_ng/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/nuki_ng/sensor.py -------------------------------------------------------------------------------- /custom_components/nuki_ng/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/nuki_ng/services.yaml -------------------------------------------------------------------------------- /custom_components/nuki_ng/states.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/nuki_ng/states.py -------------------------------------------------------------------------------- /custom_components/nuki_ng/switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/nuki_ng/switch.py -------------------------------------------------------------------------------- /custom_components/open_epaper_link/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/open_epaper_link/__init__.py -------------------------------------------------------------------------------- /custom_components/open_epaper_link/button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/open_epaper_link/button.py -------------------------------------------------------------------------------- /custom_components/open_epaper_link/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/open_epaper_link/const.py -------------------------------------------------------------------------------- /custom_components/open_epaper_link/hub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/open_epaper_link/hub.py -------------------------------------------------------------------------------- /custom_components/open_epaper_link/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/open_epaper_link/image.py -------------------------------------------------------------------------------- /custom_components/open_epaper_link/imagegen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/open_epaper_link/imagegen.py -------------------------------------------------------------------------------- /custom_components/open_epaper_link/light.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/open_epaper_link/light.py -------------------------------------------------------------------------------- /custom_components/open_epaper_link/ppb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/open_epaper_link/ppb.ttf -------------------------------------------------------------------------------- /custom_components/open_epaper_link/rbm.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/open_epaper_link/rbm.ttf -------------------------------------------------------------------------------- /custom_components/open_epaper_link/select.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/open_epaper_link/select.py -------------------------------------------------------------------------------- /custom_components/open_epaper_link/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/open_epaper_link/sensor.py -------------------------------------------------------------------------------- /custom_components/open_epaper_link/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/open_epaper_link/text.py -------------------------------------------------------------------------------- /custom_components/open_epaper_link/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/open_epaper_link/util.py -------------------------------------------------------------------------------- /custom_components/openplantbook/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/openplantbook/__init__.py -------------------------------------------------------------------------------- /custom_components/openplantbook/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/openplantbook/const.py -------------------------------------------------------------------------------- /custom_components/openplantbook/uploader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/openplantbook/uploader.py -------------------------------------------------------------------------------- /custom_components/plant/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/plant/__init__.py -------------------------------------------------------------------------------- /custom_components/plant/config_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/plant/config_flow.py -------------------------------------------------------------------------------- /custom_components/plant/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/plant/const.py -------------------------------------------------------------------------------- /custom_components/plant/group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/plant/group.py -------------------------------------------------------------------------------- /custom_components/plant/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/plant/manifest.json -------------------------------------------------------------------------------- /custom_components/plant/number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/plant/number.py -------------------------------------------------------------------------------- /custom_components/plant/plant_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/plant/plant_helpers.py -------------------------------------------------------------------------------- /custom_components/plant/plant_meters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/plant/plant_meters.py -------------------------------------------------------------------------------- /custom_components/plant/plant_thresholds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/plant/plant_thresholds.py -------------------------------------------------------------------------------- /custom_components/plant/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/plant/sensor.py -------------------------------------------------------------------------------- /custom_components/plant/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/plant/services.yaml -------------------------------------------------------------------------------- /custom_components/powercalc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/powercalc/__init__.py -------------------------------------------------------------------------------- /custom_components/powercalc/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/powercalc/common.py -------------------------------------------------------------------------------- /custom_components/powercalc/config_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/powercalc/config_flow.py -------------------------------------------------------------------------------- /custom_components/powercalc/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/powercalc/const.py -------------------------------------------------------------------------------- /custom_components/powercalc/diagnostics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/powercalc/diagnostics.py -------------------------------------------------------------------------------- /custom_components/powercalc/discovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/powercalc/discovery.py -------------------------------------------------------------------------------- /custom_components/powercalc/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/powercalc/errors.py -------------------------------------------------------------------------------- /custom_components/powercalc/flow_helper/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /custom_components/powercalc/group_include/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /custom_components/powercalc/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/powercalc/helpers.py -------------------------------------------------------------------------------- /custom_components/powercalc/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/powercalc/manifest.json -------------------------------------------------------------------------------- /custom_components/powercalc/power_profile/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /custom_components/powercalc/power_profile/loader/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /custom_components/powercalc/repairs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/powercalc/repairs.py -------------------------------------------------------------------------------- /custom_components/powercalc/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/powercalc/sensor.py -------------------------------------------------------------------------------- /custom_components/powercalc/sensors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /custom_components/powercalc/sensors/group/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /custom_components/powercalc/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /custom_components/powercalc/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/powercalc/services.yaml -------------------------------------------------------------------------------- /custom_components/powercalc/strategy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /custom_components/powercalc/strategy/lut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/powercalc/strategy/lut.py -------------------------------------------------------------------------------- /custom_components/services.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /custom_components/spook/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/spook/__init__.py -------------------------------------------------------------------------------- /custom_components/spook/binary_sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/spook/binary_sensor.py -------------------------------------------------------------------------------- /custom_components/spook/button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/spook/button.py -------------------------------------------------------------------------------- /custom_components/spook/config_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/spook/config_flow.py -------------------------------------------------------------------------------- /custom_components/spook/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/spook/const.py -------------------------------------------------------------------------------- /custom_components/spook/ectoplasms/__init__.py: -------------------------------------------------------------------------------- 1 | """Spook - Your homie.""" 2 | -------------------------------------------------------------------------------- /custom_components/spook/ectoplasms/automation/__init__.py: -------------------------------------------------------------------------------- 1 | """Spook - Your homie.""" 2 | -------------------------------------------------------------------------------- /custom_components/spook/ectoplasms/automation/repairs/__init__.py: -------------------------------------------------------------------------------- 1 | """Spook - Your homie.""" 2 | -------------------------------------------------------------------------------- /custom_components/spook/ectoplasms/blueprint/__init__.py: -------------------------------------------------------------------------------- 1 | """Spook - Your homie.""" 2 | -------------------------------------------------------------------------------- /custom_components/spook/ectoplasms/blueprint/services/__init__.py: -------------------------------------------------------------------------------- 1 | """Spook - Your homie.""" 2 | -------------------------------------------------------------------------------- /custom_components/spook/ectoplasms/cloud/__init__.py: -------------------------------------------------------------------------------- 1 | """Spook - Your homie.""" 2 | -------------------------------------------------------------------------------- /custom_components/spook/ectoplasms/group/__init__.py: -------------------------------------------------------------------------------- 1 | """Spook - Your homie.""" 2 | -------------------------------------------------------------------------------- /custom_components/spook/ectoplasms/group/repairs/__init__.py: -------------------------------------------------------------------------------- 1 | """Spook - Your homie.""" 2 | -------------------------------------------------------------------------------- /custom_components/spook/ectoplasms/homeassistant/__init__.py: -------------------------------------------------------------------------------- 1 | """Spook - Your homie.""" 2 | -------------------------------------------------------------------------------- /custom_components/spook/ectoplasms/homeassistant/services/__init__.py: -------------------------------------------------------------------------------- 1 | """Spook - Your homie.""" 2 | -------------------------------------------------------------------------------- /custom_components/spook/ectoplasms/homeassistant/templating/__init__.py: -------------------------------------------------------------------------------- 1 | """Spook - Your homie.""" 2 | -------------------------------------------------------------------------------- /custom_components/spook/ectoplasms/input_number/__init__.py: -------------------------------------------------------------------------------- 1 | """Spook - Your homie.""" 2 | -------------------------------------------------------------------------------- /custom_components/spook/ectoplasms/input_number/services/__init__.py: -------------------------------------------------------------------------------- 1 | """Spook - Your homie.""" 2 | -------------------------------------------------------------------------------- /custom_components/spook/ectoplasms/input_select/__init__.py: -------------------------------------------------------------------------------- 1 | """Spook - Your homie.""" 2 | -------------------------------------------------------------------------------- /custom_components/spook/ectoplasms/input_select/services/__init__.py: -------------------------------------------------------------------------------- 1 | """Spook - Your homie.""" 2 | -------------------------------------------------------------------------------- /custom_components/spook/ectoplasms/integration/__init__.py: -------------------------------------------------------------------------------- 1 | """Spook - Your homie.""" 2 | -------------------------------------------------------------------------------- /custom_components/spook/ectoplasms/integration/repairs/__init__.py: -------------------------------------------------------------------------------- 1 | """Spook - Your homie.""" 2 | -------------------------------------------------------------------------------- /custom_components/spook/ectoplasms/lovelace/__init__.py: -------------------------------------------------------------------------------- 1 | """Spook - Your homie.""" 2 | -------------------------------------------------------------------------------- /custom_components/spook/ectoplasms/lovelace/repairs/__init__.py: -------------------------------------------------------------------------------- 1 | """Spook - Your homie.""" 2 | -------------------------------------------------------------------------------- /custom_components/spook/ectoplasms/number/__init__.py: -------------------------------------------------------------------------------- 1 | """Spook - Your homie.""" 2 | -------------------------------------------------------------------------------- /custom_components/spook/ectoplasms/number/services/__init__.py: -------------------------------------------------------------------------------- 1 | """Spook - Your homie.""" 2 | -------------------------------------------------------------------------------- /custom_components/spook/ectoplasms/person/__init__.py: -------------------------------------------------------------------------------- 1 | """Spook - Your homie.""" 2 | -------------------------------------------------------------------------------- /custom_components/spook/ectoplasms/person/services/__init__.py: -------------------------------------------------------------------------------- 1 | """Spook - Your homie.""" 2 | -------------------------------------------------------------------------------- /custom_components/spook/ectoplasms/proximity/__init__.py: -------------------------------------------------------------------------------- 1 | """Spook - Your homie.""" 2 | -------------------------------------------------------------------------------- /custom_components/spook/ectoplasms/proximity/repairs/__init__.py: -------------------------------------------------------------------------------- 1 | """Spook - Your homie.""" 2 | -------------------------------------------------------------------------------- /custom_components/spook/ectoplasms/recorder/__init__.py: -------------------------------------------------------------------------------- 1 | """Spook - Your homie.""" 2 | -------------------------------------------------------------------------------- /custom_components/spook/ectoplasms/recorder/services/__init__.py: -------------------------------------------------------------------------------- 1 | """Spook - Your homie.""" 2 | -------------------------------------------------------------------------------- /custom_components/spook/ectoplasms/repairs/__init__.py: -------------------------------------------------------------------------------- 1 | """Spook - Your homie.""" 2 | -------------------------------------------------------------------------------- /custom_components/spook/ectoplasms/repairs/services/__init__.py: -------------------------------------------------------------------------------- 1 | """Spook - Your homie.""" 2 | -------------------------------------------------------------------------------- /custom_components/spook/ectoplasms/scene/__init__.py: -------------------------------------------------------------------------------- 1 | """Spook - Your homie.""" 2 | -------------------------------------------------------------------------------- /custom_components/spook/ectoplasms/scene/repairs/__init__.py: -------------------------------------------------------------------------------- 1 | """Spook - Your homie.""" 2 | -------------------------------------------------------------------------------- /custom_components/spook/ectoplasms/script/__init__.py: -------------------------------------------------------------------------------- 1 | """Spook - Your homie.""" 2 | -------------------------------------------------------------------------------- /custom_components/spook/ectoplasms/script/repairs/__init__.py: -------------------------------------------------------------------------------- 1 | """Spook - Your homie.""" 2 | -------------------------------------------------------------------------------- /custom_components/spook/ectoplasms/select/__init__.py: -------------------------------------------------------------------------------- 1 | """Spook - Your homie.""" 2 | -------------------------------------------------------------------------------- /custom_components/spook/ectoplasms/select/services/__init__.py: -------------------------------------------------------------------------------- 1 | """Spook - Your homie.""" 2 | -------------------------------------------------------------------------------- /custom_components/spook/ectoplasms/spook/__init__.py: -------------------------------------------------------------------------------- 1 | """Spook - Your homie.""" 2 | -------------------------------------------------------------------------------- /custom_components/spook/ectoplasms/spook/services/__init__.py: -------------------------------------------------------------------------------- 1 | """Spook - Your homie.""" 2 | -------------------------------------------------------------------------------- /custom_components/spook/ectoplasms/switch_as_x/__init__.py: -------------------------------------------------------------------------------- 1 | """Spook - Your homie.""" 2 | -------------------------------------------------------------------------------- /custom_components/spook/ectoplasms/switch_as_x/repairs/__init__.py: -------------------------------------------------------------------------------- 1 | """Spook - Your homie.""" 2 | -------------------------------------------------------------------------------- /custom_components/spook/ectoplasms/timer/__init__.py: -------------------------------------------------------------------------------- 1 | """Spook - Your homie.""" 2 | -------------------------------------------------------------------------------- /custom_components/spook/ectoplasms/timer/services/__init__.py: -------------------------------------------------------------------------------- 1 | """Spook - Your homie.""" 2 | -------------------------------------------------------------------------------- /custom_components/spook/ectoplasms/trend/__init__.py: -------------------------------------------------------------------------------- 1 | """Spook - Your homie.""" 2 | -------------------------------------------------------------------------------- /custom_components/spook/ectoplasms/trend/repairs/__init__.py: -------------------------------------------------------------------------------- 1 | """Spook - Your homie.""" 2 | -------------------------------------------------------------------------------- /custom_components/spook/ectoplasms/utility_meter/__init__.py: -------------------------------------------------------------------------------- 1 | """Spook - Your homie.""" 2 | -------------------------------------------------------------------------------- /custom_components/spook/ectoplasms/utility_meter/repairs/__init__.py: -------------------------------------------------------------------------------- 1 | """Spook - Your homie.""" 2 | -------------------------------------------------------------------------------- /custom_components/spook/ectoplasms/zone/__init__.py: -------------------------------------------------------------------------------- 1 | """Spook - Your homie.""" 2 | -------------------------------------------------------------------------------- /custom_components/spook/ectoplasms/zone/services/__init__.py: -------------------------------------------------------------------------------- 1 | """Spook - Your homie.""" 2 | -------------------------------------------------------------------------------- /custom_components/spook/entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/spook/entity.py -------------------------------------------------------------------------------- /custom_components/spook/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/spook/event.py -------------------------------------------------------------------------------- /custom_components/spook/integrations/__init__.py: -------------------------------------------------------------------------------- 1 | """Spook - Your homie.""" 2 | -------------------------------------------------------------------------------- /custom_components/spook/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/spook/manifest.json -------------------------------------------------------------------------------- /custom_components/spook/number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/spook/number.py -------------------------------------------------------------------------------- /custom_components/spook/repairs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/spook/repairs.py -------------------------------------------------------------------------------- /custom_components/spook/select.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/spook/select.py -------------------------------------------------------------------------------- /custom_components/spook/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/spook/sensor.py -------------------------------------------------------------------------------- /custom_components/spook/services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/spook/services.py -------------------------------------------------------------------------------- /custom_components/spook/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/spook/services.yaml -------------------------------------------------------------------------------- /custom_components/spook/switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/spook/switch.py -------------------------------------------------------------------------------- /custom_components/spook/templating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/spook/templating.py -------------------------------------------------------------------------------- /custom_components/spook/time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/spook/time.py -------------------------------------------------------------------------------- /custom_components/spook/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/spook/util.py -------------------------------------------------------------------------------- /custom_components/spook_inverse: -------------------------------------------------------------------------------- 1 | /config/custom_components/spook/integrations/spook_inverse -------------------------------------------------------------------------------- /custom_components/tuya_local/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/tuya_local/__init__.py -------------------------------------------------------------------------------- /custom_components/tuya_local/button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/tuya_local/button.py -------------------------------------------------------------------------------- /custom_components/tuya_local/camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/tuya_local/camera.py -------------------------------------------------------------------------------- /custom_components/tuya_local/climate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/tuya_local/climate.py -------------------------------------------------------------------------------- /custom_components/tuya_local/cloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/tuya_local/cloud.py -------------------------------------------------------------------------------- /custom_components/tuya_local/config_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/tuya_local/config_flow.py -------------------------------------------------------------------------------- /custom_components/tuya_local/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/tuya_local/const.py -------------------------------------------------------------------------------- /custom_components/tuya_local/cover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/tuya_local/cover.py -------------------------------------------------------------------------------- /custom_components/tuya_local/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/tuya_local/device.py -------------------------------------------------------------------------------- /custom_components/tuya_local/devices/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /custom_components/tuya_local/diagnostics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/tuya_local/diagnostics.py -------------------------------------------------------------------------------- /custom_components/tuya_local/entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/tuya_local/entity.py -------------------------------------------------------------------------------- /custom_components/tuya_local/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/tuya_local/event.py -------------------------------------------------------------------------------- /custom_components/tuya_local/fan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/tuya_local/fan.py -------------------------------------------------------------------------------- /custom_components/tuya_local/helpers/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/tuya_local/helpers/log.py -------------------------------------------------------------------------------- /custom_components/tuya_local/humidifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/tuya_local/humidifier.py -------------------------------------------------------------------------------- /custom_components/tuya_local/lawn_mower.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/tuya_local/lawn_mower.py -------------------------------------------------------------------------------- /custom_components/tuya_local/light.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/tuya_local/light.py -------------------------------------------------------------------------------- /custom_components/tuya_local/lock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/tuya_local/lock.py -------------------------------------------------------------------------------- /custom_components/tuya_local/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/tuya_local/manifest.json -------------------------------------------------------------------------------- /custom_components/tuya_local/number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/tuya_local/number.py -------------------------------------------------------------------------------- /custom_components/tuya_local/remote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/tuya_local/remote.py -------------------------------------------------------------------------------- /custom_components/tuya_local/select.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/tuya_local/select.py -------------------------------------------------------------------------------- /custom_components/tuya_local/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/tuya_local/sensor.py -------------------------------------------------------------------------------- /custom_components/tuya_local/siren.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/tuya_local/siren.py -------------------------------------------------------------------------------- /custom_components/tuya_local/switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/tuya_local/switch.py -------------------------------------------------------------------------------- /custom_components/tuya_local/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/tuya_local/text.py -------------------------------------------------------------------------------- /custom_components/tuya_local/time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/tuya_local/time.py -------------------------------------------------------------------------------- /custom_components/tuya_local/vacuum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/tuya_local/vacuum.py -------------------------------------------------------------------------------- /custom_components/tuya_local/valve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/tuya_local/valve.py -------------------------------------------------------------------------------- /custom_components/uptime_kuma/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/uptime_kuma/__init__.py -------------------------------------------------------------------------------- /custom_components/uptime_kuma/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/uptime_kuma/const.py -------------------------------------------------------------------------------- /custom_components/uptime_kuma/entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/uptime_kuma/entity.py -------------------------------------------------------------------------------- /custom_components/uptime_kuma/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/uptime_kuma/manifest.json -------------------------------------------------------------------------------- /custom_components/uptime_kuma/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/uptime_kuma/sensor.py -------------------------------------------------------------------------------- /custom_components/uptime_kuma/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/uptime_kuma/utils.py -------------------------------------------------------------------------------- /custom_components/watchman/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/watchman/__init__.py -------------------------------------------------------------------------------- /custom_components/watchman/config_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/watchman/config_flow.py -------------------------------------------------------------------------------- /custom_components/watchman/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/watchman/const.py -------------------------------------------------------------------------------- /custom_components/watchman/coordinator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/watchman/coordinator.py -------------------------------------------------------------------------------- /custom_components/watchman/entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/watchman/entity.py -------------------------------------------------------------------------------- /custom_components/watchman/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/watchman/manifest.json -------------------------------------------------------------------------------- /custom_components/watchman/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/watchman/sensor.py -------------------------------------------------------------------------------- /custom_components/watchman/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/watchman/services.yaml -------------------------------------------------------------------------------- /custom_components/watchman/utils/__init__.py: -------------------------------------------------------------------------------- 1 | """Initialize utils""" 2 | -------------------------------------------------------------------------------- /custom_components/watchman/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/watchman/utils/logger.py -------------------------------------------------------------------------------- /custom_components/watchman/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/watchman/utils/utils.py -------------------------------------------------------------------------------- /custom_components/xiaomi_cloud_map_extractor/__init__.py: -------------------------------------------------------------------------------- 1 | """Xiaomi cloud map extractor.""" 2 | -------------------------------------------------------------------------------- /custom_components/xiaomi_cloud_map_extractor/common/__init__.py: -------------------------------------------------------------------------------- 1 | """Basic functionalities, common for all vacuums.""" 2 | -------------------------------------------------------------------------------- /custom_components/xiaomi_cloud_map_extractor/dreame/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /custom_components/xiaomi_cloud_map_extractor/roidmi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /custom_components/xiaomi_cloud_map_extractor/unsupported/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /custom_components/xiaomi_cloud_map_extractor/viomi/__init__.py: -------------------------------------------------------------------------------- 1 | """Functionalities specific for Viomi vacuums.""" 2 | -------------------------------------------------------------------------------- /custom_components/xiaomi_cloud_map_extractor/xiaomi/__init__.py: -------------------------------------------------------------------------------- 1 | """Functionalities specific for Xiaomi and Roborock vacuums.""" 2 | -------------------------------------------------------------------------------- /custom_components/youtube/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/youtube/__init__.py -------------------------------------------------------------------------------- /custom_components/youtube/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/youtube/manifest.json -------------------------------------------------------------------------------- /custom_components/youtube/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_components/youtube/sensor.py -------------------------------------------------------------------------------- /custom_intents/example_intent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_intents/example_intent.yaml -------------------------------------------------------------------------------- /custom_sentences/en/example_intent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/custom_sentences/en/example_intent.yaml -------------------------------------------------------------------------------- /customizations/domains/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /customizations/entities/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /customizations/globs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /customize_sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/customize_sample.yaml -------------------------------------------------------------------------------- /downloads/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /entities/alerts/battery_low_devices.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/alerts/battery_low_devices.yaml -------------------------------------------------------------------------------- /entities/alerts/update_available_hacs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/alerts/update_available_hacs.yaml -------------------------------------------------------------------------------- /entities/binary_sensors/dark_outside.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/binary_sensors/dark_outside.yaml -------------------------------------------------------------------------------- /entities/binary_sensors/meteoalarm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/binary_sensors/meteoalarm.yaml -------------------------------------------------------------------------------- /entities/binary_sensors/people_home.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/binary_sensors/people_home.yaml -------------------------------------------------------------------------------- /entities/cameras/roborock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/cameras/roborock.yaml -------------------------------------------------------------------------------- /entities/counter/detergent_dishwasher.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/counter/detergent_dishwasher.yaml -------------------------------------------------------------------------------- /entities/counter/ha_error_counter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/counter/ha_error_counter.yaml -------------------------------------------------------------------------------- /entities/counter/ha_warning_counter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/counter/ha_warning_counter.yaml -------------------------------------------------------------------------------- /entities/device_trackers/google_maps.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/device_trackers/google_maps.yaml -------------------------------------------------------------------------------- /entities/geo_location/usgs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/geo_location/usgs.yaml -------------------------------------------------------------------------------- /entities/groups/balcony.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/groups/balcony.yaml -------------------------------------------------------------------------------- /entities/groups/bathroom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/groups/bathroom.yaml -------------------------------------------------------------------------------- /entities/groups/bedroom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/groups/bedroom.yaml -------------------------------------------------------------------------------- /entities/groups/corridor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/groups/corridor.yaml -------------------------------------------------------------------------------- /entities/groups/dining_room.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/groups/dining_room.yaml -------------------------------------------------------------------------------- /entities/groups/family.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/groups/family.yaml -------------------------------------------------------------------------------- /entities/groups/hall.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/groups/hall.yaml -------------------------------------------------------------------------------- /entities/groups/heating.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/groups/heating.yaml -------------------------------------------------------------------------------- /entities/groups/home_media.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/groups/home_media.yaml -------------------------------------------------------------------------------- /entities/groups/kitchen.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/groups/kitchen.yaml -------------------------------------------------------------------------------- /entities/groups/living_room.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/groups/living_room.yaml -------------------------------------------------------------------------------- /entities/groups/loft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/groups/loft.yaml -------------------------------------------------------------------------------- /entities/groups/luka_room.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/groups/luka_room.yaml -------------------------------------------------------------------------------- /entities/groups/radio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/groups/radio.yaml -------------------------------------------------------------------------------- /entities/groups/toilet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/groups/toilet.yaml -------------------------------------------------------------------------------- /entities/groups/warning.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/groups/warning.yaml -------------------------------------------------------------------------------- /entities/input_booleans/ac_running.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/input_booleans/ac_running.yaml -------------------------------------------------------------------------------- /entities/input_booleans/freeze_warning.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/input_booleans/freeze_warning.yaml -------------------------------------------------------------------------------- /entities/input_booleans/guest_mode.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/input_booleans/guest_mode.yaml -------------------------------------------------------------------------------- /entities/input_booleans/school.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/input_booleans/school.yaml -------------------------------------------------------------------------------- /entities/input_booleans/solarws_sleep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/input_booleans/solarws_sleep.yaml -------------------------------------------------------------------------------- /entities/input_datetime/evening_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/input_datetime/evening_report.yaml -------------------------------------------------------------------------------- /entities/input_datetime/morning_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/input_datetime/morning_report.yaml -------------------------------------------------------------------------------- /entities/input_number/gas_meter_m3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/input_number/gas_meter_m3.yaml -------------------------------------------------------------------------------- /entities/input_number/peak_energy_cost.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/input_number/peak_energy_cost.yaml -------------------------------------------------------------------------------- /entities/input_number/radio_volume.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/input_number/radio_volume.yaml -------------------------------------------------------------------------------- /entities/input_number/servo_slider.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/input_number/servo_slider.yaml -------------------------------------------------------------------------------- /entities/input_selects/logger_level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/input_selects/logger_level.yaml -------------------------------------------------------------------------------- /entities/input_selects/radio_speaker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/input_selects/radio_speaker.yaml -------------------------------------------------------------------------------- /entities/input_selects/radio_station.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/input_selects/radio_station.yaml -------------------------------------------------------------------------------- /entities/input_texts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /entities/input_texts/chores_dishwasher.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/input_texts/chores_dishwasher.yaml -------------------------------------------------------------------------------- /entities/input_texts/chores_dog_walk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/input_texts/chores_dog_walk.yaml -------------------------------------------------------------------------------- /entities/input_texts/chores_trash.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/input_texts/chores_trash.yaml -------------------------------------------------------------------------------- /entities/input_texts/custom_radio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/input_texts/custom_radio.yaml -------------------------------------------------------------------------------- /entities/lights/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /entities/lights/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/lights/README.md -------------------------------------------------------------------------------- /entities/lights/elgato_lights.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/lights/elgato_lights.yaml -------------------------------------------------------------------------------- /entities/notify/andrej_discord.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/notify/andrej_discord.yaml -------------------------------------------------------------------------------- /entities/notify/clock_me.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/notify/clock_me.yaml -------------------------------------------------------------------------------- /entities/notify/daily_energy_log.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/notify/daily_energy_log.yaml -------------------------------------------------------------------------------- /entities/notify/display_me.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/notify/display_me.yaml -------------------------------------------------------------------------------- /entities/notify/family_notifications.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/notify/family_notifications.yaml -------------------------------------------------------------------------------- /entities/notify/kids_notifications.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/notify/kids_notifications.yaml -------------------------------------------------------------------------------- /entities/notify/mini_me.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/notify/mini_me.yaml -------------------------------------------------------------------------------- /entities/notify/parents_notifications.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/notify/parents_notifications.yaml -------------------------------------------------------------------------------- /entities/notify/syno_chat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/notify/syno_chat.yaml -------------------------------------------------------------------------------- /entities/notify/telegram.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/notify/telegram.yaml -------------------------------------------------------------------------------- /entities/notify/test_me.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/notify/test_me.yaml -------------------------------------------------------------------------------- /entities/notify/whatever_me.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/notify/whatever_me.yaml -------------------------------------------------------------------------------- /entities/persons/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /entities/plants/dracena_marginata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/plants/dracena_marginata.yaml -------------------------------------------------------------------------------- /entities/plants/dypsis_lutescenes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/plants/dypsis_lutescenes.yaml -------------------------------------------------------------------------------- /entities/plants/ficus_benjamina.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/plants/ficus_benjamina.yaml -------------------------------------------------------------------------------- /entities/plants/hydrangea.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/plants/hydrangea.yaml -------------------------------------------------------------------------------- /entities/plants/parthenocissu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/plants/parthenocissu.yaml -------------------------------------------------------------------------------- /entities/plants/parthenocissus_small.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/plants/parthenocissus_small.yaml -------------------------------------------------------------------------------- /entities/plants/schefflera_arboricola.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/plants/schefflera_arboricola.yaml -------------------------------------------------------------------------------- /entities/plants/test_plant.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/plants/test_plant.yaml -------------------------------------------------------------------------------- /entities/rest_command/github_actions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/rest_command/github_actions.yaml -------------------------------------------------------------------------------- /entities/rest_command/new_github_issue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/rest_command/new_github_issue.yaml -------------------------------------------------------------------------------- /entities/sensors/anniversary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/sensors/anniversary.yaml -------------------------------------------------------------------------------- /entities/sensors/battery_low_devices.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/sensors/battery_low_devices.yaml -------------------------------------------------------------------------------- /entities/sensors/holiday.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/sensors/holiday.yaml -------------------------------------------------------------------------------- /entities/sensors/lights_1st_floor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/sensors/lights_1st_floor.yaml -------------------------------------------------------------------------------- /entities/sensors/lights_2nd_floor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/sensors/lights_2nd_floor.yaml -------------------------------------------------------------------------------- /entities/sensors/luftdaten_local.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/sensors/luftdaten_local.yaml -------------------------------------------------------------------------------- /entities/sensors/media/yt_intermittech.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/sensors/media/yt_intermittech.yaml -------------------------------------------------------------------------------- /entities/sensors/media/yt_makeitwork.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/sensors/media/yt_makeitwork.yaml -------------------------------------------------------------------------------- /entities/sensors/media/yt_markwatttech.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/sensors/media/yt_markwatttech.yaml -------------------------------------------------------------------------------- /entities/sensors/media/yt_mostlychris.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/sensors/media/yt_mostlychris.yaml -------------------------------------------------------------------------------- /entities/sensors/media/yt_slackerlabs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/sensors/media/yt_slackerlabs.yaml -------------------------------------------------------------------------------- /entities/sensors/media/yt_tangotech.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/sensors/media/yt_tangotech.yaml -------------------------------------------------------------------------------- /entities/sensors/meteoalarm_event.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/sensors/meteoalarm_event.yaml -------------------------------------------------------------------------------- /entities/sensors/meteoalarm_expires.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/sensors/meteoalarm_expires.yaml -------------------------------------------------------------------------------- /entities/sensors/meteoalarm_onset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/sensors/meteoalarm_onset.yaml -------------------------------------------------------------------------------- /entities/sensors/meteoalarm_severity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/sensors/meteoalarm_severity.yaml -------------------------------------------------------------------------------- /entities/sensors/mold_luka_room.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/sensors/mold_luka_room.yaml -------------------------------------------------------------------------------- /entities/sensors/mold_zita_room.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/sensors/mold_zita_room.yaml -------------------------------------------------------------------------------- /entities/sensors/odd_even.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/sensors/odd_even.yaml -------------------------------------------------------------------------------- /entities/sensors/rain_gauge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/sensors/rain_gauge.yaml -------------------------------------------------------------------------------- /entities/sensors/reddit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/sensors/reddit.yaml -------------------------------------------------------------------------------- /entities/sensors/switchbot_meter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/sensors/switchbot_meter.yaml -------------------------------------------------------------------------------- /entities/sensors/switches_1st_floor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/sensors/switches_1st_floor.yaml -------------------------------------------------------------------------------- /entities/sensors/switches_2nd_floor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/sensors/switches_2nd_floor.yaml -------------------------------------------------------------------------------- /entities/sensors/system/current_week.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/sensors/system/current_week.yaml -------------------------------------------------------------------------------- /entities/sensors/system/time_date.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/sensors/system/time_date.yaml -------------------------------------------------------------------------------- /entities/sensors/today.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/sensors/today.yaml -------------------------------------------------------------------------------- /entities/sensors/total_away_time_daily.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/sensors/total_away_time_daily.yaml -------------------------------------------------------------------------------- /entities/sensors/zita_phone_use_today.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/sensors/zita_phone_use_today.yaml -------------------------------------------------------------------------------- /entities/sensors/zita_phone_use_week.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/sensors/zita_phone_use_week.yaml -------------------------------------------------------------------------------- /entities/switches/radio_mute.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/switches/radio_mute.yaml -------------------------------------------------------------------------------- /entities/switches/radio_play.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/switches/radio_play.yaml -------------------------------------------------------------------------------- /entities/switches/radio_stop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/switches/radio_stop.yaml -------------------------------------------------------------------------------- /entities/switches/radio_volume_down.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/switches/radio_volume_down.yaml -------------------------------------------------------------------------------- /entities/switches/radio_volume_up.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/switches/radio_volume_up.yaml -------------------------------------------------------------------------------- /entities/switches/wol_bt_pc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/switches/wol_bt_pc.yaml -------------------------------------------------------------------------------- /entities/templates/distance_andrej.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/templates/distance_andrej.yaml -------------------------------------------------------------------------------- /entities/templates/distance_luka.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/templates/distance_luka.yaml -------------------------------------------------------------------------------- /entities/templates/distance_mirta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/templates/distance_mirta.yaml -------------------------------------------------------------------------------- /entities/templates/distance_zita.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/templates/distance_zita.yaml -------------------------------------------------------------------------------- /entities/templates/hass_bt_disk_c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/templates/hass_bt_disk_c.yaml -------------------------------------------------------------------------------- /entities/templates/hass_bt_disk_d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/templates/hass_bt_disk_d.yaml -------------------------------------------------------------------------------- /entities/templates/hass_luka_disk_c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/templates/hass_luka_disk_c.yaml -------------------------------------------------------------------------------- /entities/templates/hass_luka_disk_e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/templates/hass_luka_disk_e.yaml -------------------------------------------------------------------------------- /entities/templates/hass_zita_disk_c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/templates/hass_zita_disk_c.yaml -------------------------------------------------------------------------------- /entities/templates/lights_downstaris.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/templates/lights_downstaris.yaml -------------------------------------------------------------------------------- /entities/templates/lights_upstairs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/templates/lights_upstairs.yaml -------------------------------------------------------------------------------- /entities/templates/low_battery_devices.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/templates/low_battery_devices.yaml -------------------------------------------------------------------------------- /entities/templates/openepaper_weather.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/templates/openepaper_weather.yaml -------------------------------------------------------------------------------- /entities/templates/rainfall_today.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/templates/rainfall_today.yaml -------------------------------------------------------------------------------- /entities/templates/solar_ac_current.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/templates/solar_ac_current.yaml -------------------------------------------------------------------------------- /entities/templates/solar_ac_voltage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/templates/solar_ac_voltage.yaml -------------------------------------------------------------------------------- /entities/templates/switches_downstairs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/templates/switches_downstairs.yaml -------------------------------------------------------------------------------- /entities/templates/switches_upstairs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/templates/switches_upstairs.yaml -------------------------------------------------------------------------------- /entities/timer/front_door_open.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/timer/front_door_open.yaml -------------------------------------------------------------------------------- /entities/timer/kitchen_motion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/timer/kitchen_motion.yaml -------------------------------------------------------------------------------- /entities/timer/living_room_motion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/timer/living_room_motion.yaml -------------------------------------------------------------------------------- /entities/timer/zigbee_permit_join.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/timer/zigbee_permit_join.yaml -------------------------------------------------------------------------------- /entities/tts/google_translate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/tts/google_translate.yaml -------------------------------------------------------------------------------- /entities/tts/microsoft_tts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/entities/tts/microsoft_tts.yaml -------------------------------------------------------------------------------- /esphome/CCS811.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/esphome/CCS811.yaml -------------------------------------------------------------------------------- /esphome/Google_Sans_Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/esphome/Google_Sans_Bold.ttf -------------------------------------------------------------------------------- /esphome/Google_Sans_Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/esphome/Google_Sans_Medium.ttf -------------------------------------------------------------------------------- /esphome/R24dvd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/esphome/R24dvd.h -------------------------------------------------------------------------------- /esphome/apollo-air-1-bd4d64.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/esphome/apollo-air-1-bd4d64.yaml -------------------------------------------------------------------------------- /esphome/apollo-msr-1-a5b148.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/esphome/apollo-msr-1-a5b148.yaml -------------------------------------------------------------------------------- /esphome/archive/atom-bt-proxy-luka.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/esphome/archive/atom-bt-proxy-luka.yaml -------------------------------------------------------------------------------- /esphome/archive/atom-proxy-8bf364.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/esphome/archive/atom-proxy-8bf364.yaml -------------------------------------------------------------------------------- /esphome/archive/dypsis_lutescenes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/esphome/archive/dypsis_lutescenes.yaml -------------------------------------------------------------------------------- /esphome/archive/esp32c3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/esphome/archive/esp32c3.yaml -------------------------------------------------------------------------------- /esphome/archive/esphome-web-2f80a0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/esphome/archive/esphome-web-2f80a0.yaml -------------------------------------------------------------------------------- /esphome/archive/ficus-benjamina.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/esphome/archive/ficus-benjamina.yaml -------------------------------------------------------------------------------- /esphome/archive/light_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/esphome/archive/light_1.yaml -------------------------------------------------------------------------------- /esphome/archive/loft_pithy_screen.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/esphome/archive/loft_pithy_screen.yaml -------------------------------------------------------------------------------- /esphome/archive/m5stackecho.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/esphome/archive/m5stackecho.yaml -------------------------------------------------------------------------------- /esphome/archive/parthenocissus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/esphome/archive/parthenocissus.yaml -------------------------------------------------------------------------------- /esphome/archive/parthenocissus_small.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/esphome/archive/parthenocissus_small.yaml -------------------------------------------------------------------------------- /esphome/archive/picow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/esphome/archive/picow.yaml -------------------------------------------------------------------------------- /esphome/archive/schefflera-arboricola.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/esphome/archive/schefflera-arboricola.yaml -------------------------------------------------------------------------------- /esphome/archive/servo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/esphome/archive/servo.yaml -------------------------------------------------------------------------------- /esphome/archive/sw420.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/esphome/archive/sw420.yaml -------------------------------------------------------------------------------- /esphome/archive/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/esphome/archive/test.yaml -------------------------------------------------------------------------------- /esphome/arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/esphome/arial.ttf -------------------------------------------------------------------------------- /esphome/atom-bt-proxy-zita.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/esphome/atom-bt-proxy-zita.yaml -------------------------------------------------------------------------------- /esphome/bt-proxy-loft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/esphome/bt-proxy-loft.yaml -------------------------------------------------------------------------------- /esphome/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/esphome/common.h -------------------------------------------------------------------------------- /esphome/dracena_marginata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/esphome/dracena_marginata.yaml -------------------------------------------------------------------------------- /esphome/fonts/LiberationSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/esphome/fonts/LiberationSans-Bold.ttf -------------------------------------------------------------------------------- /esphome/fonts/LiberationSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/esphome/fonts/LiberationSans-BoldItalic.ttf -------------------------------------------------------------------------------- /esphome/fonts/LiberationSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/esphome/fonts/LiberationSans-Italic.ttf -------------------------------------------------------------------------------- /esphome/fonts/LiberationSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/esphome/fonts/LiberationSans-Regular.ttf -------------------------------------------------------------------------------- /esphome/fonts/Paul.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/esphome/fonts/Paul.ttf -------------------------------------------------------------------------------- /esphome/ili9488.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/esphome/ili9488.yaml -------------------------------------------------------------------------------- /esphome/images/alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/esphome/images/alert.png -------------------------------------------------------------------------------- /esphome/images/brightness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/esphome/images/brightness.png -------------------------------------------------------------------------------- /esphome/images/dinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/esphome/images/dinner.png -------------------------------------------------------------------------------- /esphome/images/door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/esphome/images/door.png -------------------------------------------------------------------------------- /esphome/images/ha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/esphome/images/ha.png -------------------------------------------------------------------------------- /esphome/images/ioios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/esphome/images/ioios.png -------------------------------------------------------------------------------- /esphome/images/warmth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/esphome/images/warmth.png -------------------------------------------------------------------------------- /esphome/localdeck-2f80a0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/esphome/localdeck-2f80a0.yaml -------------------------------------------------------------------------------- /esphome/m5stack-atom-echo-53e63c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/esphome/m5stack-atom-echo-53e63c.yaml -------------------------------------------------------------------------------- /esphome/materialdesignicons-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/esphome/materialdesignicons-webfont.ttf -------------------------------------------------------------------------------- /esphome/smart_doorbell.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/esphome/smart_doorbell.yaml -------------------------------------------------------------------------------- /esphome/t5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/esphome/t5.yaml -------------------------------------------------------------------------------- /esphome/tagreader.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/esphome/tagreader.yaml -------------------------------------------------------------------------------- /esphome/weather_station.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/esphome/weather_station.yaml -------------------------------------------------------------------------------- /google_calendars_sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/google_calendars_sample.yaml -------------------------------------------------------------------------------- /integrations/alerts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/integrations/alerts.yaml -------------------------------------------------------------------------------- /integrations/alexa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/integrations/alexa.yaml -------------------------------------------------------------------------------- /integrations/automations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/integrations/automations.yaml -------------------------------------------------------------------------------- /integrations/binary_sensor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/integrations/binary_sensor.yaml -------------------------------------------------------------------------------- /integrations/camera.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/integrations/camera.yaml -------------------------------------------------------------------------------- /integrations/cast.yaml.disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/integrations/cast.yaml.disabled -------------------------------------------------------------------------------- /integrations/command_line.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/integrations/command_line.yaml -------------------------------------------------------------------------------- /integrations/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/integrations/config.yaml -------------------------------------------------------------------------------- /integrations/conversation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/integrations/conversation.yaml -------------------------------------------------------------------------------- /integrations/counter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/integrations/counter.yaml -------------------------------------------------------------------------------- /integrations/default_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/integrations/default_config.yaml -------------------------------------------------------------------------------- /integrations/device_trackers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/integrations/device_trackers.yaml -------------------------------------------------------------------------------- /integrations/ffmpeg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/integrations/ffmpeg.yaml -------------------------------------------------------------------------------- /integrations/frontend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/integrations/frontend.yaml -------------------------------------------------------------------------------- /integrations/geo_location.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/integrations/geo_location.yaml -------------------------------------------------------------------------------- /integrations/google_assistant.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/integrations/google_assistant.yaml -------------------------------------------------------------------------------- /integrations/group.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/integrations/group.yaml -------------------------------------------------------------------------------- /integrations/history.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/integrations/history.yaml -------------------------------------------------------------------------------- /integrations/homeassistant.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/integrations/homeassistant.yaml -------------------------------------------------------------------------------- /integrations/http.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/integrations/http.yaml -------------------------------------------------------------------------------- /integrations/image_processing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/integrations/image_processing.yaml -------------------------------------------------------------------------------- /integrations/input_boolean.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/integrations/input_boolean.yaml -------------------------------------------------------------------------------- /integrations/input_datetime.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/integrations/input_datetime.yaml -------------------------------------------------------------------------------- /integrations/input_numbers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/integrations/input_numbers.yaml -------------------------------------------------------------------------------- /integrations/input_select.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/integrations/input_select.yaml -------------------------------------------------------------------------------- /integrations/input_texts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/integrations/input_texts.yaml -------------------------------------------------------------------------------- /integrations/intent_script.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/integrations/intent_script.yaml -------------------------------------------------------------------------------- /integrations/lights.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/integrations/lights.yaml -------------------------------------------------------------------------------- /integrations/logbook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/integrations/logbook.yaml -------------------------------------------------------------------------------- /integrations/logger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/integrations/logger.yaml -------------------------------------------------------------------------------- /integrations/media_player.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/integrations/media_player.yaml -------------------------------------------------------------------------------- /integrations/mqtt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/integrations/mqtt.yaml -------------------------------------------------------------------------------- /integrations/namecheapdns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/integrations/namecheapdns.yaml -------------------------------------------------------------------------------- /integrations/network.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/integrations/network.yaml -------------------------------------------------------------------------------- /integrations/notify.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/integrations/notify.yaml -------------------------------------------------------------------------------- /integrations/person.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/integrations/person.yaml -------------------------------------------------------------------------------- /integrations/powercalc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/integrations/powercalc.yaml -------------------------------------------------------------------------------- /integrations/python_scripts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/integrations/python_scripts.yaml -------------------------------------------------------------------------------- /integrations/recorder.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/integrations/recorder.yaml -------------------------------------------------------------------------------- /integrations/rest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/integrations/rest.yaml -------------------------------------------------------------------------------- /integrations/rest_command.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/integrations/rest_command.yaml -------------------------------------------------------------------------------- /integrations/scenes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/integrations/scenes.yaml -------------------------------------------------------------------------------- /integrations/script.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/integrations/script.yaml -------------------------------------------------------------------------------- /integrations/sensor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/integrations/sensor.yaml -------------------------------------------------------------------------------- /integrations/shell_command.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/integrations/shell_command.yaml -------------------------------------------------------------------------------- /integrations/stream.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/integrations/stream.yaml -------------------------------------------------------------------------------- /integrations/sun.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/integrations/sun.yaml -------------------------------------------------------------------------------- /integrations/switch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/integrations/switch.yaml -------------------------------------------------------------------------------- /integrations/system_health.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/integrations/system_health.yaml -------------------------------------------------------------------------------- /integrations/system_log.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/integrations/system_log.yaml -------------------------------------------------------------------------------- /integrations/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/integrations/template.yaml -------------------------------------------------------------------------------- /integrations/timer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/integrations/timer.yaml -------------------------------------------------------------------------------- /integrations/tts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/integrations/tts.yaml -------------------------------------------------------------------------------- /integrations/wakeonlan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/integrations/wakeonlan.yaml -------------------------------------------------------------------------------- /integrations/weather.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/integrations/weather.yaml -------------------------------------------------------------------------------- /integrations/webhook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/integrations/webhook.yaml -------------------------------------------------------------------------------- /integrations/zeroconf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/integrations/zeroconf.yaml -------------------------------------------------------------------------------- /integrations/zone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/integrations/zone.yaml -------------------------------------------------------------------------------- /ip_bans_sample.yaml: -------------------------------------------------------------------------------- 1 | 192.168.1.123 2 | -------------------------------------------------------------------------------- /known_devices_sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/known_devices_sample.yaml -------------------------------------------------------------------------------- /lovelace/01-home.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/lovelace/01-home.yaml -------------------------------------------------------------------------------- /lovelace/02-outdoor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/lovelace/02-outdoor.yaml -------------------------------------------------------------------------------- /lovelace/03-lights.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/lovelace/03-lights.yaml -------------------------------------------------------------------------------- /lovelace/04-luka_room.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/lovelace/04-luka_room.yaml -------------------------------------------------------------------------------- /lovelace/05-zita_room.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/lovelace/05-zita_room.yaml -------------------------------------------------------------------------------- /lovelace/06-media.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/lovelace/06-media.yaml -------------------------------------------------------------------------------- /lovelace/07-climate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/lovelace/07-climate.yaml -------------------------------------------------------------------------------- /lovelace/07-electricity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/lovelace/07-electricity.yaml -------------------------------------------------------------------------------- /lovelace/08-cameras.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/lovelace/08-cameras.yaml -------------------------------------------------------------------------------- /lovelace/09-backend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/lovelace/09-backend.yaml -------------------------------------------------------------------------------- /lovelace/10-voron.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/lovelace/10-voron.yaml -------------------------------------------------------------------------------- /lovelace/11-plants.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/lovelace/11-plants.yaml -------------------------------------------------------------------------------- /lovelace/12-battery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/lovelace/12-battery.yaml -------------------------------------------------------------------------------- /lovelace/13-doomsday.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/lovelace/13-doomsday.yaml -------------------------------------------------------------------------------- /lovelace/14-system.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/lovelace/14-system.yaml -------------------------------------------------------------------------------- /lovelace/15-shelly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/lovelace/15-shelly.yaml -------------------------------------------------------------------------------- /lovelace/16-roborock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/lovelace/16-roborock.yaml -------------------------------------------------------------------------------- /lovelace/17-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/lovelace/17-test.yaml -------------------------------------------------------------------------------- /lovelace/18-packages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/lovelace/18-packages.yaml -------------------------------------------------------------------------------- /lovelace/19-configuration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/lovelace/19-configuration.yaml -------------------------------------------------------------------------------- /lovelace/lovelace.yaml: -------------------------------------------------------------------------------- 1 | title: My home 2 | views: -------------------------------------------------------------------------------- /media/GothamRnd-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/media/GothamRnd-Bold.ttf -------------------------------------------------------------------------------- /media/youtube-8359676_640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/media/youtube-8359676_640.png -------------------------------------------------------------------------------- /panels/iframes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/panels/iframes/README.md -------------------------------------------------------------------------------- /panels/iframes/gsheets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/panels/iframes/gsheets.yaml -------------------------------------------------------------------------------- /panels/iframes/uptime_kuma.yaml.disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/panels/iframes/uptime_kuma.yaml.disabled -------------------------------------------------------------------------------- /python_scripts/light_counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/python_scripts/light_counter.py -------------------------------------------------------------------------------- /python_scripts/sensors/sensors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/python_scripts/sensors/sensors.yaml -------------------------------------------------------------------------------- /python_scripts/ttgo-t-higrow-aut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/python_scripts/ttgo-t-higrow-aut.py -------------------------------------------------------------------------------- /scenes.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/ac_off_door.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/scripts/ac_off_door.yaml -------------------------------------------------------------------------------- /scripts/ac_on_temperature.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/scripts/ac_on_temperature.yaml -------------------------------------------------------------------------------- /scripts/almost_midnight_speech.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/scripts/almost_midnight_speech.yaml -------------------------------------------------------------------------------- /scripts/briefing_evening.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/scripts/briefing_evening.yaml -------------------------------------------------------------------------------- /scripts/briefing_morning.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/scripts/briefing_morning.yaml -------------------------------------------------------------------------------- /scripts/evening_lights_speech.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/scripts/evening_lights_speech.yaml -------------------------------------------------------------------------------- /scripts/google_home_resume.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/scripts/google_home_resume.yaml -------------------------------------------------------------------------------- /scripts/google_home_resume_helper.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/scripts/google_home_resume_helper.yaml -------------------------------------------------------------------------------- /scripts/google_script_ha_restart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/scripts/google_script_ha_restart.yaml -------------------------------------------------------------------------------- /scripts/google_script_ha_start.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/scripts/google_script_ha_start.yaml -------------------------------------------------------------------------------- /scripts/midnight_lights_off_speech.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/scripts/midnight_lights_off_speech.yaml -------------------------------------------------------------------------------- /scripts/notify_engine.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/scripts/notify_engine.yaml -------------------------------------------------------------------------------- /scripts/play_beardedtinker_yt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/scripts/play_beardedtinker_yt.yaml -------------------------------------------------------------------------------- /scripts/pm10_increase_speech.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/scripts/pm10_increase_speech.yaml -------------------------------------------------------------------------------- /scripts/pm25_increase_speech.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/scripts/pm25_increase_speech.yaml -------------------------------------------------------------------------------- /scripts/radio_play.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/scripts/radio_play.yaml -------------------------------------------------------------------------------- /scripts/radio_stop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/scripts/radio_stop.yaml -------------------------------------------------------------------------------- /scripts/schoolnight_bedtime_luka.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/scripts/schoolnight_bedtime_luka.yaml -------------------------------------------------------------------------------- /scripts/schoolnight_bedtime_zita.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/scripts/schoolnight_bedtime_zita.yaml -------------------------------------------------------------------------------- /scripts/speech_engine.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/scripts/speech_engine.yaml -------------------------------------------------------------------------------- /scripts/speech_processing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/scripts/speech_processing.yaml -------------------------------------------------------------------------------- /scripts/sunrise_speech.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/scripts/sunrise_speech.yaml -------------------------------------------------------------------------------- /secrets_github.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/secrets_github.yaml -------------------------------------------------------------------------------- /secrets_sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/secrets_sample.yaml -------------------------------------------------------------------------------- /service_account_ga_sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/service_account_ga_sample.json -------------------------------------------------------------------------------- /templates/speech/briefing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/templates/speech/briefing.yaml -------------------------------------------------------------------------------- /templates/speech/briefing.yaml.disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/templates/speech/briefing.yaml.disabled -------------------------------------------------------------------------------- /templates/speech/rest.yaml.disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/templates/speech/rest.yaml.disabled -------------------------------------------------------------------------------- /themes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/themes/README.md -------------------------------------------------------------------------------- /themes/clear-dark.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/themes/clear-dark.yaml -------------------------------------------------------------------------------- /themes/dark-blue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/themes/dark-blue.yaml -------------------------------------------------------------------------------- /themes/dark-cyan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/themes/dark-cyan.yaml -------------------------------------------------------------------------------- /themes/dark-gray.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/themes/dark-gray.yaml -------------------------------------------------------------------------------- /themes/dark-red.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/themes/dark-red.yaml -------------------------------------------------------------------------------- /themes/light-blue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/themes/light-blue.yaml -------------------------------------------------------------------------------- /themes/light-navy-blue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/themes/light-navy-blue.yaml -------------------------------------------------------------------------------- /themes/midnight.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/themes/midnight.yaml -------------------------------------------------------------------------------- /themes/slate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/themes/slate.yaml -------------------------------------------------------------------------------- /themes/sublimination.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/themes/sublimination.yaml -------------------------------------------------------------------------------- /tmp/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tmp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/tmp/README.md -------------------------------------------------------------------------------- /tts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/custom_lovelace/soil-state-card.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/www/custom_lovelace/soil-state-card.js.map -------------------------------------------------------------------------------- /www/custom_lovelace/soil-state-cards.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/www/custom_lovelace/soil-state-cards.js -------------------------------------------------------------------------------- /www/img/vacuum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeardedTinker/Home-Assistant_Config/HEAD/www/img/vacuum.png --------------------------------------------------------------------------------