├── .HA_VERSION ├── .gitattributes ├── .gitignore ├── README.md ├── automations.yaml ├── automations ├── README.md ├── audio.yaml ├── bathroom.yaml ├── bedroom_lights.yaml ├── christmas tree.yaml ├── climate.yaml ├── living_room_lights.yaml ├── media_bedroom.yaml ├── media_living_room.yaml ├── notification_audio.yaml ├── office.yaml ├── office_lights.yaml ├── presence.yaml ├── room_occupied.yaml └── system.yaml ├── binary_sensors.yaml ├── blueprints ├── automation │ ├── homeassistant │ │ ├── motion_light.yaml │ │ └── notify_leaving_zone.yaml │ └── sbyx │ │ └── low-battery-level-detection-notification-for-all-battery-sensors.yaml ├── script │ └── niro1987 │ │ └── zha_aqara_vibration_set_sensitivity.yaml └── template │ └── homeassistant │ └── inverted_binary_sensor.yaml ├── configuration.yaml ├── customize.yaml ├── device_tracker.yaml ├── groups.yaml ├── input_booleans.yaml ├── input_select.yaml ├── scenes.yaml ├── scripts.yaml ├── sensors.yaml ├── themes └── slate │ └── slate.yaml ├── ui-lovelace.yaml └── zigbee.db /.HA_VERSION: -------------------------------------------------------------------------------- 1 | 2025.4.1 -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seangreen2/home_assistant/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seangreen2/home_assistant/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seangreen2/home_assistant/HEAD/README.md -------------------------------------------------------------------------------- /automations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seangreen2/home_assistant/HEAD/automations.yaml -------------------------------------------------------------------------------- /automations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seangreen2/home_assistant/HEAD/automations/README.md -------------------------------------------------------------------------------- /automations/audio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seangreen2/home_assistant/HEAD/automations/audio.yaml -------------------------------------------------------------------------------- /automations/bathroom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seangreen2/home_assistant/HEAD/automations/bathroom.yaml -------------------------------------------------------------------------------- /automations/bedroom_lights.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seangreen2/home_assistant/HEAD/automations/bedroom_lights.yaml -------------------------------------------------------------------------------- /automations/christmas tree.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seangreen2/home_assistant/HEAD/automations/christmas tree.yaml -------------------------------------------------------------------------------- /automations/climate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seangreen2/home_assistant/HEAD/automations/climate.yaml -------------------------------------------------------------------------------- /automations/living_room_lights.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seangreen2/home_assistant/HEAD/automations/living_room_lights.yaml -------------------------------------------------------------------------------- /automations/media_bedroom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seangreen2/home_assistant/HEAD/automations/media_bedroom.yaml -------------------------------------------------------------------------------- /automations/media_living_room.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seangreen2/home_assistant/HEAD/automations/media_living_room.yaml -------------------------------------------------------------------------------- /automations/notification_audio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seangreen2/home_assistant/HEAD/automations/notification_audio.yaml -------------------------------------------------------------------------------- /automations/office.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seangreen2/home_assistant/HEAD/automations/office.yaml -------------------------------------------------------------------------------- /automations/office_lights.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seangreen2/home_assistant/HEAD/automations/office_lights.yaml -------------------------------------------------------------------------------- /automations/presence.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seangreen2/home_assistant/HEAD/automations/presence.yaml -------------------------------------------------------------------------------- /automations/room_occupied.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seangreen2/home_assistant/HEAD/automations/room_occupied.yaml -------------------------------------------------------------------------------- /automations/system.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seangreen2/home_assistant/HEAD/automations/system.yaml -------------------------------------------------------------------------------- /binary_sensors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seangreen2/home_assistant/HEAD/binary_sensors.yaml -------------------------------------------------------------------------------- /blueprints/automation/homeassistant/motion_light.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seangreen2/home_assistant/HEAD/blueprints/automation/homeassistant/motion_light.yaml -------------------------------------------------------------------------------- /blueprints/automation/homeassistant/notify_leaving_zone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seangreen2/home_assistant/HEAD/blueprints/automation/homeassistant/notify_leaving_zone.yaml -------------------------------------------------------------------------------- /blueprints/automation/sbyx/low-battery-level-detection-notification-for-all-battery-sensors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seangreen2/home_assistant/HEAD/blueprints/automation/sbyx/low-battery-level-detection-notification-for-all-battery-sensors.yaml -------------------------------------------------------------------------------- /blueprints/script/niro1987/zha_aqara_vibration_set_sensitivity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seangreen2/home_assistant/HEAD/blueprints/script/niro1987/zha_aqara_vibration_set_sensitivity.yaml -------------------------------------------------------------------------------- /blueprints/template/homeassistant/inverted_binary_sensor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seangreen2/home_assistant/HEAD/blueprints/template/homeassistant/inverted_binary_sensor.yaml -------------------------------------------------------------------------------- /configuration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seangreen2/home_assistant/HEAD/configuration.yaml -------------------------------------------------------------------------------- /customize.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seangreen2/home_assistant/HEAD/customize.yaml -------------------------------------------------------------------------------- /device_tracker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seangreen2/home_assistant/HEAD/device_tracker.yaml -------------------------------------------------------------------------------- /groups.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seangreen2/home_assistant/HEAD/groups.yaml -------------------------------------------------------------------------------- /input_booleans.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seangreen2/home_assistant/HEAD/input_booleans.yaml -------------------------------------------------------------------------------- /input_select.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seangreen2/home_assistant/HEAD/input_select.yaml -------------------------------------------------------------------------------- /scenes.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seangreen2/home_assistant/HEAD/scripts.yaml -------------------------------------------------------------------------------- /sensors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seangreen2/home_assistant/HEAD/sensors.yaml -------------------------------------------------------------------------------- /themes/slate/slate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seangreen2/home_assistant/HEAD/themes/slate/slate.yaml -------------------------------------------------------------------------------- /ui-lovelace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seangreen2/home_assistant/HEAD/ui-lovelace.yaml -------------------------------------------------------------------------------- /zigbee.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seangreen2/home_assistant/HEAD/zigbee.db --------------------------------------------------------------------------------