Hi Folks,
I’ve been struggling to get this working properly:
Use case: UPS which shows provides output in (W) - trying to get this converted to kWh so I can track usage via the new energy dashboard
First I calculate the W
ups_power:
friendly_name: 'UPS Power'
unit_of_measurement: W
value_template: "{{ (states('sensor.ups_load')|float * 9)|round(0) }}"
Returns value output in W matching what the UPS shows on it’s display
Now trying to convert to kWh using Riemann
- platform: integration
source: sensor.ups_power
name: ups_energy_spent
unit: kWh
round: 2
the new entity ups_energy_spent still doesn’t appear in the energy monitor as a selectable entity… where am I going wrong?
Cheers
D