Set individual Volume in Group #15
-
Hi, is it possible to adjust the individual volume in a group of the speakers? Is that possible? If so: how? My current idea is to ungroup, set volume and switch then the group back on. But I'm not pretty statisfied by this workaround. Thanks for your help! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I guess what you're seeking for is In the following example, first the volume of all speakers in a speaker group is set to 30% and then the volume of the Kitchen speaker is set to 20%. alias: Reset volume of Living room, Dining & Kitchen speakers
sequence:
- service: teufel_raumfeld.abs_volume_set
data:
volume_level: 0.3
entity_id: media_player.group_dining_kitchen_livingroom
- service: teufel_raumfeld.abs_volume_set
data:
volume_level: 0.2
rooms: Kitchen
entity_id: media_player.group_dining_kitchen_livingroom
mode: single |
Beta Was this translation helpful? Give feedback.
I guess what you're seeking for is
teufel_raumfeld.abs_volume_set
. Its main purpose is to set the volume of all speakers in a group to an absolute volume. But it also supports an optional parameter for a room or a list of room names to set the absolute volume only to this resp. to them.In the following example, first the volume of all speakers in a speaker group is set to 30% and then the volume of the Kitchen speaker is set to 20%.