Ecoflow delta 2 max - no change possible to number.delta2max_ac_charging_power - Not home assistant change possible. #459
icewombat81
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Like i wrote, I try to make an adjustable AC Charging Power due to plus on solar Energy from my inverter.
alias: Ladeleistung_Ecoflow_Überschuss
description: ""
triggers:
minutes: "0"
trigger: time_pattern
conditions:
before: sunset
after: sunrise
actions:
entity_id: number.delta2max_ac_charging_power
data:
value: >
{% set export_power = states('sensor.e3dc_grid_export_power') | float %}
{{ 0 if export_power < 200 else export_power }}
action: number.set_value
mode: single
Problem, no response from Ecoflow slider numbers -> no change possible.
Are there Ideas to change that?
Beta Was this translation helpful? Give feedback.
All reactions