mirror of
https://github.com/home-assistant/core.git
synced 2025-07-21 04:07:08 +00:00
deCONZ support for new device trigger for Feller EDIZIOdue Friends of hue Switch (#33478)
* deCONZ support for new device trigger for Feller EDIZIOdue Friends of hue Switch * Rename to general name -friends of hue switch * translation for top and bottom buttons
This commit is contained in:
parent
4b1626a748
commit
138470d86c
@ -34,6 +34,8 @@
|
|||||||
"device_automation": {
|
"device_automation": {
|
||||||
"trigger_subtype": {
|
"trigger_subtype": {
|
||||||
"both_buttons": "Beide Tasten",
|
"both_buttons": "Beide Tasten",
|
||||||
|
"top_buttons": "Obere Tasten",
|
||||||
|
"bottom_buttons" : "Untere Tasten",
|
||||||
"button_1": "Erste Taste",
|
"button_1": "Erste Taste",
|
||||||
"button_2": "Zweite Taste",
|
"button_2": "Zweite Taste",
|
||||||
"button_3": "Dritte Taste",
|
"button_3": "Dritte Taste",
|
||||||
|
@ -34,6 +34,8 @@
|
|||||||
"device_automation": {
|
"device_automation": {
|
||||||
"trigger_subtype": {
|
"trigger_subtype": {
|
||||||
"both_buttons": "Both buttons",
|
"both_buttons": "Both buttons",
|
||||||
|
"top_buttons": "Top buttons",
|
||||||
|
"bottom_buttons" : "Bottom buttons",
|
||||||
"button_1": "First button",
|
"button_1": "First button",
|
||||||
"button_2": "Second button",
|
"button_2": "Second button",
|
||||||
"button_3": "Third button",
|
"button_3": "Third button",
|
||||||
|
@ -34,6 +34,8 @@
|
|||||||
"device_automation": {
|
"device_automation": {
|
||||||
"trigger_subtype": {
|
"trigger_subtype": {
|
||||||
"both_buttons": "Les deux boutons",
|
"both_buttons": "Les deux boutons",
|
||||||
|
"top_buttons": "sup\u00e9rieurs boutons",
|
||||||
|
"bottom_buttons" : "inf\u00e9rieurs boutons",
|
||||||
"button_1": "Premier bouton",
|
"button_1": "Premier bouton",
|
||||||
"button_2": "Deuxi\u00e8me bouton",
|
"button_2": "Deuxi\u00e8me bouton",
|
||||||
"button_3": "Troisi\u00e8me bouton",
|
"button_3": "Troisi\u00e8me bouton",
|
||||||
|
@ -99,8 +99,8 @@ HUE_TAP_REMOTE = {
|
|||||||
(CONF_SHORT_PRESS, CONF_BUTTON_4): {CONF_EVENT: 18},
|
(CONF_SHORT_PRESS, CONF_BUTTON_4): {CONF_EVENT: 18},
|
||||||
}
|
}
|
||||||
|
|
||||||
SENIC_FRIENDS_OF_HUE_MODEL = "FOHSWITCH"
|
FRIENDS_OF_HUE_SWITCH_MODEL = "FOHSWITCH"
|
||||||
SENIC_FRIENDS_OF_HUE = {
|
FRIENDS_OF_HUE_SWITCH = {
|
||||||
(CONF_SHORT_PRESS, CONF_BUTTON_1): {CONF_EVENT: 1000},
|
(CONF_SHORT_PRESS, CONF_BUTTON_1): {CONF_EVENT: 1000},
|
||||||
(CONF_SHORT_RELEASE, CONF_BUTTON_1): {CONF_EVENT: 1002},
|
(CONF_SHORT_RELEASE, CONF_BUTTON_1): {CONF_EVENT: 1002},
|
||||||
(CONF_LONG_PRESS, CONF_BUTTON_1): {CONF_EVENT: 1001},
|
(CONF_LONG_PRESS, CONF_BUTTON_1): {CONF_EVENT: 1001},
|
||||||
@ -304,7 +304,7 @@ REMOTES = {
|
|||||||
HUE_DIMMER_REMOTE_MODEL_GEN1: HUE_DIMMER_REMOTE,
|
HUE_DIMMER_REMOTE_MODEL_GEN1: HUE_DIMMER_REMOTE,
|
||||||
HUE_DIMMER_REMOTE_MODEL_GEN2: HUE_DIMMER_REMOTE,
|
HUE_DIMMER_REMOTE_MODEL_GEN2: HUE_DIMMER_REMOTE,
|
||||||
HUE_TAP_REMOTE_MODEL: HUE_TAP_REMOTE,
|
HUE_TAP_REMOTE_MODEL: HUE_TAP_REMOTE,
|
||||||
SENIC_FRIENDS_OF_HUE_MODEL: SENIC_FRIENDS_OF_HUE,
|
FRIENDS_OF_HUE_SWITCH_MODEL: FRIENDS_OF_HUE_SWITCH,
|
||||||
SYMFONISK_SOUND_CONTROLLER_MODEL: SYMFONISK_SOUND_CONTROLLER,
|
SYMFONISK_SOUND_CONTROLLER_MODEL: SYMFONISK_SOUND_CONTROLLER,
|
||||||
TRADFRI_ON_OFF_SWITCH_MODEL: TRADFRI_ON_OFF_SWITCH,
|
TRADFRI_ON_OFF_SWITCH_MODEL: TRADFRI_ON_OFF_SWITCH,
|
||||||
TRADFRI_OPEN_CLOSE_REMOTE_MODEL: TRADFRI_OPEN_CLOSE_REMOTE,
|
TRADFRI_OPEN_CLOSE_REMOTE_MODEL: TRADFRI_OPEN_CLOSE_REMOTE,
|
||||||
|
@ -83,6 +83,8 @@
|
|||||||
"open": "Open",
|
"open": "Open",
|
||||||
"close": "Close",
|
"close": "Close",
|
||||||
"both_buttons": "Both buttons",
|
"both_buttons": "Both buttons",
|
||||||
|
"top_buttons": "Top buttons",
|
||||||
|
"bottom_buttons" : "Bottom buttons",
|
||||||
"button_1": "First button",
|
"button_1": "First button",
|
||||||
"button_2": "Second button",
|
"button_2": "Second button",
|
||||||
"button_3": "Third button",
|
"button_3": "Third button",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user