mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-19 15:26:59 +00:00
Add supported devices (#23612)
Co-authored-by: Zack Barett <zackbarett@hey.com>
This commit is contained in:
parent
d7857bae65
commit
dff7e0bfba
@ -1,15 +1,16 @@
|
||||
{% assign active_installations = site.data.analytics_data.integrations[page.ha_domain] | default: 0 %}
|
||||
{% capture domain %}{{ page.ha_supporting_domain | default: page.ha_domain }}{% endcapture %}
|
||||
{% assign active_installations = site.data.analytics_data.integrations[domain] | default: 0 %}
|
||||
{% assign percentage = 100.0 | times: active_installations | divided_by: site.data.analytics_data.reports_integrations | round: 1 %}
|
||||
<section class="aside-module grid__item one-whole lap-one-half">
|
||||
<div class='brand-logo-container section'>
|
||||
{%- if page.logo -%}
|
||||
<img src='/images/supported_brands/{{ page.logo }}' />
|
||||
{%- else -%}
|
||||
<img src='https://brands.home-assistant.io/_/{{ page.ha_domain }}/logo.png' srcset='https://brands.home-assistant.io/_/{{ page.ha_domain }}/logo@2x.png 2x' />
|
||||
<img src='https://brands.home-assistant.io/_/{{ domain }}/logo.png' srcset='https://brands.home-assistant.io/_/{{ page.ha_domain }}/logo@2x.png 2x' />
|
||||
{%- endif -%}
|
||||
|
||||
{%- if page.ha_config_flow and page.ha_domain -%}
|
||||
{% my config_flow_start badge domain=page.ha_domain %}
|
||||
{%- if page.ha_config_flow and domain -%}
|
||||
{% my config_flow_start badge domain=domain %}
|
||||
{%- endif -%}
|
||||
</div>
|
||||
|
||||
@ -49,8 +50,8 @@
|
||||
|
||||
{% if page.ha_domain %}
|
||||
<div class='section'>
|
||||
<a href="https://github.com/home-assistant/core/tree/dev/homeassistant/components/{{ page.ha_domain }}" target="_blank"><i class="icon-github"></i> View source on GitHub</a><br />
|
||||
<a href="https://github.com/home-assistant/core/issues?q=is%3Aissue+is%3Aopen+label%3A%22integration%3A+{{ page.ha_domain }}%22" target="_blank"><i class="icon-bug"></i> View known issues</a>
|
||||
<a href="https://github.com/home-assistant/core/tree/dev/homeassistant/components/{{ domain }}" target="_blank"><i class="icon-github"></i> View source on GitHub</a><br />
|
||||
<a href="https://github.com/home-assistant/core/issues?q=is%3Aissue+is%3Aopen+label%3A%22integration%3A+{{ domain }}%22" target="_blank"><i class="icon-bug"></i> View known issues</a>
|
||||
</div>
|
||||
{%- endif -%}
|
||||
|
||||
|
@ -1,11 +1,12 @@
|
||||
{% capture name %}{{ include.name | default: page.title }}{% endcapture %}
|
||||
{% capture domain %}{{ include.domain | default: page.ha_domain }}{% endcapture %}
|
||||
|
||||
## Configuration
|
||||
|
||||
Adding {{ name }} to your Home Assistant instance can be done via the user
|
||||
interface, by using this My button:
|
||||
|
||||
{% my config_flow_start badge domain=page.ha_domain %}
|
||||
{% my config_flow_start badge domain=domain %}
|
||||
|
||||
{% if include.discovery or page.ha_dhcp or page.ha_homekit or page.ha_ssdp or page.ha_zeroconf %}
|
||||
{{ name }} can be auto-discovered by Home Assistant. If an instance was found,
|
||||
@ -28,10 +29,10 @@ manually:
|
||||
{% if page.ha_integration_type == 'helper' %}
|
||||
- In top of the screen click the tab: _**{% my helpers %}**_.
|
||||
- In the bottom right, click on the
|
||||
_**{% my config_flow_start icon domain=page.ha_domain title="Create helper" %}**_ button.
|
||||
_**{% my config_flow_start icon domain=domain title="Create helper" %}**_ button.
|
||||
{% else %}
|
||||
- In the bottom right, click on the
|
||||
_**{% my config_flow_start icon domain=page.ha_domain %}**_ button.
|
||||
_**{% my config_flow_start icon domain=domain %}**_ button.
|
||||
{% endif %}
|
||||
- From the list, search and select _**"{{ name }}"**_.
|
||||
- Follow the instruction on screen to complete the set up.
|
||||
|
17
source/_includes/integrations/supported_brand.md
Normal file
17
source/_includes/integrations/supported_brand.md
Normal file
@ -0,0 +1,17 @@
|
||||
{% capture name %}{{ include.name | default: page.title }}{% endcapture %}
|
||||
|
||||
Support for devices by {{ name }} in Home Assistant is provided by the
|
||||
[{{ page.ha_supporting_integration }}](/integrations/{{ page.ha_supporting_domain }})
|
||||
integration.
|
||||
|
||||
{{ name }} devices are either rebranded devices or devices that share a common
|
||||
communication protocol, making it possible to use them with the
|
||||
[{{ page.ha_supporting_integration }}](/integrations/{{ page.ha_supporting_domain }})
|
||||
integration.
|
||||
|
||||
{% include integrations/config_flow.md domain=page.ha_supporting_domain %}
|
||||
|
||||
## Usage information
|
||||
|
||||
For more documentation on how to use {{ name }} in Home Assistant, please refer to the
|
||||
[{{ page.ha_supporting_integration }} integration documentation page](/integrations/{{ page.ha_supporting_domain }}).
|
21
source/_integrations/3_day_blinds.markdown
Normal file
21
source/_integrations/3_day_blinds.markdown
Normal file
@ -0,0 +1,21 @@
|
||||
---
|
||||
title: 3 Day Blinds
|
||||
description: Connect and control your 3 Day Blinds devices using the Motion Blinds integration
|
||||
ha_category:
|
||||
- Cover
|
||||
ha_domain: 3_day_blinds
|
||||
ha_codeowners:
|
||||
- '@starkillerOG'
|
||||
ha_integration_type: integration
|
||||
ha_config_flow: true
|
||||
ha_platforms:
|
||||
- cover
|
||||
- sensor
|
||||
ha_iot_class: Local Push
|
||||
ha_dhcp: true
|
||||
ha_supporting_domain: motion_blinds
|
||||
ha_supporting_integration: Motion Blinds
|
||||
ha_release: 2020.12
|
||||
---
|
||||
|
||||
{% include integrations/supported_brand.md %}
|
21
source/_integrations/amp_motorization.markdown
Normal file
21
source/_integrations/amp_motorization.markdown
Normal file
@ -0,0 +1,21 @@
|
||||
---
|
||||
title: AMP Motorization
|
||||
description: Connect and control your AMP Motorization devices using the Motion Blinds integration
|
||||
ha_category:
|
||||
- Cover
|
||||
ha_domain: amp_motorization
|
||||
ha_codeowners:
|
||||
- '@starkillerOG'
|
||||
ha_integration_type: integration
|
||||
ha_config_flow: true
|
||||
ha_platforms:
|
||||
- cover
|
||||
- sensor
|
||||
ha_iot_class: Local Push
|
||||
ha_dhcp: true
|
||||
ha_supporting_domain: motion_blinds
|
||||
ha_supporting_integration: Motion Blinds
|
||||
ha_release: 2020.12
|
||||
---
|
||||
|
||||
{% include integrations/supported_brand.md %}
|
21
source/_integrations/bliss_automation.markdown
Normal file
21
source/_integrations/bliss_automation.markdown
Normal file
@ -0,0 +1,21 @@
|
||||
---
|
||||
title: Bliss Automation
|
||||
description: Connect and control your Bliss Automation devices using the Motion Blinds integration
|
||||
ha_category:
|
||||
- Cover
|
||||
ha_domain: bliss_automation
|
||||
ha_codeowners:
|
||||
- '@starkillerOG'
|
||||
ha_integration_type: integration
|
||||
ha_config_flow: true
|
||||
ha_platforms:
|
||||
- cover
|
||||
- sensor
|
||||
ha_iot_class: Local Push
|
||||
ha_dhcp: true
|
||||
ha_supporting_domain: motion_blinds
|
||||
ha_supporting_integration: Motion Blinds
|
||||
ha_release: 2020.12
|
||||
---
|
||||
|
||||
{% include integrations/supported_brand.md %}
|
21
source/_integrations/bloc_blinds.markdown
Normal file
21
source/_integrations/bloc_blinds.markdown
Normal file
@ -0,0 +1,21 @@
|
||||
---
|
||||
title: Bloc Blinds
|
||||
description: Connect and control your Bloc Blinds devices using the Motion Blinds integration
|
||||
ha_category:
|
||||
- Cover
|
||||
ha_domain: bloc_blinds
|
||||
ha_codeowners:
|
||||
- '@starkillerOG'
|
||||
ha_integration_type: integration
|
||||
ha_config_flow: true
|
||||
ha_platforms:
|
||||
- cover
|
||||
- sensor
|
||||
ha_iot_class: Local Push
|
||||
ha_dhcp: true
|
||||
ha_supporting_domain: motion_blinds
|
||||
ha_supporting_integration: Motion Blinds
|
||||
ha_release: 2020.12
|
||||
---
|
||||
|
||||
{% include integrations/supported_brand.md %}
|
21
source/_integrations/brel_home.markdown
Normal file
21
source/_integrations/brel_home.markdown
Normal file
@ -0,0 +1,21 @@
|
||||
---
|
||||
title: Brel Home
|
||||
description: Connect and control your Brel Home devices using the Motion Blinds integration
|
||||
ha_category:
|
||||
- Cover
|
||||
ha_domain: brel_home
|
||||
ha_codeowners:
|
||||
- '@starkillerOG'
|
||||
ha_integration_type: integration
|
||||
ha_config_flow: true
|
||||
ha_platforms:
|
||||
- cover
|
||||
- sensor
|
||||
ha_iot_class: Local Push
|
||||
ha_dhcp: true
|
||||
ha_supporting_domain: motion_blinds
|
||||
ha_supporting_integration: Motion Blinds
|
||||
ha_release: 2020.12
|
||||
---
|
||||
|
||||
{% include integrations/supported_brand.md %}
|
49
source/_integrations/cozytouch.markdown
Normal file
49
source/_integrations/cozytouch.markdown
Normal file
@ -0,0 +1,49 @@
|
||||
---
|
||||
title: Atlantic Cozytouch
|
||||
description: Connect and control your Atlantic Cozytouch devices using the Overkiz integration
|
||||
ha_category:
|
||||
- Alarm Control Panel
|
||||
- Binary Sensor
|
||||
- Button
|
||||
- Climate
|
||||
- Cover
|
||||
- Hub
|
||||
- Light
|
||||
- Lock
|
||||
- Number
|
||||
- Scene
|
||||
- Select
|
||||
- Sensor
|
||||
- Siren
|
||||
- Switch
|
||||
ha_domain: cozytouch
|
||||
ha_codeowners:
|
||||
- '@imicknl'
|
||||
- '@vlebourl'
|
||||
- '@tetienne'
|
||||
ha_integration_type: integration
|
||||
ha_config_flow: true
|
||||
ha_platforms:
|
||||
- alarm_control_panel
|
||||
- binary_sensor
|
||||
- button
|
||||
- climate
|
||||
- cover
|
||||
- diagnostics
|
||||
- light
|
||||
- lock
|
||||
- number
|
||||
- scene
|
||||
- select
|
||||
- sensor
|
||||
- siren
|
||||
- switch
|
||||
ha_iot_class: Cloud Polling
|
||||
ha_zeroconf: true
|
||||
ha_dhcp: true
|
||||
ha_supporting_domain: overkiz
|
||||
ha_supporting_integration: Overkiz
|
||||
ha_release: 2022.2
|
||||
---
|
||||
|
||||
{% include integrations/supported_brand.md %}
|
28
source/_integrations/dacia.markdown
Normal file
28
source/_integrations/dacia.markdown
Normal file
@ -0,0 +1,28 @@
|
||||
---
|
||||
title: Dacia
|
||||
description: Connect and control your Dacia devices using the Renault integration
|
||||
ha_category:
|
||||
- Binary Sensor
|
||||
- Car
|
||||
- Presence Detection
|
||||
- Select
|
||||
- Sensor
|
||||
ha_domain: dacia
|
||||
ha_codeowners:
|
||||
- '@epenet'
|
||||
ha_integration_type: integration
|
||||
ha_config_flow: true
|
||||
ha_platforms:
|
||||
- binary_sensor
|
||||
- button
|
||||
- device_tracker
|
||||
- diagnostics
|
||||
- select
|
||||
- sensor
|
||||
ha_iot_class: Cloud Polling
|
||||
ha_supporting_domain: renault
|
||||
ha_supporting_integration: Renault
|
||||
ha_release: 2021.8
|
||||
---
|
||||
|
||||
{% include integrations/supported_brand.md %}
|
29
source/_integrations/digital_loggers.markdown
Normal file
29
source/_integrations/digital_loggers.markdown
Normal file
@ -0,0 +1,29 @@
|
||||
---
|
||||
title: Digital Loggers
|
||||
description: Connect and control your Digital Loggers devices using the Belkin WeMo integration
|
||||
ha_category:
|
||||
- Binary Sensor
|
||||
- Fan
|
||||
- Hub
|
||||
- Light
|
||||
- Switch
|
||||
ha_domain: digital_loggers
|
||||
ha_codeowners:
|
||||
- '@esev'
|
||||
ha_integration_type: integration
|
||||
ha_config_flow: true
|
||||
ha_platforms:
|
||||
- binary_sensor
|
||||
- fan
|
||||
- light
|
||||
- sensor
|
||||
- switch
|
||||
ha_iot_class: Local Push
|
||||
ha_ssdp: true
|
||||
ha_homekit: true
|
||||
ha_supporting_domain: wemo
|
||||
ha_supporting_integration: Belkin WeMo
|
||||
ha_release: pre 0.7
|
||||
---
|
||||
|
||||
{% include integrations/supported_brand.md %}
|
21
source/_integrations/dooya.markdown
Normal file
21
source/_integrations/dooya.markdown
Normal file
@ -0,0 +1,21 @@
|
||||
---
|
||||
title: Dooya
|
||||
description: Connect and control your Dooya devices using the Motion Blinds integration
|
||||
ha_category:
|
||||
- Cover
|
||||
ha_domain: dooya
|
||||
ha_codeowners:
|
||||
- '@starkillerOG'
|
||||
ha_integration_type: integration
|
||||
ha_config_flow: true
|
||||
ha_platforms:
|
||||
- cover
|
||||
- sensor
|
||||
ha_iot_class: Local Push
|
||||
ha_dhcp: true
|
||||
ha_supporting_domain: motion_blinds
|
||||
ha_supporting_integration: Motion Blinds
|
||||
ha_release: 2020.12
|
||||
---
|
||||
|
||||
{% include integrations/supported_brand.md %}
|
49
source/_integrations/flexom.markdown
Normal file
49
source/_integrations/flexom.markdown
Normal file
@ -0,0 +1,49 @@
|
||||
---
|
||||
title: Bouygues Flexom
|
||||
description: Connect and control your Bouygues Flexom devices using the Overkiz integration
|
||||
ha_category:
|
||||
- Alarm Control Panel
|
||||
- Binary Sensor
|
||||
- Button
|
||||
- Climate
|
||||
- Cover
|
||||
- Hub
|
||||
- Light
|
||||
- Lock
|
||||
- Number
|
||||
- Scene
|
||||
- Select
|
||||
- Sensor
|
||||
- Siren
|
||||
- Switch
|
||||
ha_domain: flexom
|
||||
ha_codeowners:
|
||||
- '@imicknl'
|
||||
- '@vlebourl'
|
||||
- '@tetienne'
|
||||
ha_integration_type: integration
|
||||
ha_config_flow: true
|
||||
ha_platforms:
|
||||
- alarm_control_panel
|
||||
- binary_sensor
|
||||
- button
|
||||
- climate
|
||||
- cover
|
||||
- diagnostics
|
||||
- light
|
||||
- lock
|
||||
- number
|
||||
- scene
|
||||
- select
|
||||
- sensor
|
||||
- siren
|
||||
- switch
|
||||
ha_iot_class: Cloud Polling
|
||||
ha_zeroconf: true
|
||||
ha_dhcp: true
|
||||
ha_supporting_domain: overkiz
|
||||
ha_supporting_integration: Overkiz
|
||||
ha_release: 2022.2
|
||||
---
|
||||
|
||||
{% include integrations/supported_brand.md %}
|
21
source/_integrations/gaviota.markdown
Normal file
21
source/_integrations/gaviota.markdown
Normal file
@ -0,0 +1,21 @@
|
||||
---
|
||||
title: Gaviota
|
||||
description: Connect and control your Gaviota devices using the Motion Blinds integration
|
||||
ha_category:
|
||||
- Cover
|
||||
ha_domain: gaviota
|
||||
ha_codeowners:
|
||||
- '@starkillerOG'
|
||||
ha_integration_type: integration
|
||||
ha_config_flow: true
|
||||
ha_platforms:
|
||||
- cover
|
||||
- sensor
|
||||
ha_iot_class: Local Push
|
||||
ha_dhcp: true
|
||||
ha_supporting_domain: motion_blinds
|
||||
ha_supporting_integration: Motion Blinds
|
||||
ha_release: 2020.12
|
||||
---
|
||||
|
||||
{% include integrations/supported_brand.md %}
|
49
source/_integrations/hi_kumo.markdown
Normal file
49
source/_integrations/hi_kumo.markdown
Normal file
@ -0,0 +1,49 @@
|
||||
---
|
||||
title: Hitachi Hi Kumo
|
||||
description: Connect and control your Hitachi Hi Kumo devices using the Overkiz integration
|
||||
ha_category:
|
||||
- Alarm Control Panel
|
||||
- Binary Sensor
|
||||
- Button
|
||||
- Climate
|
||||
- Cover
|
||||
- Hub
|
||||
- Light
|
||||
- Lock
|
||||
- Number
|
||||
- Scene
|
||||
- Select
|
||||
- Sensor
|
||||
- Siren
|
||||
- Switch
|
||||
ha_domain: hi_kumo
|
||||
ha_codeowners:
|
||||
- '@imicknl'
|
||||
- '@vlebourl'
|
||||
- '@tetienne'
|
||||
ha_integration_type: integration
|
||||
ha_config_flow: true
|
||||
ha_platforms:
|
||||
- alarm_control_panel
|
||||
- binary_sensor
|
||||
- button
|
||||
- climate
|
||||
- cover
|
||||
- diagnostics
|
||||
- light
|
||||
- lock
|
||||
- number
|
||||
- scene
|
||||
- select
|
||||
- sensor
|
||||
- siren
|
||||
- switch
|
||||
ha_iot_class: Cloud Polling
|
||||
ha_zeroconf: true
|
||||
ha_dhcp: true
|
||||
ha_supporting_domain: overkiz
|
||||
ha_supporting_integration: Overkiz
|
||||
ha_release: 2022.2
|
||||
---
|
||||
|
||||
{% include integrations/supported_brand.md %}
|
21
source/_integrations/hurrican_shutters_wholesale.markdown
Normal file
21
source/_integrations/hurrican_shutters_wholesale.markdown
Normal file
@ -0,0 +1,21 @@
|
||||
---
|
||||
title: Hurrican Shutters Wholesale
|
||||
description: Connect and control your Hurrican Shutters Wholesale devices using the Motion Blinds integration
|
||||
ha_category:
|
||||
- Cover
|
||||
ha_domain: hurrican_shutters_wholesale
|
||||
ha_codeowners:
|
||||
- '@starkillerOG'
|
||||
ha_integration_type: integration
|
||||
ha_config_flow: true
|
||||
ha_platforms:
|
||||
- cover
|
||||
- sensor
|
||||
ha_iot_class: Local Push
|
||||
ha_dhcp: true
|
||||
ha_supporting_domain: motion_blinds
|
||||
ha_supporting_integration: Motion Blinds
|
||||
ha_release: 2020.12
|
||||
---
|
||||
|
||||
{% include integrations/supported_brand.md %}
|
21
source/_integrations/ismartwindow.markdown
Normal file
21
source/_integrations/ismartwindow.markdown
Normal file
@ -0,0 +1,21 @@
|
||||
---
|
||||
title: iSmartWindow
|
||||
description: Connect and control your iSmartWindow devices using the Motion Blinds integration
|
||||
ha_category:
|
||||
- Cover
|
||||
ha_domain: ismartwindow
|
||||
ha_codeowners:
|
||||
- '@starkillerOG'
|
||||
ha_integration_type: integration
|
||||
ha_config_flow: true
|
||||
ha_platforms:
|
||||
- cover
|
||||
- sensor
|
||||
ha_iot_class: Local Push
|
||||
ha_dhcp: true
|
||||
ha_supporting_domain: motion_blinds
|
||||
ha_supporting_integration: Motion Blinds
|
||||
ha_release: 2020.12
|
||||
---
|
||||
|
||||
{% include integrations/supported_brand.md %}
|
31
source/_integrations/luxaflex.markdown
Normal file
31
source/_integrations/luxaflex.markdown
Normal file
@ -0,0 +1,31 @@
|
||||
---
|
||||
title: Luxaflex
|
||||
description: Connect and control your Luxaflex devices using the Hunter Douglas PowerView integration
|
||||
ha_category:
|
||||
- Button
|
||||
- Cover
|
||||
- Scene
|
||||
- Sensor
|
||||
ha_domain: luxaflex
|
||||
ha_codeowners:
|
||||
- '@bdraco'
|
||||
- '@kingy444'
|
||||
- '@trullock'
|
||||
ha_integration_type: integration
|
||||
ha_config_flow: true
|
||||
ha_platforms:
|
||||
- button
|
||||
- cover
|
||||
- diagnostics
|
||||
- scene
|
||||
- sensor
|
||||
ha_iot_class: Local Polling
|
||||
ha_zeroconf: true
|
||||
ha_homekit: true
|
||||
ha_dhcp: true
|
||||
ha_supporting_domain: hunterdouglas_powerview
|
||||
ha_supporting_integration: Hunter Douglas PowerView
|
||||
ha_release: 0.15
|
||||
---
|
||||
|
||||
{% include integrations/supported_brand.md %}
|
21
source/_integrations/marantz.markdown
Normal file
21
source/_integrations/marantz.markdown
Normal file
@ -0,0 +1,21 @@
|
||||
---
|
||||
title: Marantz
|
||||
description: Connect and control your Marantz devices using the Denon AVR Network Receivers integration
|
||||
ha_category:
|
||||
- Media Player
|
||||
ha_domain: marantz
|
||||
ha_codeowners:
|
||||
- '@ol-iver'
|
||||
- '@starkillerOG'
|
||||
ha_integration_type: integration
|
||||
ha_config_flow: true
|
||||
ha_platforms:
|
||||
- media_player
|
||||
ha_iot_class: Local Polling
|
||||
ha_ssdp: true
|
||||
ha_supporting_domain: denonavr
|
||||
ha_supporting_integration: Denon AVR Network Receivers
|
||||
ha_release: 0.7.2
|
||||
---
|
||||
|
||||
{% include integrations/supported_brand.md %}
|
21
source/_integrations/martec.markdown
Normal file
21
source/_integrations/martec.markdown
Normal file
@ -0,0 +1,21 @@
|
||||
---
|
||||
title: Martec
|
||||
description: Connect and control your Martec devices using the Motion Blinds integration
|
||||
ha_category:
|
||||
- Cover
|
||||
ha_domain: martec
|
||||
ha_codeowners:
|
||||
- '@starkillerOG'
|
||||
ha_integration_type: integration
|
||||
ha_config_flow: true
|
||||
ha_platforms:
|
||||
- cover
|
||||
- sensor
|
||||
ha_iot_class: Local Push
|
||||
ha_dhcp: true
|
||||
ha_supporting_domain: motion_blinds
|
||||
ha_supporting_integration: Motion Blinds
|
||||
ha_release: 2020.12
|
||||
---
|
||||
|
||||
{% include integrations/supported_brand.md %}
|
49
source/_integrations/nexity.markdown
Normal file
49
source/_integrations/nexity.markdown
Normal file
@ -0,0 +1,49 @@
|
||||
---
|
||||
title: Nexity Eugénie
|
||||
description: Connect and control your Nexity Eugénie devices using the Overkiz integration
|
||||
ha_category:
|
||||
- Alarm Control Panel
|
||||
- Binary Sensor
|
||||
- Button
|
||||
- Climate
|
||||
- Cover
|
||||
- Hub
|
||||
- Light
|
||||
- Lock
|
||||
- Number
|
||||
- Scene
|
||||
- Select
|
||||
- Sensor
|
||||
- Siren
|
||||
- Switch
|
||||
ha_domain: nexity
|
||||
ha_codeowners:
|
||||
- '@imicknl'
|
||||
- '@vlebourl'
|
||||
- '@tetienne'
|
||||
ha_integration_type: integration
|
||||
ha_config_flow: true
|
||||
ha_platforms:
|
||||
- alarm_control_panel
|
||||
- binary_sensor
|
||||
- button
|
||||
- climate
|
||||
- cover
|
||||
- diagnostics
|
||||
- light
|
||||
- lock
|
||||
- number
|
||||
- scene
|
||||
- select
|
||||
- sensor
|
||||
- siren
|
||||
- switch
|
||||
ha_iot_class: Cloud Polling
|
||||
ha_zeroconf: true
|
||||
ha_dhcp: true
|
||||
ha_supporting_domain: overkiz
|
||||
ha_supporting_integration: Overkiz
|
||||
ha_release: 2022.2
|
||||
---
|
||||
|
||||
{% include integrations/supported_brand.md %}
|
@ -1,5 +1,5 @@
|
||||
---
|
||||
title: Overkiz (by Somfy)
|
||||
title: Overkiz
|
||||
description: Instructions on how to integrate hubs whom use the Overkiz platform with Home Assistant.
|
||||
ha_category:
|
||||
- Alarm Control Panel
|
||||
|
21
source/_integrations/raven_rock_mfg.markdown
Normal file
21
source/_integrations/raven_rock_mfg.markdown
Normal file
@ -0,0 +1,21 @@
|
||||
---
|
||||
title: Raven Rock MFG
|
||||
description: Connect and control your Raven Rock MFG devices using the Motion Blinds integration
|
||||
ha_category:
|
||||
- Cover
|
||||
ha_domain: raven_rock_mfg
|
||||
ha_codeowners:
|
||||
- '@starkillerOG'
|
||||
ha_integration_type: integration
|
||||
ha_config_flow: true
|
||||
ha_platforms:
|
||||
- cover
|
||||
- sensor
|
||||
ha_iot_class: Local Push
|
||||
ha_dhcp: true
|
||||
ha_supporting_domain: motion_blinds
|
||||
ha_supporting_integration: Motion Blinds
|
||||
ha_release: 2020.12
|
||||
---
|
||||
|
||||
{% include integrations/supported_brand.md %}
|
49
source/_integrations/rexel.markdown
Normal file
49
source/_integrations/rexel.markdown
Normal file
@ -0,0 +1,49 @@
|
||||
---
|
||||
title: Rexel Energeasy Connect
|
||||
description: Connect and control your Rexel Energeasy Connect devices using the Overkiz integration
|
||||
ha_category:
|
||||
- Alarm Control Panel
|
||||
- Binary Sensor
|
||||
- Button
|
||||
- Climate
|
||||
- Cover
|
||||
- Hub
|
||||
- Light
|
||||
- Lock
|
||||
- Number
|
||||
- Scene
|
||||
- Select
|
||||
- Sensor
|
||||
- Siren
|
||||
- Switch
|
||||
ha_domain: rexel
|
||||
ha_codeowners:
|
||||
- '@imicknl'
|
||||
- '@vlebourl'
|
||||
- '@tetienne'
|
||||
ha_integration_type: integration
|
||||
ha_config_flow: true
|
||||
ha_platforms:
|
||||
- alarm_control_panel
|
||||
- binary_sensor
|
||||
- button
|
||||
- climate
|
||||
- cover
|
||||
- diagnostics
|
||||
- light
|
||||
- lock
|
||||
- number
|
||||
- scene
|
||||
- select
|
||||
- sensor
|
||||
- siren
|
||||
- switch
|
||||
ha_iot_class: Cloud Polling
|
||||
ha_zeroconf: true
|
||||
ha_dhcp: true
|
||||
ha_supporting_domain: overkiz
|
||||
ha_supporting_integration: Overkiz
|
||||
ha_release: 2022.2
|
||||
---
|
||||
|
||||
{% include integrations/supported_brand.md %}
|
21
source/_integrations/smart_blinds.markdown
Normal file
21
source/_integrations/smart_blinds.markdown
Normal file
@ -0,0 +1,21 @@
|
||||
---
|
||||
title: Smart Blinds
|
||||
description: Connect and control your Smart Blinds devices using the Motion Blinds integration
|
||||
ha_category:
|
||||
- Cover
|
||||
ha_domain: smart_blinds
|
||||
ha_codeowners:
|
||||
- '@starkillerOG'
|
||||
ha_integration_type: integration
|
||||
ha_config_flow: true
|
||||
ha_platforms:
|
||||
- cover
|
||||
- sensor
|
||||
ha_iot_class: Local Push
|
||||
ha_dhcp: true
|
||||
ha_supporting_domain: motion_blinds
|
||||
ha_supporting_integration: Motion Blinds
|
||||
ha_release: 2020.12
|
||||
---
|
||||
|
||||
{% include integrations/supported_brand.md %}
|
21
source/_integrations/smart_home.markdown
Normal file
21
source/_integrations/smart_home.markdown
Normal file
@ -0,0 +1,21 @@
|
||||
---
|
||||
title: Smart Home
|
||||
description: Connect and control your Smart Home devices using the Motion Blinds integration
|
||||
ha_category:
|
||||
- Cover
|
||||
ha_domain: smart_home
|
||||
ha_codeowners:
|
||||
- '@starkillerOG'
|
||||
ha_integration_type: integration
|
||||
ha_config_flow: true
|
||||
ha_platforms:
|
||||
- cover
|
||||
- sensor
|
||||
ha_iot_class: Local Push
|
||||
ha_dhcp: true
|
||||
ha_supporting_domain: motion_blinds
|
||||
ha_supporting_integration: Motion Blinds
|
||||
ha_release: 2020.12
|
||||
---
|
||||
|
||||
{% include integrations/supported_brand.md %}
|
49
source/_integrations/somfy.markdown
Normal file
49
source/_integrations/somfy.markdown
Normal file
@ -0,0 +1,49 @@
|
||||
---
|
||||
title: Somfy
|
||||
description: Connect and control your Somfy devices using the Overkiz integration
|
||||
ha_category:
|
||||
- Alarm Control Panel
|
||||
- Binary Sensor
|
||||
- Button
|
||||
- Climate
|
||||
- Cover
|
||||
- Hub
|
||||
- Light
|
||||
- Lock
|
||||
- Number
|
||||
- Scene
|
||||
- Select
|
||||
- Sensor
|
||||
- Siren
|
||||
- Switch
|
||||
ha_domain: somfy
|
||||
ha_codeowners:
|
||||
- '@imicknl'
|
||||
- '@vlebourl'
|
||||
- '@tetienne'
|
||||
ha_integration_type: integration
|
||||
ha_config_flow: true
|
||||
ha_platforms:
|
||||
- alarm_control_panel
|
||||
- binary_sensor
|
||||
- button
|
||||
- climate
|
||||
- cover
|
||||
- diagnostics
|
||||
- light
|
||||
- lock
|
||||
- number
|
||||
- scene
|
||||
- select
|
||||
- sensor
|
||||
- siren
|
||||
- switch
|
||||
ha_iot_class: Cloud Polling
|
||||
ha_zeroconf: true
|
||||
ha_dhcp: true
|
||||
ha_supporting_domain: overkiz
|
||||
ha_supporting_integration: Overkiz
|
||||
ha_release: 2022.2
|
||||
---
|
||||
|
||||
{% include integrations/supported_brand.md %}
|
21
source/_integrations/uprise_smart_shades.markdown
Normal file
21
source/_integrations/uprise_smart_shades.markdown
Normal file
@ -0,0 +1,21 @@
|
||||
---
|
||||
title: Uprise Smart Shades
|
||||
description: Connect and control your Uprise Smart Shades devices using the Motion Blinds integration
|
||||
ha_category:
|
||||
- Cover
|
||||
ha_domain: uprise_smart_shades
|
||||
ha_codeowners:
|
||||
- '@starkillerOG'
|
||||
ha_integration_type: integration
|
||||
ha_config_flow: true
|
||||
ha_platforms:
|
||||
- cover
|
||||
- sensor
|
||||
ha_iot_class: Local Push
|
||||
ha_dhcp: true
|
||||
ha_supporting_domain: motion_blinds
|
||||
ha_supporting_integration: Motion Blinds
|
||||
ha_release: 2020.12
|
||||
---
|
||||
|
||||
{% include integrations/supported_brand.md %}
|
Loading…
x
Reference in New Issue
Block a user