
* u-z integrations: apply sentence-style caps to categories * Apply suggestions from code review Co-authored-by: Joakim Sørensen <joasoe@gmail.com> * Add references to glossary terms * Update source/_integrations/universal.markdown Co-authored-by: Joakim Sørensen <joasoe@gmail.com> * Update source/_integrations/universal.markdown Co-authored-by: Joakim Sørensen <joasoe@gmail.com> * linter: change vizio to VIZIO - as per product website https://www.vizio.com/en/smartcast * remove term refs from YAML * VIZIO: change spelling according to website - https://www.vizio.com/en/t * Update source/_integrations/vizio.markdown * Update source/_integrations/universal.markdown * Apply suggestions from code review Co-authored-by: Joakim Sørensen <joasoe@gmail.com> * Update source/_integrations/unifiprotect.markdown Co-authored-by: Joakim Sørensen <joasoe@gmail.com> * Apply suggestions from code review Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> * Apply suggestions from code review Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> * Fix some more to sentence-style caps * Update source/_integrations/unifiprotect.markdown Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> * Update source/_integrations/unifiprotect.markdown Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> * Update source/_integrations/unifiprotect.markdown Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> --------- Co-authored-by: Joakim Sørensen <joasoe@gmail.com> Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com>
3.4 KiB
title, description, ha_category, ha_release, ha_iot_class, ha_domain, ha_platforms, ha_integration_type
title | description | ha_category | ha_release | ha_iot_class | ha_domain | ha_platforms | ha_integration_type | |||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
EZcontrol XS1 | Instructions on how to integrate an XS1 Gateway within Home Assistant. |
|
0.88 | Local Polling | xs1 |
|
integration |
The EZcontrol XS1 {% term integration %} for Home Assistant allows you to observe and control devices configured on the XS1 Gateway. Please have a look at the official documentation for using this gateway Bedienungsanleitung v3.0.0.0.
Configuration
Add the following entry to the configuration.yaml
file:
# Example configuration.yaml entry
xs1:
host: "192.168.2.100"
The {% term integration %} will automatically detect the configuration of the XS1 Gateway only on initialization which currently means when Home Assistant boots. When you change the configuration of the XS1 you (currently) have to restart Home Assistant to see the effects.
{% configuration %}
host:
description: Host of the XS1 Gateway.
required: true
type: string
port:
description: Custom port if you are running your gateway behind some kind of proxy.
required: false
type: integer
default: 80
ssl:
description: Defines if https
should be used for API requests (only possible via your own proxy).
required: false
type: boolean
default: false
username:
description: User to access XS1 web API.
required: false
type: string
password:
description: Password to access XS1 web API.
required: false
type: string
{% endconfiguration %}
Supported device types
Sensors
Any type of sensor is supported.
Actuators
Type | Supported | Notes |
---|---|---|
switch |
Yes | |
dimmer |
Partly | Dimmers are currently handled like switches so actual dimming is not supported :( |
temperature |
Yes |
Climate actuator/sensor
Home Assistant can combine temperature sensors and climate actuators into a single device. The XS1 gateway does not allow this, but a sensor and actuator can be configured separately. To make Home Assistant register them in the same climate device just prefix the sensor name with the actuator name on the XS1 gateway configuration, f.ex:
- Actuator device name: "Bedroom_Temp"
- Sensor device name: "Bedroom_Temp_Sensor"
Examples
In this section, you find some real-life examples of how to use this {% term integration %}.
Full configuration
This example shows how you can use the optional configuration options.
# Example configuration.yaml entry
xs1:
host: "192.168.2.100"
port: 80
ssl: false
username: myuser
password: 123totallySecure