core
core copied to clipboard
Volkszaehler API not working
The problem
The volkszaehler API does not receive any data. If I read the values with the REST integration, everything works. The VZ integration does not deliver data.
What version of Home Assistant Core has the issue?
2024.6.3
What was the last working version of Home Assistant Core?
2024.6.2
What type of installation are you running?
Home Assistant OS
Integration causing the issue
volkszaehler
Link to integration documentation on our website
https://www.home-assistant.io/integrations/volkszaehler/
Diagnostics information
No response
Example YAML snippet
` - platform: volkszaehler
host: 192.168.178.138
uuid: "480f7900-1140-11ef-b2bb-dd3e03XXXXXX"
name: "Volkszaehler Einspeisung"
monitored_conditions:
- average
- consumption
- min
- max `
Anything in the logs that might be useful for us?
No response
Additional information
The REST API calls work:
- platform: rest resource: http://192.168.178.138:8081 value_template: > {% for i in value_json.data %} {% if i.uuid == "480f7900-1140-11ef-b2bb-dd3e03XXXXXX" %} {{ '%.2f'%(i.tuples[0][1]) | float }} {% endif %} {% endfor %} method: GET name: "zaehler_einspeisung" unit_of_measurement: kWh device_class: energy state_class: total_increasing