You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Good morning, I made an automation, when a buttin is pressed it changes the battery end charge Soc by one percentage point.
I don't understand why it doesn't work, can you help me? Thanks
alias: Gestione SOC batteria FV
description: Cambia la capacità SOC aumentando di 1 punto percentuale lo stato attuale.
triggers:
entity_id: input_boolean.soc_batteria_fv
trigger: state
conditions: []
actions:
choose:
conditions:
condition: state
entity_id: input_boolean.soc_batteria_fv
state: "on"
sequence:
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Good morning, I made an automation, when a buttin is pressed it changes the battery end charge Soc by one percentage point.
I don't understand why it doesn't work, can you help me? Thanks
alias: Gestione SOC batteria FV
description: Cambia la capacità SOC aumentando di 1 punto percentuale lo stato attuale.
triggers:
trigger: state
conditions: []
actions:
entity_id: input_boolean.soc_batteria_fv
state: "on"
sequence:
entity_id: number.batteries_termine_della_carica_batteria_soc
data:
value: >
{{ [states('sensor.battery_stato_della_capacita') | float + 1,
100] | min }}
action: number.set_value
entity_id: input_boolean.soc_batteria_fv
state: "off"
sequence:
entity_id: number.batteries_termine_della_carica_batteria_soc
data:
value: 100
action: number.set_value
default: []
mode: single
Beta Was this translation helpful? Give feedback.
All reactions