11 lines
341 B
YAML
11 lines
341 B
YAML
- alias: Tesla stop when charged
|
|
trigger:
|
|
- platform: template
|
|
value_template: >
|
|
{{ (states('sensor.snowywhite_battery') | default(0)) | float >=
|
|
(states('number.snowywhite_charge_limit') | default(100)) | float }}
|
|
|
|
action:
|
|
- service: switch.turn_off
|
|
target:
|
|
entity_id: switch.home_charging |