Add meeting automations. Improve and combine AC automations

This commit is contained in:
2020-05-18 22:17:01 +03:00
parent 5c1485a5e2
commit 4af2953a6c
4 changed files with 53 additions and 49 deletions
+11
View File
@@ -0,0 +1,11 @@
binary_sensor:
- platform: template
sensors:
in_a_meeting:
friendly_name: In a meeting
value_template: >-
{% set slack_emoji = state_attr('sensor.slack_georgi', 'status_emoji') %}
{% set slack_status = state_attr('sensor.slack_georgi', 'status_text') %}
{{ slack_emoji == ':spiral_calendar_pad:' or 'meeting' in slack_status.lower() }}