このコミットが含まれているのは:
Florian Brinker
2019-01-16 13:47:15 +01:00
コミット cd860031fb
33個のファイルの変更960行の追加0行の削除

19
automations/alarm.yaml ノーマルファイル
ファイルの表示

@@ -0,0 +1,19 @@
- id: bedroom_alarm_clock
alias: bedroom alarm clock
trigger:
platform: template
value_template: "{{ states('sensor.time') == (states.input_datetime.bedroom_alarm_clock_time.attributes.timestamp | int | timestamp_custom('%H:%M', False)) }}"
condition:
condition: and
conditions:
- condition: state
entity_id: binary_sensor.workday_sensor
state: 'on'
- condition: sun
before: sunrise
action:
- service: notify.telegram_group
data:
title: 'Guten Morgen!'
message: 'Langsam dürft ihr wach werden. Es wird bald Zeit aufzustehen... :)'

9
automations/hassio.yaml ノーマルファイル
ファイルの表示

@@ -0,0 +1,9 @@
- alias: Update notifications
trigger:
- platform: state
entity_id: updater.updater
action:
service: notify.telegram_group
data_template:
title: 'Neuer Home Assistant Release'
message: "Home Assistant {{ states.updater.updater.state }} ist nun verfügbar."

13
automations/humidity.yaml ノーマルファイル
ファイルの表示

@@ -0,0 +1,13 @@
- alias: Dachboden Luftfeuchtigkeit
trigger:
platform: numeric_state
entity_id: sensor.attic_humidity
below: 35
above: 65
for:
minutes: 3
action:
service: notify.telegram_group
data:
title: 'Bitte den Dachboden lüften!'
message: 'Die Luftfeuchtigkeit liegt mit {{ states.sensor.livingroom_humidity.state }}% außerhalb des Grenzbereichs.'

30
automations/livingroom.yaml ノーマルファイル
ファイルの表示

@@ -0,0 +1,30 @@
- alias: Ambilight an (HDMI)
trigger:
platform: state
entity_id: switch.harmony_firetv, switch.harmony_steamlink, switch.harmony_playstation
to: 'on'
action:
service: light.turn_on
data:
entity_id: light.ambilight
effect: HDMI
- alias: Ambilight an
trigger:
platform: state
entity_id: switch.harmony_music_bt
to: 'on'
action:
service: light.turn_on
data:
entity_id: light.ambilight
- alias: Ambilight aus
trigger:
platform: state
entity_id: switch.harmony_music_bt, switch.harmony_firetv, switch.harmony_steamlink, switch.harmony_playstation
to: 'off'
action:
service: light.turn_off
data:
entity_id: light.ambilight