PV surplous not available but it is #126
Replies: 6 comments 5 replies
-
|
The flattened automation: variables:
car_connected_entity:
entity_id: binary_sensor.goe_XXXXXXX_car_0
grid_single_entity: sensor.envoy_YYYYYYYYY_current_net_power_consumption
grid_single_invert: false
grid_consumption: null
grid_feedin: null
grid_phases: []
grid_phases_invert: false
pv_list:
- sensor.envoy_YYYYYYYYYY_current_power_production
pv_invert_flag: false
battery_enable: false
battery_list: []
battery_invert_flag: false
pgrid_value: |
{% if grid_single_entity %}
{% set value = states(grid_single_entity) | float(0) %}
{{ (value * -1) if grid_single_invert else value }}
{% elif grid_consumption and grid_feedin %}
{% set cons_val = states(grid_consumption) | float(0) %}
{% set feed_val = states(grid_feedin) | float(0) %}
{{ cons_val - feed_val }}
{% elif grid_phases | length >= 3 %}
{% set ns = namespace(total=0) %}
{% for entity in grid_phases[:3] %}
{% set ns.total = ns.total + (states(entity) | float(0)) %}
{% endfor %}
{{ (ns.total * -1) if grid_phases_invert else ns.total }}
{% else %}
0
{% endif %}
ppv_value: |
{% set ns = namespace(total=0) %} {% for entity in pv_list %}
{% set ns.total = ns.total + (states(entity) | float(0)) %}
{% endfor %} {{ (ns.total * -1) if pv_invert_flag else ns.total }}
pakku_value: |
{% if battery_enable %}
{% set ns = namespace(total=0) %}
{% for entity in battery_list %}
{% set ns.total = ns.total + (states(entity) | float(0)) %}
{% endfor %}
{{ (ns.total * -1) if battery_invert_flag else ns.total }}
{% else %}
0
{% endif %}
triggers:
- trigger: time_pattern
seconds: /5
conditions:
- condition: and
conditions:
- condition: template
value_template: '{{ states(car_connected_entity.entity_id)=="on" }}'
- condition: sun
after: sunrise
- condition: sun
before: sunset
actions:
- action: goecharger_api2.set_pv_data
data:
pgrid: '{{ pgrid_value | round(0) | int }}'
ppv: '{{ ppv_value | round(0) | int }}'
pakku: '{{ pakku_value | round(0) | int }}'
mode: single
id: '1774796693847'
alias: go-eCharger PV Surplus Charging
description: '' |
Beta Was this translation helpful? Give feedback.
-
|
what's the value of |
Beta Was this translation helpful? Give feedback.
-
|
Frc: {"frc":0}i.e the Force State is Neutral. |
Beta Was this translation helpful? Give feedback.
-
|
and this 'https://github.com/marq24/ha-goecharger-api2/blob/main/docs/PVSURPLUS.md#finally-verify-if-the-wallbox-receives-your-data-from-the-automation' will also generate some output - so the device is really receiving data? Concerning |
Beta Was this translation helpful? Give feedback.
-
|
So the numbers are getting though: {"pgrid":-4,"ppv":5,"pakku":0} and {"pvopt_averagePGrid":-4,"pvopt_averagePPv":5,"pvopt_averagePAkku":0}
There's enough 🌞 now to fully load car ( Renault 5 ) and some to spare. I do note that the car was in "Completed State" if I hit charge now on the car's app nothing happens as the charger is saying no I presume. I have checked I disabled all of the car's charging windows. |
Beta Was this translation helpful? Give feedback.
-
|
I have the same problem, it appears mostly when PV-surplus charging started and then after some time, it gets interrupted due to cloudy weather, which is expected. But then, when there surplus is back (>1,6kW) and ready to continue charging, I often notice that it doesnt. For some reason the integation won't send any data.
This issue is highly reproducible on my side, not idea how to fix it, current go-E FW is 59.4, anyone have an idea ? Thanks. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I think I'm very close but something not correct.
When in "eco mode" the app always displays: Charging Paused , PV Surplus not available.
Working through the PVSURPLUS docs.
Automation is in place and running using the blueprint
The
current_net_power_consumptionis indeed:The optional
current_power_productionisOther configs:
In the go-E sensors:
I am not sure I have set:
Can you see the calculation that e-go charger made?
Beta Was this translation helpful? Give feedback.
All reactions