This repository has been archived on 2026-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
powersync-core/libnymea/interfaces/smartmeterconsumer.json
2021-07-01 23:55:58 +02:00

19 lines
575 B
JSON

{
"description": "This interface is used for things that can monitor energy consumption. At least the grand total of the consumer energy is provided, optionally live monitoring of the current usage may be available.",
"extends": "smartmeter",
"states": [
{
"name": "totalEnergyConsumed",
"type": "double",
"unit": "KiloWattHour"
},
{
"name": "currentPower",
"type": "double",
"unit": "Watt",
"optional": true,
"logged": true
}
]
}