-
-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Blueprint for IKEA Tradfri On/Off Switch using deCONZ * Blueprint for Ikea SYMFONISK Sound remote (E1744) using deCONZ * Blueprint for Ikea Rodret using deCONZ
- Loading branch information
Showing
6 changed files
with
105 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
33 changes: 33 additions & 0 deletions
33
custom_components/switch_manager/blueprints/deconz-ikea-e1743.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: Ikea On/Off Remote E1743 | ||
service: deCONZ | ||
event_type: deconz_event | ||
identifier_key: device_id | ||
buttons: | ||
- d: "M 0 150 c 0 0 5 -145 145 -145 l 195 0 c 0 0 145 0 145 145 l 0 94 l -485 0 Z" | ||
actions: | ||
- title: press | ||
conditions: | ||
- key: event | ||
value: 1002 | ||
- title: hold | ||
conditions: | ||
- key: event | ||
value: 1001 | ||
- title: hold (released) | ||
conditions: | ||
- key: event | ||
value: 1003 | ||
- d: "M 0 245 L0,348 c 0 0 5 135 135 135 l 205 0 c 0 0 145 0 145 -145 l 0 -94 Z" | ||
actions: | ||
- title: press | ||
conditions: | ||
- key: event | ||
value: 2002 | ||
- title: hold | ||
conditions: | ||
- key: event | ||
value: 2001 | ||
- title: hold (released) | ||
conditions: | ||
- key: event | ||
value: 2003 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
34 changes: 34 additions & 0 deletions
34
custom_components/switch_manager/blueprints/deconz-ikea-e1744.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: Ikea SYMFONISK Sound remote (E1744) | ||
service: deCONZ | ||
event_type: deconz_event | ||
identifier_key: id | ||
buttons: | ||
- actions: | ||
- title: press | ||
conditions: | ||
- key: event | ||
value: 1002 | ||
- title: press 2x | ||
conditions: | ||
- key: event | ||
value: 1004 | ||
- title: press 3x | ||
conditions: | ||
- key: event | ||
value: 1005 | ||
- title: rotate clockwise start | ||
conditions: | ||
- key: event | ||
value: 2001 | ||
- title: rotate clockwise stop | ||
conditions: | ||
- key: event | ||
value: 2003 | ||
- title: rotate anti-clockwise start | ||
conditions: | ||
- key: event | ||
value: 3001 | ||
- title: rotate anti-clockwise stop | ||
conditions: | ||
- key: event | ||
value: 3003 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
38 changes: 38 additions & 0 deletions
38
custom_components/switch_manager/blueprints/deconz-ikea-e2201.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: Ikea Rodret | ||
service: deCONZ | ||
event_type: deconz_event | ||
identifier_key: id | ||
buttons: | ||
## Not sure why the buttons are back to front and illogical by their numbers?? | ||
- x: 168 | ||
y: 61 | ||
width: 50 | ||
actions: | ||
- title: press | ||
conditions: | ||
- key: event | ||
value: 1002 | ||
- title: hold | ||
conditions: | ||
- key: event | ||
value: 1001 | ||
- title: hold (released) | ||
conditions: | ||
- key: event | ||
value: 1003 | ||
- x: 168 | ||
y: 434 | ||
width: 50 | ||
actions: | ||
- title: press | ||
conditions: | ||
- key: event | ||
value: 2002 | ||
- title: hold | ||
conditions: | ||
- key: event | ||
value: 2001 | ||
- title: hold (released) | ||
conditions: | ||
- key: event | ||
value: 2003 |