I need to power off the evse if my house load is above 4.000W and after power on when it’s lower 800W. I’m trying this automation but it never re power on when house load is less than 800W.
alias: EVSE overload
description: ''
trigger:
- platform: numeric_state
entity_id: sensor.power
above: '4000'
- platform: numeric_state
entity_id: sensor.power
below: '800'
condition:
- condition: device
type: is_on
device_id: 88113544c585564e180645e49495c77c
entity_id: switch.evse
domain: switch
action:
- type: turn_off
device_id: 88113544c585564e180645e49495c77c
entity_id: switch.evse
domain: switch
mode: single
Anybody could help me to add a function?
2 posts - 2 participants