You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: source/_components/lutron_caseta.markdown
+20-8Lines changed: 20 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -25,9 +25,9 @@ The currently supported Caseta devices are:
25
25
- Scenes as Home Assistant [scenes](/components/scene.lutron_caseta/)
26
26
- Lutron shades as Home Assistant [covers](/components/cover.lutron_caseta/)
27
27
28
-
When configured, the `lutron_caseta` component will automatically discover the currently supported devices as setup in the Lutron Smart Bridge. The name assigned in the Lutron mobile app will be used to form the `entity_id` used in Home Assistant. e.g., a dimmer called 'Bedroom Lamp' becomes `light.bedroom_lamp` in Home Assistant.
28
+
When configured, the `lutron_caseta` component will automatically discover the currently supported devices as setup in the Lutron Smart Bridge. The name assigned in the Lutron mobile app will be used to form the `entity_id` used in Home Assistant. e.g., a dimmer called 'Lamp' in a room called 'Bedroom' becomes `light.bedroom_lamp` in Home Assistant.
29
29
30
-
To use Lutron Caseta devices in your installation, you must first log in to your Lutron account and generate a certificate that allows Home Assistant to connect to your bridge. This can be accomplished by downloading and executing [this script](/assets/get_lutron_cert.zip), which will generate three files: caseta.key, caseta.crt, caseta-bridge.crt when you run it. See the instructions at the top of the script for more information.
30
+
To use Lutron Caseta devices in your installation, you must first log in to your Lutron account and generate a certificate that allows Home Assistant to connect to your bridge. This can be accomplished by downloading and executing [get_lutron_cert.py](https://github.com/gurumitts/pylutron-caseta/blob/master/get_lutron_cert.py), which will generate three files: caseta.key, caseta.crt, caseta-bridge.crt when you run it. See the instructions at the top of the script for more information.
31
31
32
32
Once you have the three necessary files, place them in your configuration directory and add the following to your `configuration.yaml`:
33
33
@@ -40,12 +40,24 @@ lutron_caseta:
40
40
ca_certs: caseta-bridge.crt
41
41
```
42
42
43
-
Configuration variables:
44
-
45
-
- **host** (*Required*): The IP address of the Lutron Smart Bridge.
46
-
- **keyfile** (*Required*): The private key that Home Assistant will use to authenticate to the bridge.
47
-
- **certfile** (*Required*): The certificate chain that Home Assistant will use to authenticate to the bridge.
48
-
- **ca_certs** (*Required*): The list of certificate authorities (usually only one) that Home Assistant will expect when connecting to the bridge.
43
+
{% configuration %}
44
+
host:
45
+
required: true
46
+
description: The IP address of the Lutron Smart Bridge.
47
+
type: string
48
+
keyfile:
49
+
required: true
50
+
description: The private key that Home Assistant will use to authenticate to the bridge.
51
+
type: string
52
+
certfile:
53
+
required: true
54
+
description: The certificate chain that Home Assistant will use to authenticate to the bridge.
55
+
type: string
56
+
ca_certs:
57
+
required: true
58
+
description: The list of certificate authorities (usually only one) that Home Assistant will expect when connecting to the bridge.
59
+
type: string
60
+
{% endconfiguration %}
49
61
50
62
<p class='note'>
51
63
It is recommended to assign a static IP address to your Lutron Smart Bridge. This ensures that it won't change IP address, so you won't have to change the `host` if it reboots and comes up with a different IP address.
0 commit comments