Franck Nijhof c464056402
Making our website faster, cleaner and prettier (#9853)
* 🔥 Removes octopress.js

* 🔥 Removes use of root_url var

* 🔥 Removes Octopress generator reference from feed

* 🔥 Removes delicious support

* 🔥 Removes support for Pinboard

* 🔥 Removes support for Disqus

* 🔥 Removes support for Google Plus

* ↩️ Migrate custom after_footer to default template

* ↩️ Migrate custom footer to default template

* ↩️ Migrate custom header to default template

* 🔥 Removes unused template files

* 🚀 Places time to read directly in post template

* 🚀 Removes unneeded capture from archive_post.html template

* 🔥 🚀 Removes unused, but heaving sorting call in component page

* 🚀 Merged javascripts into a single file

* 🔥 Removes more uses of root_url

* 🚀 Removal of unneeded captures from head

* 🔥 🚀 Removal of expensive liquid HTML compressor

* 🔥 Removes unneeded templates

* 🚀 Replaces kramdown with GitHub's CommonMark 🚀

* 💄 Adds Prism code syntax highlighting

*  Adds support for redirect in Netlify

* ↩️ 🔥 Let Netlify handle all developer doc redirects

* ✏️ Fixes typo in redirects file: Netify -> Netlify

* 🔥 Removes unused .themes folder

* 🔥 Removes unused aside.html template

* 🔥 Removes Disqus config leftover

* 🔥 Removes rouge highlighter config

* 🔥 Removes Octopress 🎉

* 💄 Adjust code block font size and adds soft wraps

* 💄 Adds styling for inline code blocks

* 💄 Improve styling of note/warning/info boxes + div support

* 🔨 Rewrites all note/warning/info boxes
2019-07-15 22:17:54 +02:00

3.4 KiB

title, description, logo, ha_category, ha_release, ha_iot_class, redirect_from
title description logo ha_category ha_release ha_iot_class redirect_from
EZcontrol XS1 Instructions on how to integrate an XS1 Gateway within Home Assistant. xs1.jpg
Hub
Climate
Sensor
Switch
0.88 Local Polling
/components/climate.xs1/
/components/sensor.xs1/
/components/switch.xs1/

The EZcontrol XS1 integration for Home Assistant allows you to observe and control devices configured on the XS1 Gateway. Please have a look at the official docs 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 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

This integration currently only covers part of the device types supported by the XS1 gateway, unsupported types are simply ignored.

Sensors

Any type of sensor is supported.

If you are using climate devices the "current temp" sensor will be automatically used by the actuator (if named correctly). To make this work have a look at the actuator description below.

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 component.

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