-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.device-shelly-plus-2pm.yaml
166 lines (149 loc) · 4.3 KB
/
.device-shelly-plus-2pm.yaml
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
# For PCB v0.1.9 with dual core ESP32
esphome:
name: "${devicename}"
comment: $devicetype
esp32:
board: esp32doit-devkit-v1
framework:
type: arduino
logger:
logs:
component: ERROR
time:
- platform: homeassistant
i2c:
sda: GPIO26
scl: GPIO25
output:
- platform: gpio
id: "relay_output_1"
pin: GPIO13
- platform: gpio
id: "relay_output_2"
pin: GPIO12
#Shelly Switch Output
switch:
- platform: output
id: "relay_1"
name: "${devicename_1} Output"
icon: $deviceicon_1
output: "relay_output_1"
restore_mode: RESTORE_DEFAULT_OFF
- platform: output
id: "relay_2"
name: "${devicename_2} Output"
output: "relay_output_2"
restore_mode: RESTORE_DEFAULT_OFF
# Restart Button
button:
- platform: restart
id: "restart_device"
name: "${devicename} Restart"
entity_category: 'diagnostic'
binary_sensor:
# reset button on device
- platform: gpio
name: "${friendly_name} Button"
pin:
number: GPIO4
inverted: yes
mode:
input: true
pullup: true
on_press:
then:
- button.press: "restart_device"
filters:
- delayed_on_off: 5ms
internal: true
sensor:
#temperature sensor
- platform: ntc
sensor: temp_resistance_reading
name: "${friendly_name} Temperature"
unit_of_measurement: "°C"
accuracy_decimals: 1
icon: "mdi:thermometer"
entity_category: 'diagnostic'
calibration:
#These default values don't seem accurate
b_constant: 3350
reference_resistance: 10kOhm
reference_temperature: 298.15K
on_value_range:
- above: ${max_temp}
then:
- switch.turn_off: "relay_1"
- switch.turn_off: "relay_2"
- homeassistant.service:
service: persistent_notification.create
data:
title: "Message from ${friendly_name}"
data_template:
message: "${devicename_1} and ${devicename_2} turned off because temperature exceeded ${max_temp}°C"
- platform: resistance
id: temp_resistance_reading
sensor: temp_analog_reading
configuration: DOWNSTREAM
resistor: 10kOhm
- platform: adc
id: temp_analog_reading
pin: GPIO35
attenuation: 11db
update_interval: 60s
#power monitoring
- platform: ade7953
irq_pin: GPIO27 # Prevent overheating by setting this
voltage:
name: "${friendly_name} Voltage"
entity_category: 'diagnostic'
# On the Shelly 2pm channels are mixed ch1=B ch2=A
current_a:
name: "${devicename_2} Current"
entity_category: 'diagnostic'
current_b:
name: "${devicename_1} Current"
entity_category: 'diagnostic'
active_power_a:
name: "${devicename_2} Power"
id: power_channel_2
entity_category: 'diagnostic'
# active_power_a is normal, so don't multiply by -1
on_value_range:
- above: ${max_power}
then:
- switch.turn_off: "relay_2"
- homeassistant.service:
service: persistent_notification.create
data:
title: "Message from ${friendly_name}"
data_template:
message: "${devicename_2} turned off because power exceeded ${max_power}W"
active_power_b:
name: "${devicename_1} Power"
id: power_channel_1
entity_category: 'diagnostic'
# active_power_b is inverted, so multiply by -1
filters:
- multiply: -1
on_value_range:
- above: ${max_power}
then:
- switch.turn_off: "relay_1"
- homeassistant.service:
service: persistent_notification.create
data:
title: "Message from ${friendly_name}"
data_template:
message: "${devicename_1} turned off because power exceeded ${max_power}W"
update_interval: 30s
- platform: total_daily_energy
name: "${devicename_1} Daily Energy"
power_id: power_channel_1
- platform: total_daily_energy
name: "${devicename_2} Daily Energy"
power_id: power_channel_2
status_led:
pin:
number: GPIO0
inverted: true