How do you get the pi-hole and plex data? Also the docker card, does that show whether the container is running? Does clicking it restart the container? Can you share the card config for each of those cards. Nice setup BTW
The pi-hole and plex data are both from the official components, using the custom mini graph card. The plex user info below it is a template sensor (I haven’t got this to add a break between users though annoyingly). Pi-hole has a switch to disable it also. The docker card shows which containers are running and lets you stop/start them too.
But I don’t .
What is the domain names for automations, scripts, scenes ?
Found it, but unfortunately I get this error when I create it:
Template sensor scenes_count has no entity ids configured to track nor were we able to extract the entities to track from the value template(s). This entity will only be able to be updated manually.
Listing the entities defeats the purpose of this script. So you have to update it manually using this service: homeassistant.update_entity.
Call it from the dev tools services menu or from an automation.
you can find details for my latest lovelace here As I don’t want to hijack this thread.
@getsmokes I use snmp to pull info from my NAS Drives, some drives already supported in HA.
My Coffee Machine is a cheap Aldi Pod one for around $100AUD. I have installed ultrasonic sensors in the water and waste reservoirs and have a weight sensor telling me how pods I have left.
Hey @SeanM, I noticed your Zwave count is empty, I get that too. Sometimes it shows the correct number and sometimes it’s just blank. Do you get that too or did you manage to fix yours?
Here’s how I setup mine to count Zwave devices. (thanks to @klogg)
zwave_count:
friendly_name: Zwave Devices
entity_id: sensor.date
value_template: >
{%- set domains = ['zwave'] -%}
{%- for domain in domains -%}
{%- for item in states[domain] -%}
{% if loop.first %}
{{loop.length}}
{% endif %}
{%- endfor -%}
{%- endfor -%}