mirror of https://github.com/nymea/nymea.git
19 lines
702 B
JSON
19 lines
702 B
JSON
{
|
|
"description": "This interface is used for things that can monitor energy production. At least the grand total of the returned energy is provided, optionally live monitoring of the current production may be available. Please note that currentPower is always from a consumer perspective. Thus it will be a negative value for producing devices.",
|
|
"extends": "smartmeter",
|
|
"states": [
|
|
{
|
|
"name": "totalEnergyProduced",
|
|
"type": "double",
|
|
"unit": "KiloWattHour",
|
|
"logged": true
|
|
},
|
|
{
|
|
"name": "currentPower",
|
|
"type": "double",
|
|
"unit": "Watt",
|
|
"logged": true
|
|
}
|
|
]
|
|
}
|