Monday, 17 October 2016

Change color and dim the lights when playing on steam.

Dim my lights and set the hue to blue when i start a game in my steam account. This was a bit tricky because i have to make a fake sensor make a automation on the game value instead of the state=online. It works very fastm, max delay from i start or end a game is around 1 minutt.
sensor:
- platform: steam_online
api_key: ***RETRACTED***
accounts:
- 76561198024292709
sensor templates:
platform: template
sensors:
playingonsteam:
value_template: "{% if is_state_attr('sensor.steam_76561198024292709', 'Game', 'None') %} False {% else %} True {% endif %}"
automation:
- alias: Start playing a game on steam
trigger:
platform: state
entity_id: sensor.playingonsteam
to: 'True'
from: 'False'
action:
service: scene.turn_on
entity_id: scene.kontorgame
- alias: Ended playing a game on steam
trigger:
platform: state
entity_id: sensor.playingonsteam
to: 'False'
from: 'True'
action:
service: scene.turn_on
entity_id: scene.kontorkoding
view raw gistfile1.txt hosted with ❤ by GitHub

No comments:

Post a Comment