-
-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Consumed Energy only updated every two hours #293
Comments
I can confirm this behaviour. It does not depend on changing the update interval in the config of the integration. |
config_entry-luxtronik2-01JC7YC0VE8D3E75ASQM9ZW215.json I have attached the diagnostics below |
I figured something out: The data is not really updated on the socket api, thus the integration is working fine. I am currently working on building an API for the websocket api, which the web UI itself uses (on port 8214). All thats left, is to map it into the same structure as the current python library to be compatible with. |
I also tried this. But the ids are random in the websocket api and it only works with names and they are with a local translation. |
I noticed that as well. My approach would have been to look up what value it is based on the name (providing a list of translations and mapping it based on these values) Sample: temperature_group: list[str] = [
'Temperaturen'
'Another translation'
]
def get_property_name(name: str) -> str:
if name in temperature_group:
return 'temperatures' Of course this is not ideal, but better than the two hour window screwing over my dashboard with negative power consumption because of the big jumps ;) Do you have any more information/timelines in regards towards the new Api? |
Is there any official or unofficial documentation for this new API? |
Hi,
On both the latest stable and the latest Beta version I experience the following:
Consumed kWh for heating or water is only updated every two hours, other data Like the current energy consumption is updated in real time.
The local webserver shows more frequent updates.
is this expected behavior?
If not what information do you require to debug?
Im a developer so I can change some source code as well to help debugging.
Thanks
The text was updated successfully, but these errors were encountered: