From 55c300cf2ead8c4e11e86dda992138eaf783620a Mon Sep 17 00:00:00 2001 From: Johan Bloemberg Date: Thu, 1 Jun 2017 20:16:04 +0200 Subject: [PATCH 1/2] add device arguments for group commands --- source/_components/light.rflink.markdown | 4 +++- source/_components/switch.rflink.markdown | 3 +++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/source/_components/light.rflink.markdown b/source/_components/light.rflink.markdown index e596e1259b08..7c8619bf8c46 100644 --- a/source/_components/light.rflink.markdown +++ b/source/_components/light.rflink.markdown @@ -53,7 +53,9 @@ Device configuration variables: - **signal_repetitions** (*Optional*): Repeat every Rflink command this number of times (default: 1). - **fire_event_** (*Optional*): Set default `fire_event` for RFLink switch devices (see below). - **signal_repetitions** (*Optional*): Set default `signal_repetitions` for RFLink switch devices (see below). - +- **group** (*Optional*): Allow light to respond to group commands (ALLON/ALLOFF). (default: yes) +- **group_aliasses** (*Optional*): `aliasses` which only respond to group commands. +- **no_group_aliasses** (*Optional*): `aliasses` which do not respond to group commands. ### {% linkable_title Light state %} diff --git a/source/_components/switch.rflink.markdown b/source/_components/switch.rflink.markdown index c4b24be8a931..bc4c3e1eba09 100644 --- a/source/_components/switch.rflink.markdown +++ b/source/_components/switch.rflink.markdown @@ -52,6 +52,9 @@ Device configuration variables: - **aliasses** (*Optional*): Alternative RFLink ID's this device is known by. - **fire_event** (*Optional*): Fire an `button_pressed` event if this device is turned on or off (default: False). - **signal_repetitions** (*Optional*): Repeat every RFLink command this number of times (default: 1) +- **group** (*Optional*): Allow switch to respond to group commands (ALLON/ALLOFF). (default: yes) +- **group_aliasses** (*Optional*): `aliasses` which only respond to group commands. +- **no_group_aliasses** (*Optional*): `aliasses` which do not respond to group commands. ### {% linkable_title Switch state %} From dce1307b17f918f5bd5accab82a9221638939681 Mon Sep 17 00:00:00 2001 From: Johan Bloemberg Date: Tue, 4 Jul 2017 21:28:18 +0200 Subject: [PATCH 2/2] Correct spelling. --- source/_components/light.rflink.markdown | 10 +++++----- source/_components/sensor.rflink.markdown | 2 +- source/_components/switch.rflink.markdown | 10 +++++----- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/source/_components/light.rflink.markdown b/source/_components/light.rflink.markdown index 7c8619bf8c46..35242af644e8 100644 --- a/source/_components/light.rflink.markdown +++ b/source/_components/light.rflink.markdown @@ -48,20 +48,20 @@ Device configuration variables: - **name** (*Optional*): Name for the device, defaults to Rflink ID. - **type** (*Optional*): Override automatically detected type of the light device, can be: switchable, dimmable, hybrid or toggle. See 'Light Types' below. (default: Switchable) -- **aliasses** (*Optional*): Alternative Rflink ID's this device is known by. +- **aliases** (*Optional*): Alternative Rflink ID's this device is known by. - **fire_event** (*Optional*): Fire an `button_pressed` event if this device is turned on or off (default: False). - **signal_repetitions** (*Optional*): Repeat every Rflink command this number of times (default: 1). - **fire_event_** (*Optional*): Set default `fire_event` for RFLink switch devices (see below). - **signal_repetitions** (*Optional*): Set default `signal_repetitions` for RFLink switch devices (see below). - **group** (*Optional*): Allow light to respond to group commands (ALLON/ALLOFF). (default: yes) -- **group_aliasses** (*Optional*): `aliasses` which only respond to group commands. -- **no_group_aliasses** (*Optional*): `aliasses` which do not respond to group commands. +- **group_aliases** (*Optional*): `aliases` which only respond to group commands. +- **no_group_aliases** (*Optional*): `aliases` which do not respond to group commands. ### {% linkable_title Light state %} Initially the state of a light is unknown. When the light is turned on or off (via frontend or remote) the state is known and will be shown in the frontend. -Sometimes a light is controlled by multiple remotes, each remote has its own code programmed in the light. To allow tracking of the state when switched via other remotes add the corresponding remote codes as aliasses: +Sometimes a light is controlled by multiple remotes, each remote has its own code programmed in the light. To allow tracking of the state when switched via other remotes add the corresponding remote codes as aliases: ```yaml # Example configuration.yaml entry @@ -70,7 +70,7 @@ light: devices: newkaku_0000c6c2_1: name: Living room - aliasses: + aliases: - newkaku_000000001_2 - kaku_000001_a Ansluta_ce30_0: diff --git a/source/_components/sensor.rflink.markdown b/source/_components/sensor.rflink.markdown index ab94b7c92b2f..66a4d49c1142 100644 --- a/source/_components/sensor.rflink.markdown +++ b/source/_components/sensor.rflink.markdown @@ -44,7 +44,7 @@ Device configuration variables: - **name** (*Optional*): Name for the device, defaults to RFLink ID. - **sensor_type** (*Required*): Override automatically detected type of sensor. - **unit_of_measurement** (*Optional*): Override automatically detected unit of sensor. -- **aliasses** (*Optional*): Alternative RFLink ID's this device is known by. +- **aliases** (*Optional*): Alternative RFLink ID's this device is known by. ### {% linkable_title Hiding/ignoring sensors %} diff --git a/source/_components/switch.rflink.markdown b/source/_components/switch.rflink.markdown index bc4c3e1eba09..fc7ab2b7a9f8 100644 --- a/source/_components/switch.rflink.markdown +++ b/source/_components/switch.rflink.markdown @@ -49,18 +49,18 @@ Configuration variables: Device configuration variables: - **name** (*Optional*): Name for the device, defaults to RFLink ID. -- **aliasses** (*Optional*): Alternative RFLink ID's this device is known by. +- **aliases** (*Optional*): Alternative RFLink ID's this device is known by. - **fire_event** (*Optional*): Fire an `button_pressed` event if this device is turned on or off (default: False). - **signal_repetitions** (*Optional*): Repeat every RFLink command this number of times (default: 1) - **group** (*Optional*): Allow switch to respond to group commands (ALLON/ALLOFF). (default: yes) -- **group_aliasses** (*Optional*): `aliasses` which only respond to group commands. -- **no_group_aliasses** (*Optional*): `aliasses` which do not respond to group commands. +- **group_aliases** (*Optional*): `aliases` which only respond to group commands. +- **no_group_aliases** (*Optional*): `aliases` which do not respond to group commands. ### {% linkable_title Switch state %} Initially the state of a switch is unknown. When the switch is turned on or off (via frontend or wireless remote) the state is known and will be shown in the frontend. -Sometimes a switch is controlled by multiple wireless remotes, each remote has its own code programmed in the switch. To allow tracking of the state when switched via other remotes add the corresponding remote codes as aliasses: +Sometimes a switch is controlled by multiple wireless remotes, each remote has its own code programmed in the switch. To allow tracking of the state when switched via other remotes add the corresponding remote codes as aliases: ```yaml # Example configuration.yaml entry @@ -70,7 +70,7 @@ switch: newkaku_0000c6c2_1: name: Ceiling fan icon: mdi:fan - aliasses: + aliases: - newkaku_000000001_2 - kaku_000001_a ```