Add SolarEdge Optimizers Home Assistant integration

This commit is contained in:
2026-08-10 09:31:43 +02:00
commit 2085316d1f
23 changed files with 3956 additions and 0 deletions
+35
View File
@@ -0,0 +1,35 @@
"""Sample App API data."""
SAMPLE_PAYLOAD = {
"status": "ok",
"siteId": "4886699",
"date": "2026-08-10",
"timeZone": "Europe/Berlin",
"fetchedAt": "2026-08-10T10:00:00.000Z",
"nextRefreshAt": "2026-08-10T10:10:00.000Z",
"optimizerCount": 2,
"successfulOptimizerCount": 2,
"failedOptimizerCount": 0,
"totalDailyEnergyWh": 2468.5,
"totalCurrentPowerW": 321.4,
"optimizers": [
{
"serial": "14F28854-E2",
"inverterId": "1",
"stringId": "1.1",
"optimizerId": "1.1.1",
"dailyEnergyWh": 1234.5,
"currentPowerW": 160.7,
"lastMeasurement": "2026-08-10T09:59:30.000Z",
},
{
"serial": "14F28855-E2",
"inverterId": "1",
"stringId": "1.1",
"optimizerId": "1.1.2",
"dailyEnergyWh": 1234.0,
"currentPowerW": 160.7,
"lastMeasurement": "2026-08-10T09:59:30.000Z",
},
],
}