From 6287981c4e38fe9371a636cb55ee74c07f58bb2d Mon Sep 17 00:00:00 2001 From: Mat931 <49403702+Mat931@users.noreply.github.com> Date: Sat, 15 Apr 2023 08:46:06 +0000 Subject: [PATCH 1/3] Update remote_receiver.rst --- components/remote_receiver.rst | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/components/remote_receiver.rst b/components/remote_receiver.rst index 1333615fe..d74f515d5 100644 --- a/components/remote_receiver.rst +++ b/components/remote_receiver.rst @@ -35,6 +35,7 @@ Configuration variables: - **canalsatld**: Decode and dump CanalSatLD infrared codes. - **coolix**: Decode and dump Coolix infrared codes. - **dish**: Decode and dump Dish infrared codes. + - **hob2hood**: Decode and dump AEG Hob2Hood infrared codes. - **jvc**: Decode and dump JVC infrared codes. - **lg**: Decode and dump LG infrared codes. - **magiquest**: Decode and dump MagiQuest wand infrared codes. @@ -91,6 +92,9 @@ Automations: dish network remote code has been decoded. A variable ``x`` of type :apistruct:`remote_base::DishData` is passed to the automation for use in lambdas. Beware that Dish remotes use a different carrier frequency (57.6kHz) that many receiver hardware don't decode. +- **on_hob2hood** (*Optional*, :ref:`Automation `): An automation to perform when a + Hob2Hood remote code has been decoded. A variable ``x`` of type :apistruct:`remote_base::Hob2HoodData` + is passed to the automation for use in lambdas. - **on_jvc** (*Optional*, :ref:`Automation `): An automation to perform when a JVC remote code has been decoded. A variable ``x`` of type :apistruct:`remote_base::JVCData` is passed to the automation for use in lambdas. @@ -219,6 +223,19 @@ Remote code selection (exactly one of these has to be included): - **address** (*Optional*, int): The number of the receiver to target, between 1 and 16 inclusive. Defaults to ``1``. - **command** (**Required**, int): The Dish command to listen for, between 0 and 63 inclusive. +- **hob2hood**: Trigger on a decoded Hob2Hood remote code with the given data. + + - **command** (**Required**, enum): The Hob2Hood command to trigger on. + + - ``light_off`` + - ``light_on`` + - ``fan_off`` + - ``fan_low`` + - ``fan_medium`` + - ``fan_high`` + - ``fan_max`` + + - **jvc**: Trigger on a decoded JVC remote code with the given data. - **data** (**Required**, int): The JVC code to trigger on, see dumper output for more info. From 505f13d07cca32821a3e1fdc7211c32858594262 Mon Sep 17 00:00:00 2001 From: Mat931 <49403702+Mat931@users.noreply.github.com> Date: Sat, 15 Apr 2023 08:51:29 +0000 Subject: [PATCH 2/3] Update remote_transmitter.rst --- components/remote_transmitter.rst | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/components/remote_transmitter.rst b/components/remote_transmitter.rst index 15bf0efe8..d3dc62f4e 100644 --- a/components/remote_transmitter.rst +++ b/components/remote_transmitter.rst @@ -192,6 +192,31 @@ Configuration variables: You can find a list of commands in the `LIRC project `__. +.. _remote_transmitter-transmit_hob2hood: + +``remote_transmitter.transmit_hob2hood`` Action +*********************************************** + +This :ref:`action ` sends a Hob2Hood infrared remote code to a remote transmitter. + +.. code-block:: yaml + + on_...: + - remote_transmitter.transmit_hob2hood: + command: light_on + +Configuration variables: + +- **command** (**Required**, enum): The Hob2Hood command to send. + + - ``light_off`` + - ``light_on`` + - ``fan_off`` + - ``fan_low`` + - ``fan_medium`` + - ``fan_high`` + - ``fan_max`` + .. _remote_transmitter-transmit_jvc: ``remote_transmitter.transmit_jvc`` Action From 47cec7b75e2d52ce18ba5cd83467c49de46a018c Mon Sep 17 00:00:00 2001 From: Mat931 <49403702+Mat931@users.noreply.github.com> Date: Sat, 6 May 2023 12:47:34 +0000 Subject: [PATCH 3/3] Update remote_receiver.rst --- components/remote_receiver.rst | 1 - 1 file changed, 1 deletion(-) diff --git a/components/remote_receiver.rst b/components/remote_receiver.rst index 14b60b7c1..27cec733b 100644 --- a/components/remote_receiver.rst +++ b/components/remote_receiver.rst @@ -37,7 +37,6 @@ Configuration variables: - **dish**: Decode and dump Dish infrared codes. - **drayton**: Decode and dump Drayton Digistat RF codes. - **hob2hood**: Decode and dump AEG Hob2Hood infrared codes. - - **drayton**: Decode and dump Drayton Digistat RF codes. - **jvc**: Decode and dump JVC infrared codes. - **lg**: Decode and dump LG infrared codes. - **magiquest**: Decode and dump MagiQuest wand infrared codes.