@@ -44,6 +44,7 @@ Configuration variables:
44
44
- **dish **: Decode and dump Dish infrared codes.
45
45
- **dooya **: Decode and dump Dooya RF codes.
46
46
- **drayton **: Decode and dump Drayton Digistat RF codes.
47
+ - **dyson **: Decode and dump Dyson Cool AM7 tower fan codes.
47
48
- **jvc **: Decode and dump JVC infrared codes.
48
49
- **gobox **: Decode and dump Go-Box infrared codes.
49
50
- **keeloq **: Decode and dump KeeLoq RF codes.
@@ -154,6 +155,9 @@ Automations:
154
155
- **on_drayton ** (*Optional *, :ref: `Automation <automation >`): An automation to perform when a
155
156
Drayton Digistat RF code has been decoded. A variable ``x `` of type :apistruct: `remote_base::DraytonData `
156
157
is passed to the automation for use in lambdas.
158
+ - **on_dyson ** (*Optional *, :ref: `Automation <automation >`): An automation to perform when a
159
+ Dyson cool AM07 code has been decoded. A variable ``x `` of type :apistruct: `remote_base::DysonData `
160
+ is passed to the automation for use in lambdas.
157
161
- **on_gobox ** (*Optional *, :ref: `Automation <automation >`): An automation to perform when a
158
162
Go-Box remote code has been decoded. A variable ``x `` of type :apistruct: `remote_base::GoboxData `
159
163
is passed to the automation for use in lambdas.
@@ -367,6 +371,11 @@ Remote code selection (exactly one of these has to be included):
367
371
- **channel ** (**Required **, int): The 7-bit switch/channel to listen for.
368
372
- **command ** (**Required **, int): The 5-bit command to listen for.
369
373
374
+ - **dyson **: Trigger on a decoded dyson cool AM07 infrared remote code with the given data.
375
+
376
+ - **code ** (**Required **, int): The 16-bit code to trigger on, e.g. 0x1200=power, 0x1215=fan++,0x122a=swing..., see dumper output for more info.
377
+ - **index ** (**Required **, int): The 8-bit rolling index [0..3], to be increased with every transmit, see dumper output for more info.
378
+
370
379
- **gobox **: Trigger on a decoded Go-Box remote code with the given data.
371
380
372
381
- **code ** (**Required **, int): The Go-Box code to trigger on, see dumper output for more info.
0 commit comments