Hello,
sadly i need some more help
i have some cameras i install only when i leave for some days (i don’t like to have indoor cameras connected when i’m home, so i install them only when i leave to see my cats :))
When i disconnect them, i disable them in HA to avoid flooding my logs. But i’d also like to hide the cards in lovelace showing the videos. So i gave a look to conditional cards. That’s good, i can control them with entities states (like lights).
So i need to have the information about cameras being disabled. How the hell should i do??
I thought about templates binary sensors, but what should i use to check if an entity is enabled?
i just tried with this,
template:
- binary_sensor:
- name: "Internal Cams Installed"
state: "{{ camera.foscam_outcam_lan_80.state is defined }}"
but (i) this is not giving me the correct boolean value; and (ii) this is logged as any other sensor, can’t i avoid logging this sort of info? i just want the information
Thanks a lot