First Automation isn't triggering

Hi everyone,

Just started working with Home Assistant and really excited. I’m building my first automation and have followed several guides to get it working. I’m configuring it to set the volume level on my LG webOS TV at a certain time if it’s on. Home Assistant loads the automation, but it doesn’t trigger at all. The webOS TV is connected to Home Assistant.

Any help is highly appreciated. Thanks!

lower_bedroom_vol.yaml
configuration.yaml

Also, here’s the automation.yaml

automation.yaml

I’m quite new to all this but I found on this page https://home-assistant.io/components/media_player/ that it says:
Service media_player/set_volume_level

while in your config you have:
service: media_player.volume_set
data:
entity_id: media_player.lg_webos_tv_remote
volume_level: 0.1

Could you try this?
service: media_player.volume_level
data:
entity_id: media_player.lg_webos_tv_remote
volume: 10

No idea if it will help you. I hope so :slight_smile:

The documentation is unfortunately not correct. The service is called volume_set. We should update the docs.

ah ok :).
will you update the documentation?

Yes, I’ll update it, if nobody beats me to it. I’m currently AFK.

PR for correction of docs:
https://github.com/home-assistant/home-assistant.github.io/pull/860