So it was only a few months ago the "Untracked consumption showed up. It’s a great feature to find out what is not tracked but using energy.
However I’ve started to make custom sensors for the “untracked use”… It’s a bit cumbersome but there are plenty of devices that don’t have energy monitoring but are smart. For example a smart bulb you may know its 3W and you could easily find out if it was on or off state.
2 examples I use are that i know our Smart wifi dehumidifier is about 240W constant draw, give or take a couple of watts. Or our Bathroom extractor fan is 25W sustained.
SO i had to make custom sensors, and run time calculators, then multiply that by the energy to then get it to show on the Energy dashboard.
It would be amazing to have a custom option to add a device…
For example you would enter the enery rate, in wattage or Kw per hour. Then a behind the scenes time tracker would count.
Device = Light
Energy use = 3W/h
Device track trigger= On/off state - you would just select the entity here for the on off/trigger to increment.
Then it would be a super easy way to add devices that you know that lack monitoring.
A bit more context of the bathroom fan (it uses a shelly non PM
So i made these in my config.
- platform: history_stats
name: Bathroom Fan Runtime
entity_id: switch.shellyplus1_c180bd68c_switch_0
unique_id: bathroom_extractor_fan_runtime
state: 'on'
type: time
start: '{{ now().replace(hour=0, minute=0, second=0) }}'
end: '{{ now() }}'
& this
- platform: integration
source: sensor.bathroom_fan_power_consumption
unique_id: bathroom_extractor_fan_consumption
name: Bathroom Fan Energy Consumption
unit_prefix: k
& This
bathroom_extractor_power_rate:
friendly_name: "Bathroom Extractor Power Rate"
unit_of_measurement: 'W'
device_class: power
unique_id: bathroom_extractor_power_rate
value_template: "{{ 25 }}"
icon_template: mdi:lightning-bolt
Then i had to make a Integral sensor. THEN make a Utility meter, just to get this in to the Energy dashboard
A built in system would be far easier and far less bloated and be well received! As i have a number of other devices i’d like to add but not gone through the faff again yet.