Help to change input_number to connected input_number (if possible)

I hope someone understand what i mean :slight_smile:

Is there a way to change input_number on entities that are connected to same group?

I have several input_number, for each speaker but also for a group with speakers.
I would like to have input_number for each individual entity to change at the same time when i change the group.

Input_number has a set_value service you can use for this, something like

- service: input_number.set_value 
  data_template:
    entity_id: input_number.YOU_WANT_TO_SET
    value: "{{states.input_number.YOU_WANT_TO_COPY.state}}"
1 Like

Awesome, worked like a charm :ok_hand:

1 Like