Hi, I want to use the parameters of a sibling. The problem that I run into is that I have multiple siblings and I don’t now how to select the right one.
I used this line in the Controller to get all the siblings:
siblings = API().get_entity(entity_id).siblings()
In the Parametrization, I used this SiblingEntityOptionField:
used_sibling = SiblingEntityOptionField(“Select sibling”, flex=100, entity_type_names=["…"])
And from here on I don’t know how to use ‘used_sibling’ to get the parameters of the sibling that I want. ‘used_sibling’ is a number (entity_id) and siblings is a EntityList. Can anyone tell me how to select the sibling with the right entity_id?