Skip to content
Snippets Groups Projects
Commit 5fa69917 authored by jabertwo's avatar jabertwo
Browse files

homeassistant automatisierungen via ansible - part 3

parent 2f17c5cd
No related branches found
No related tags found
No related merge requests found
......@@ -311,3 +311,111 @@ automation ansible:
- climate.treppenhaus_thermostat_1
- climate.vortragsraum_vorne
mode: single
# WLED rot
- alias: ANSIBLE_WLED_red
description:
trigger:
- type: turned_on
platform: device
device_id: 33915e12bd114226dcd4718e77a27779
entity_id: binary_sensor.button_4
condition: []
action:
- service: light.turn_on
data:
rgb_color:
- 255
- 0
- 0
efect: Solid
target:
area_id:
- hackcenter
- kuche
- lounge
- serverrack
- klo
mode: queued
max: 30
# WLED gruen
- alias: ANSIBLE_WLED_green
description:
trigger:
- type: turned_on
platform: device
device_id: 33915e12bd114226dcd4718e77a27779
entity_id: binary_sensor.button_5
condition: []
action:
- service: light.turn_on
data:
rgb_color:
- 0
- 255
- 0
efect: Solid
target:
area_id:
- hackcenter
- kuche
- lounge
- serverrack
- klo
mode: queued
max: 30
# WLED blue
- alias: ANSIBLE_WLED_blue
description:
trigger:
- type: turned_on
platform: device
device_id: 33915e12bd114226dcd4718e77a27779
entity_id: binary_sensor.button_6
condition: []
action:
- service: light.turn_on
data:
rgb_color:
- 0
- 0
- 255
efect: Solid
target:
area_id:
- hackcenter
- kuche
- lounge
- serverrack
- klo
mode: queued
max: 30
# WLED white
- alias: ANSIBLE_WLED_white
description:
trigger:
- type: turned_on
platform: device
device_id: 33915e12bd114226dcd4718e77a27779
entity_id: binary_sensor.button_2
condition: []
action:
- service: light.turn_on
data:
rgb_color:
- 255
- 255
- 255
efect: Solid
target:
area_id:
- hackcenter
- kuche
- lounge
- serverrack
- klo
mode: queued
max: 30
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment