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/konnected.markdown
+29-4Lines changed: 29 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -74,7 +74,7 @@ devices:
74
74
description: The number corresponding to the _IO index_ of the labeled pin on the NodeMCU dev board. See the [NodeMCU GPIO documentation](https://nodemcu.readthedocs.io/en/master/en/modules/gpio/) for more details. Valid values are 1, 2, 5, 6, 7 and 9.
75
75
required: exclusive
76
76
zone:
77
-
description: The number corresponding to the labeled zone on the [Konnected Alarm Panel](https://konnected.io) board. Valid values are 1, 2, 3, 4, 5 and 6.
77
+
description: The number corresponding to the labeled zone on the [Konnected Alarm Panel](https://konnected.io) board. Valid values are `1`, `2`, `3`, `4`, `5` and `6`.
78
78
required: exclusive
79
79
type:
80
80
description: Any [binary sensor](/components/binary_sensor/) class, typically `door`, `window`, `motion` or `smoke`.
@@ -92,24 +92,33 @@ devices:
92
92
description: The number corresponding to the _IO index_ of the labeled pin on the NodeMCU dev board. See the [NodeMCU GPIO documentation](https://nodemcu.readthedocs.io/en/master/en/modules/gpio/) for more details. Valid values are 1, 2, 5, 6, 7 and 8.
93
93
required: exclusive
94
94
zone:
95
-
description: The number corresponding to the labeled zone on the [Konnected Alarm Panel](https://konnected.io) board or the word `out` to specify the dedicated ALARM/OUT terminal on the Konnected board. Valid values are 1, 2, 3, 4, 5 and out.
95
+
description: The number corresponding to the labeled zone on the [Konnected Alarm Panel](https://konnected.io) board or the word `out` to specify the dedicated ALARM/OUT terminal on the Konnected board. Valid values are `1`, `2`, `3`, `4`, `5` and `out`.
96
96
required: exclusive
97
97
name:
98
98
description: The name of the device used in the front end.
99
99
required: false
100
100
default: automatically generated
101
101
activation:
102
-
description: Either "low" or "high" to specify the state when the switch is turned on.
102
+
description: Either `low` or `high` to specify the state when the switch is turned on.
103
103
default: high
104
104
required: false
105
+
momentary:
106
+
description: Duration of the momentary pulse in milliseconds. To make a half-second momentary contact using a relay for a garage door opener, set this value to `500`.
107
+
required: false
108
+
pause:
109
+
description: Time of the pause between pulses in milliseconds when also used with _momentary_ and _repeat_. To make a door chime "beep" with piezo buzzer, set this value to `55`, set _momentary_ to `65`, and _repeat_ to `3` or `4`.
110
+
required: false
111
+
repeat:
112
+
description: Number of times to repeat a momentary pulse. Set to `-1` to make an infinite repeat. This is useful as an alarm or warning when used with a piezo buzzer.
113
+
required: false
105
114
{% endconfiguration%}
106
115
107
116
#### {% linkable_title Configuration Notes %}
108
117
109
118
- Either **pin** or **zone** is required for each actuator or sensor. Do not use both in the same definition.
110
119
- Pin `D8` or the `out` zone will only work when activation is set to high (the default).
0 commit comments