hi so i am trying to use the Conditional Card but it does not seem to work.
this is what i am trying to do:
type: conditional
conditions:
- condition: state
entity: sensor.lg_tv_power_state
state: 'on'
card:
type: media-control
entity: media_player.android
however the card always shows no matter how i change the states of the condition for testing. even though in the UI editor it even returns the correct current state.
also when i test the condition it says “did not pass” (likewise for testing it “passes” when i change the condition to “off”)
then i tried with the example from the documentation to break it down to an even simpler version (maybe it was because of the different entities)
type: conditional
conditions:
- condition: state
entity: light.hue_rechts_hinten
state: 'on'
card:
type: entity
entity: light.hue_links_hinten
but that doesn’t work either. the card is always shown no matter the state of the condition what am i doing wrong?