mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-19 15:26:59 +00:00
Remove line breaks
This commit is contained in:
parent
7a14de2b9e
commit
9019302f7b
@ -11,17 +11,12 @@ logo: universal_devices.png
|
|||||||
ha_category: Hub
|
ha_category: Hub
|
||||||
---
|
---
|
||||||
|
|
||||||
The ISY994 is a home automation controller that is capable of controlling
|
The ISY994 is a home automation controller that is capable of controlling Insteon and X10 devices. The controller is also capable of controlling Z-Wave devices but that functionality has not yet been confirmed with Home Assistant.
|
||||||
Insteon and X10 devices. The controller is also capable of controlling Z-Wave
|
The ISY994 controller is manufactured by [Universal Devices](https://www.universal-devices.com/residential/isy994i-series/).
|
||||||
devices but that functionality has not yet been confirmed with Home Assistant.
|
|
||||||
The ISY994 controller is manufactured by [Universal
|
|
||||||
Devices](https://www.universal-devices.com/residential/isy994i-series/).
|
|
||||||
|
|
||||||
### {% linkable_title Basic Configuration %}
|
### {% linkable_title Basic Configuration %}
|
||||||
|
|
||||||
Home Assistant is capable of communicating with any switch, sensor, and light
|
Home Assistant is capable of communicating with any switch, sensor, and light that is configured on the controller. Using the programs on the controller, custom switches and sensors can also be created.
|
||||||
that is configured on the controller. Using the programs on the controller,
|
|
||||||
custom switches and sensors can also be created.
|
|
||||||
|
|
||||||
To integrate your ISY994 controller with Home Assistant, add the following section to your `configuration.yaml` file:
|
To integrate your ISY994 controller with Home Assistant, add the following section to your `configuration.yaml` file:
|
||||||
|
|
||||||
@ -41,76 +36,51 @@ Configuration variables:
|
|||||||
- **username** (*Required*): The username that used to access the ISY interface.
|
- **username** (*Required*): The username that used to access the ISY interface.
|
||||||
- **password** (*Required*): The password that used to access the ISY interface.
|
- **password** (*Required*): The password that used to access the ISY interface.
|
||||||
|
|
||||||
- **sensor_string** (*Optional*): This is the string that is used to identify which devices are to be assumed to be sensors instead of lights of switches. By default, this string is 'Sensor'. If this string is found in the device name, Home Assistant will
|
- **sensor_string** (*Optional*): This is the string that is used to identify which devices are to be assumed to be sensors instead of lights of switches. By default, this string is 'Sensor'. If this string is found in the device name, Home Assistant will assume it is as a sensor.
|
||||||
assume it is as a sensor.
|
- **hidden_string** (*Optional*): The HIDDEN_STRING is a string that is used to identify which devices are to be hidden on Home Assistant's front page. This string will be stripped from the device's name before being used. By default, this value is '{HIDE ME}'.
|
||||||
- **hidden_string** (*Optional*): The HIDDEN_STRING is a string that is used to identify which devices are to be
|
- **tls** (*Optional*): This entry should refelct the version of TLS that the ISY controller is using for HTTPS encryption. This value can be either 1.1 or 1.2. If this value is not set, it is assumed to be version 1.1. This is the default for most users. ISY994 Pro users may likely be using 1.2. When using HTTPS in the host entry, it is best practice to set this value.
|
||||||
hidden on Home Assistant's front page. This string will be stripped from the
|
|
||||||
device's name before being used. By default, this value is '{HIDE ME}'.
|
|
||||||
- **tls** (*Optional*): This entry should refelct the version of TLS that the ISY controller is using for HTTPS encryption. This value can be either 1.1 or 1.2. If this value is not set, it is assumed to be version 1.1. This is the default for most users.
|
|
||||||
ISY994 Pro users may likely be using 1.2. When using HTTPS in the host entry, it is best practice to set this value.
|
|
||||||
|
|
||||||
Once the ISY controller is configured, it will automatically import any lights, switches, and sensors it can locate.
|
Once the ISY controller is configured, it will automatically import any lights, switches, and sensors it can locate.
|
||||||
|
|
||||||
### {% linkable_title Creating Custom Switches %}
|
### {% linkable_title Creating Custom Switches %}
|
||||||
|
|
||||||
Using the Programs tab in the controller's Administrative Console, custom
|
Using the Programs tab in the controller's Administrative Console, custom switches can be created that will appear natively inside of Home Assistant. Home Assistant will scan two different directories for switch configurations on the controller. These directories must exist at the root level. The two directories used to make switches are *HA.doors* and *HA.switches*. Currently, the two receive identical treatment in Home Assistant.
|
||||||
switches can be created that will appear natively inside of Home Assistant.
|
|
||||||
Home Assistant will scan two different directories for switch configurations on
|
|
||||||
the controller. These directories must exist at the root level. The two
|
|
||||||
directories used to make switches are *HA.doors* and *HA.switches*. Currently,
|
|
||||||
the two receive identical treatment in Home Assistant.
|
|
||||||
|
|
||||||
A switch is created by creating a directory under either of these root
|
A switch is created by creating a directory under either of these root dirctories with the name you would like to call the switch. Two programs are then required in this directory: *status* and *actions*. The image below shows a sample configuration. This sample includes an extra program called *auto on*. This is ignored by Home Assistant.
|
||||||
dirctories with the name you would like to call the switch. Two programs are
|
|
||||||
then required in this directory: *status* and *actions*. The image below shows
|
|
||||||
a sample configuration. This sample includes an extra program called *auto on*.
|
|
||||||
This is ignored by Home Assistant.
|
|
||||||
|
|
||||||
<p class='img'>
|
<p class='img'>
|
||||||
<img src='{{site_root}}/images/isy994/isy994_SwitchExample.png' />
|
<img src='{{site_root}}/images/isy994/isy994_SwitchExample.png' />
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
The *status* program in this directory is what indicates if the switch is on or
|
The *status* program in this directory is what indicates if the switch is on or off. Only the IF clause is evaluated. If the clause returns True, the switch will be on. False will indicate the switch is off.
|
||||||
off. Only the IF clause is evaluated. If the clause returns True, the switch
|
|
||||||
will be on. False will indicate the switch is off.
|
|
||||||
|
|
||||||
<p class='img'>
|
<p class='img'>
|
||||||
<img src='{{site_root}}/images/isy994/isy994_SwitchStatusExample.png' />
|
<img src='{{site_root}}/images/isy994/isy994_SwitchStatusExample.png' />
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
The *actions* program indicates what should be performed to turn the switch on
|
The *actions* program indicates what should be performed to turn the switch on or off. The THEN clause gives instructions for turning the switch on while the ELSE clause gives instructions for turning the switch off. Below is an example.
|
||||||
or off. The THEN clause gives instructions for turning the switch on while the
|
|
||||||
ELSE clause gives instructions for turning the switch off. Below is an example.
|
|
||||||
|
|
||||||
<p class='img'>
|
<p class='img'>
|
||||||
<img src='{{site_root}}/images/isy994/isy994_SwitchActionsExample.png' />
|
<img src='{{site_root}}/images/isy994/isy994_SwitchActionsExample.png' />
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
The example program above shows how to control a legacy X10 device from Home
|
The example program above shows how to control a legacy X10 device from Home Assistant using an ISY controller.
|
||||||
Assistant using an ISY controller.
|
|
||||||
|
|
||||||
### {% linkable_title Creating Custom Sensors %}
|
### {% linkable_title Creating Custom Sensors %}
|
||||||
|
|
||||||
Custom sensors can also be created using the Programs tab in the ISY
|
Custom sensors can also be created using the Programs tab in the ISY controller's Administrative Console. For programs, three different root level folders are evaluated that are all handled a little differently inside of Home Assistant.
|
||||||
controller's Administrative Console. For programs, three different root level
|
|
||||||
folders are evaluated that are all handled a little differently inside of Home
|
|
||||||
Assistant.
|
|
||||||
|
|
||||||
* *HA.sensors* will have states of Open or Closed
|
* *HA.sensors* will have states of Open or Closed
|
||||||
* *HA.states* will have states of On or Off
|
* *HA.states* will have states of On or Off
|
||||||
* *HA.locations* will have states of Home or Away
|
* *HA.locations* will have states of Home or Away
|
||||||
|
|
||||||
To create a custom sensor, create a program under any of the three root
|
To create a custom sensor, create a program under any of the three root directories. The name of the program will be the name of the sensor. An example below shows a location indicator setup.
|
||||||
directories. The name of the program will be the name of the sensor. An example
|
|
||||||
below shows a location indicator setup.
|
|
||||||
|
|
||||||
<p class='img'>
|
<p class='img'>
|
||||||
<img src='{{site_root}}/images/isy994/isy994_SensorExample.png' />
|
<img src='{{site_root}}/images/isy994/isy994_SensorExample.png' />
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
The program created only needs an IF clause. It will be evaluated to either
|
The program created only needs an IF clause. It will be evaluated to either Open/On/Home when it returns True and Closed/Off/Away when it returns False. An example is below.
|
||||||
Open/On/Home when it returns True and Closed/Off/Away when it returns False. An
|
|
||||||
example is below.
|
|
||||||
|
|
||||||
<p class='img'>
|
<p class='img'>
|
||||||
<img src='{{site_root}}/images/isy994/isy994_SensorStatusExample.png' />
|
<img src='{{site_root}}/images/isy994/isy994_SensorStatusExample.png' />
|
||||||
|
@ -27,8 +27,7 @@ Configuration variables:
|
|||||||
|
|
||||||
### How to find the packet_id for your devices
|
### How to find the packet_id for your devices
|
||||||
|
|
||||||
Make sure you have enabled all RFXtrx related platforms. Push your remote and the device will be added
|
Make sure you have enabled all RFXtrx related platforms. Push your remote and the device will be added automatically. After that you can see you device packetid in the state developer tools in the app.
|
||||||
automatically. After that you can see you device packetid in the state developer tools in the app.
|
|
||||||
|
|
||||||
Example for X10 and Chacon DI.O signals, if you see in state developer tools the following entities:
|
Example for X10 and Chacon DI.O signals, if you see in state developer tools the following entities:
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user