You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm looking for a way to display entities based on different entity but both entities need to belong to the same device. The solution would need to be flexible (using asterisks). Is it possible?
E.g:
First device's entities:
cover.office_left_window_blinds
binary_sensor.office_left_window_blinds_charging_status
sensor.office_left_window_blinds_battery
Second device's entities:
cover.bedroom_left_window_blinds
binary_sensor.bedroom_left_window_blinds_charging_status
sensor.bedroom_left_window_blinds_battery
Pseudocode:
if (binary_sensor.*_blinds_charging_status)
{
show(sensor.*t_window_blinds_battery);
}
Basically, if a blind is charging show its battery level.
The text was updated successfully, but these errors were encountered:
Hi,
I'm looking for a way to display entities based on different entity but both entities need to belong to the same device. The solution would need to be flexible (using asterisks). Is it possible?
E.g:
First device's entities:
cover.office_left_window_blinds
binary_sensor.office_left_window_blinds_charging_status
sensor.office_left_window_blinds_battery
Second device's entities:
cover.bedroom_left_window_blinds
binary_sensor.bedroom_left_window_blinds_charging_status
sensor.bedroom_left_window_blinds_battery
Pseudocode:
Basically, if a blind is charging show its battery level.
The text was updated successfully, but these errors were encountered: