fix(hass): make timer end message work
All checks were successful
Discord / discord commits (push) Has been skipped

This commit is contained in:
matt1432 2024-10-04 21:27:54 -04:00
parent df5b1ed415
commit e13ae2af57

View file

@ -25,8 +25,8 @@
''| map(attribute='entity_id')'' ''| map(attribute='entity_id')''
]; ];
settings = { settings = rec {
timer_target = "kitchen"; timer_target = timer_target_default;
timer_target_default = "media_player.music_player_daemon"; timer_target_default = "media_player.music_player_daemon";
timer_tts = true; timer_tts = true;
@ -141,17 +141,6 @@ in {
}; };
} }
{
alias = "Set volume for timer";
service = "media_player.volume_set";
target.entity_id = ''{{ timer_target }}'';
data = {
volume_level = ''{{ timer_volume }}'';
};
}
{ {
alias = "Media file or TTS"; alias = "Media file or TTS";