We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7b1e29 commit 981d6eaCopy full SHA for 981d6ea
custom_components/evcc_intg/__init__.py
@@ -223,7 +223,10 @@ async def read_evcc_config_on_startup(self):
223
self._currency = "€"
224
225
if "grid" in initdata:
226
- if "power" in initdata["grid"] and "currents" in initdata["grid"]:
+ if ("power" in initdata["grid"] or
227
+ "currents" in initdata["grid"] or
228
+ "energy" in initdata["grid"] or
229
+ "powers" in initdata["grid"] ):
230
self._grid_data_as_object = True
231
232
_LOGGER.debug(
custom_components/evcc_intg/manifest.json
@@ -10,5 +10,5 @@
10
"iot_class": "local_polling",
11
"issue_tracker": "https://github.com/marq24/ha-evcc/issues",
12
"requirements": [],
13
- "version": "2025.1.9"
+ "version": "2025.1.10"
14
}
0 commit comments