-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSolarMaxPower.yaml
More file actions
36 lines (36 loc) · 951 Bytes
/
SolarMaxPower.yaml
File metadata and controls
36 lines (36 loc) · 951 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
alias: Solar MaxPower
description: Solar MaxPower
triggers:
- trigger: time_pattern
seconds: /30
conditions:
- condition: sun
after: sunrise
- condition: sun
before: sunset
actions:
- if:
- condition: numeric_state
entity_id: sensor.gartenhaus_power
above: 800
then:
- action: number.set_value
metadata: {}
data:
value: 800
target:
entity_id: number.gartenhaus_limit_nonpersistent_absolute
else:
- action: number.set_value
metadata: {}
data:
value: >-
{% if (states('number.gartenhaus_limit_nonpersistent_absolute') |
float(0)) >= 1450 %}
1450
{% else %} {{
states('number.gartenhaus_limit_nonpersistent_absolute') | float(0)
+ 20 }} {% endif %}
target:
entity_id: number.gartenhaus_limit_nonpersistent_absolute
mode: single