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/_addons/tellstick.markdown
+36-12Lines changed: 36 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -17,20 +17,8 @@ After installation you are presented with a default and example configuration, t
17
17
18
18
After any changes have been made to the configuration, you need to restart the add-on for the changes to take effect.
19
19
20
-
Configuration variables:
21
-
22
-
-**id** (*Required*): A number and must be unique for each device.
23
-
-**name** (*Required*): A name for easy identification of the device.
24
-
-**protocol** (*Required*): This is the protocol the device uses. More on the different protocols later down.
25
-
-**model** (*Optional*): The model parameter is only used by some protocols where there exists different types of devices using the same protocol. This can be dimmers versus non-dimmers, codeswitch versus self-learning, etc.
26
-
-**house** (*Optional*): Depending on protocol the values here can vary a lot to identify or group per house or type.
27
-
-**unit** (*Optional*): Unit identifier, in most cases a value between 1 to 16 and often used in combination with the house.
28
-
-**fade** (*Optional*): Fade is either `true` or `false` and tells a dimmer if it should fade smooth or instant between values (only for IKEA protocol as it seems).
29
-
-**code** (*Optional*): A number series based on ones and zeroes often used for dip-switch based devices.
30
-
31
20
You will need to add internal communication details to `configuration.yaml` to enable the integration from Hass.io and the add-on.
32
21
33
-
34
22
```yaml
35
23
# Example configuration.yaml entry
36
24
tellstick:
@@ -69,11 +57,47 @@ Example for adding more devices in the add-on configuration (note the comma sepa
69
57
}
70
58
```
71
59
60
+
{% configuration %}
61
+
id:
62
+
description: A number and must be unique for each device.
63
+
required: true
64
+
type: integer
65
+
name:
66
+
description: A name for easy identification of the device.
67
+
required: true
68
+
type: string
69
+
protocol:
70
+
description: This is the protocol the device uses. More on the different protocols later down.
71
+
required: true
72
+
type: string
73
+
model:
74
+
description: The model parameter is only used by some protocols where there exists different types of devices using the same protocol. This can be dimmers versus non-dimmers, codeswitch versus self-learning, etc.
75
+
required: false
76
+
type: string
77
+
house:
78
+
description: Depending on protocol the values here can vary a lot to identify or group per house or type.
79
+
required: false
80
+
type: string
81
+
unit:
82
+
description: Unit identifier, in most cases a value between 1 to 16 and often used in combination with the house.
83
+
required: false
84
+
type: integer
85
+
fade:
86
+
description: Fade is either `true` or `false` and tells a dimmer if it should fade smooth or instant between values (only for IKEA protocol as it seems).
87
+
required: false
88
+
type: boolean
89
+
code:
90
+
description: A number series based on ones and zeroes often used for dip-switch based devices.
91
+
required: false
92
+
type: string
93
+
{% endconfiguration %}
94
+
72
95
## {% linkable_title Service calls %}
73
96
74
97
If you wish to teach a self-learning device in your TellStick configuration:
75
98
76
99
Go to Home Assistant [service call](http://hassio.local:8123/dev-service) in Developer tools and select.
0 commit comments