From d8493a41aa5daa5cfda1068c6efb0f7ff3bf8ad9 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Wed, 24 May 2023 00:21:49 -0500 Subject: [PATCH] Add Yale Home virtual integration (#93364) * Add Yale Home virtual integration Yale split all their customers outside of North America off into a new brand recently https://www.yalehome.com/in/en/news/news/introducing-the-new-yale-home-app#:~:text=The%20Yale%20Home%20app,products%20and%20new%20products%20alike. * init * brands --- homeassistant/brands/yale.json | 2 +- homeassistant/components/yale_home/__init__.py | 1 + homeassistant/components/yale_home/manifest.json | 6 ++++++ homeassistant/generated/integrations.json | 6 ++++++ 4 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 homeassistant/components/yale_home/__init__.py create mode 100644 homeassistant/components/yale_home/manifest.json diff --git a/homeassistant/brands/yale.json b/homeassistant/brands/yale.json index 87c119fdd40..53dc9b43569 100644 --- a/homeassistant/brands/yale.json +++ b/homeassistant/brands/yale.json @@ -1,5 +1,5 @@ { "domain": "yale", "name": "Yale", - "integrations": ["august", "yale_smart_alarm", "yalexs_ble"] + "integrations": ["august", "yale_smart_alarm", "yalexs_ble", "yale_home"] } diff --git a/homeassistant/components/yale_home/__init__.py b/homeassistant/components/yale_home/__init__.py new file mode 100644 index 00000000000..8313f40e785 --- /dev/null +++ b/homeassistant/components/yale_home/__init__.py @@ -0,0 +1 @@ +"""Virtual integration: Yale Home.""" diff --git a/homeassistant/components/yale_home/manifest.json b/homeassistant/components/yale_home/manifest.json new file mode 100644 index 00000000000..0e45b0da7d0 --- /dev/null +++ b/homeassistant/components/yale_home/manifest.json @@ -0,0 +1,6 @@ +{ + "domain": "yale_home", + "name": "Yale Home", + "integration_type": "virtual", + "supported_by": "august" +} diff --git a/homeassistant/generated/integrations.json b/homeassistant/generated/integrations.json index c9ce171e3d4..c97e229f5a3 100644 --- a/homeassistant/generated/integrations.json +++ b/homeassistant/generated/integrations.json @@ -6388,6 +6388,12 @@ "config_flow": true, "iot_class": "local_push", "name": "Yale Access Bluetooth" + }, + "yale_home": { + "integration_type": "virtual", + "config_flow": false, + "supported_by": "august", + "name": "Yale Home" } } },