1
0
mirror of https://github.com/home-assistant/core.git synced 2026-05-20 07:20:14 +01:00
Files
2026-05-13 19:57:01 +02:00

21 lines
533 B
JSON

{
"siteCurrentPowerFlow": {
"updateRefreshRate": 3,
"unit": "W",
"connections": [
{ "from": "GRID", "to": "Load" },
{ "from": "PV", "to": "Load" },
{ "from": "PV", "to": "STORAGE" }
],
"GRID": { "status": "Active", "currentPower": 250.0 },
"LOAD": { "status": "Active", "currentPower": 1500.0 },
"PV": { "status": "Active", "currentPower": 1500.0 },
"STORAGE": {
"status": "Charging",
"currentPower": 250.0,
"chargeLevel": 75,
"critical": false
}
}
}