Hi, this is my first post and I am new to HA.
I have installed the integration: GoodWe Inverter - Home Assistant
The integration updates HA but the polling rate is too high and information is not going through to the
SEMS portal.
There is a section on polling frequency but when I copy and paste this into my configuration.yaml file it tells me that the configuration is invalid.
Should it not be inserted under the core.config_entries file
?
Please help
What exactly are you copying and pasting, and where?
This automation example?
- alias: "Goodwe inverter data polling"
trigger:
- platform: time_pattern
hours: "*"
minutes: "*"
seconds: "/30"
action:
- service: homeassistant.update_entity
target:
entity_id: sensor.ppv
That would go in your automations.yaml file, not your configuration.yaml file.
You could also create it using the Automation UI Editor instead.
Also make sure you disable the automatic refresh in the integration’s system options.
Thank you Tom that worked.
I ended up using the Automation UI.
Is it possible to get the created automation to update all the entity’s under the inverter.
I have three inverters and each inverter has a 148 entity’s.
When I choose the device “Goodwe Inverter 1” , “Goodwe Inverter 2” and “Goodwe Inverter 3” it does not update the entity’s although the automation gives it as a option.
When I select the individual entity’s it does work.
I had same experience, only managed to get it working via the scheduler UI. Needed to pick one of the entities (at random?) within the Goodwe device… The emitted yaml ended up as:
- id: '1663285320119'
alias: Goodwe5
description: ''
trigger:
- platform: time_pattern
hours: '*'
minutes: /5
seconds: '0'
condition: []
action:
- service: homeassistant.update_entity
data: {}
target:
entity_id:
- sensor.pv_power
mode: single