@@ -45,6 +45,7 @@ Multiple remote receivers can be configured as a list of dict definitions within
4545 - **dish**: Decode and dump Dish infrared codes.
4646 - **dooya**: Decode and dump Dooya RF codes.
4747 - **drayton**: Decode and dump Drayton Digistat RF codes.
48+ - **dyson**: Decode and dump Dyson Cool AM7 tower fan codes.
4849 - **jvc**: Decode and dump JVC infrared codes.
4950 - **gobox**: Decode and dump Go-Box infrared codes.
5051 - **keeloq**: Decode and dump KeeLoq RF codes.
@@ -188,6 +189,10 @@ To enable signal demodulation, configure the signal carrier frequency and duty c
188189 Drayton Digistat RF code has been decoded. A variable `x` of type {{< apistruct "remote_base::DraytonData" "remote_base::DraytonData" >}}
189190 is passed to the automation for use in lambdas.
190191
192+ - **on_dyson** (*Optional*, [Automation](#automation)): An automation to perform when a
193+ Dyson cool AM07 code has been decoded. A variable `x` of type {{< apistruct "remote_base::DysonData" "remote_base::DysonData" >}}
194+ is passed to the automation for use in lambdas.
195+
191196- **on_gobox** (*Optional*, [Automation](#automation)): An automation to perform when a
192197 Go-Box remote code has been decoded. A variable `x` of type {{< apistruct "remote_base::GoboxData" "remote_base::GoboxData" >}}
193198 is passed to the automation for use in lambdas.
@@ -429,6 +434,11 @@ Remote code selection (exactly one of these has to be included):
429434 - **channel** (**Required**, int): The 7-bit switch/channel to listen for.
430435 - **command** (**Required**, int): The 5-bit command to listen for.
431436
437+ - **dyson**: Trigger on a decoded dyson cool AM07 infrared remote code with the given data.
438+
439+ - **code** (**Required**, int): The 16-bit code to trigger on, e.g. 0x1200=power, 0x1215=fan++,0x122a=swing..., see dumper output for more info.
440+ - **index** (**Required**, int): The 8-bit rolling index [0..3], to be increased with every transmit, see dumper output for more info.
441+
432442- **gobox**: Trigger on a decoded Go-Box remote code with the given data.
433443
434444 - **code** (**Required**, int): The Go-Box code to trigger on, see dumper output for more info.
0 commit comments