Introduce magic cube modes

This commit is contained in:
2020-04-25 01:03:12 +03:00
parent a219a4f398
commit f49aed614f
5 changed files with 120 additions and 68 deletions
+102 -11
View File
@@ -1,29 +1,120 @@
input_boolean:
magic_cube_enabled:
name: Enable Cube
icon: mdi:cube-outline
input_select:
magic_cube_mode:
name: Cube Mode
icon: mdi:cube-scan
options:
- music
- light
automation:
- alias: Lighting · Living room · Turn all lights on on Magic Cube flip 90
- alias: Magic Cube · Mode · Change
trigger:
platform: event
event_type: zha_event
event_data:
device_ieee: !secret magic_cube_ieee
command: flip
args:
flip_degrees: 90
command: slide
action:
- service: light.turn_on
- service: input_select.select_option
entity_id: input_select.magic_cube_mode
data_template:
option: >-
{% if trigger.event.data["args"]["activated_face"] == 5 %}
music
{% elif trigger.event.data["args"]["activated_face"] == 2 %}
light
{% else %}
{{ states('input_select.magic_cube_mode') }}
{% endif %}
- alias: Magic Cube · Lighting · Toggle on Knock
trigger:
platform: event
event_type: zha_event
event_data:
device_ieee: !secret magic_cube_ieee
command: knock
condition:
condition: and
conditions:
- condition: state
entity_id: input_boolean.magic_cube_enabled
state: "on"
- condition: state
entity_id: input_select.magic_cube_mode
state: "light"
action:
- service: light.toggle
entity_id: light.living_room_all_lights
- alias: Lighting · Living room · Turn all lights off on Magic Cube flip 180
- alias: Magic Cube · Music · Play/Pause on Knock
trigger:
platform: event
event_type: zha_event
event_data:
device_ieee: !secret magic_cube_ieee
command: flip
args:
flip_degrees: 180
command: knock
condition:
condition: and
conditions:
- condition: state
entity_id: input_boolean.magic_cube_enabled
state: "on"
- condition: state
entity_id: input_select.magic_cube_mode
state: "music"
action:
- service: light.turn_off
entity_id: light.living_room_all_lights
- service: media_player.media_play_pause
data:
entity_id: media_player.living_room
- alias: Magic Cube · Music · Volume down on rotate left
trigger:
platform: event
event_type: zha_event
event_data:
device_ieee: !secret magic_cube_ieee
command: rotate_left
condition:
condition: and
conditions:
- condition: state
entity_id: input_boolean.magic_cube_enabled
state: "on"
- condition: state
entity_id: input_select.magic_cube_mode
state: "music"
action:
- service: media_player.volume_down
data:
entity_id: media_player.living_room
- alias: Magic Cube Music · Volume up rotate right
trigger:
platform: event
event_type: zha_event
event_data:
device_ieee: !secret magic_cube_ieee
command: rotate_right
condition:
condition: and
conditions:
- condition: state
entity_id: input_boolean.magic_cube_enabled
state: "on"
- condition: state
entity_id: input_select.magic_cube_mode
state: "music"
action:
- service: media_player.volume_up
data:
entity_id: media_player.living_room
#
# ─── CUSTOMIZATION ──────────────────────────────────────────────────────────────