forked from bendikwa/igrill
-
Notifications
You must be signed in to change notification settings - Fork 3
/
home assistant config
283 lines (261 loc) · 8.35 KB
/
home assistant config
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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
#######device.yaml
devices:
- name: 'grill'
type: 'igrill_v2'
address: 'RE:AL:MA:C'
#####mqtt.yaml
mqtt:
host: '192.168.7.14'
port: 1883
######groups.yaml:
igrill:
name: Weber iGrill
entities:
- sensor.probe_1
- sensor.probe_2
- sensor.probe_3
- sensor.probe_4
- sensor.igrill_battery
- input_number.grill_probe_1_target
- sensor.target_alert_temp_probe_1
- input_number.grill_probe_2_target
- sensor.target_alert_temp_probe_2
- input_number.grill_probe_3_target
- sensor.target_alert_temp_probe_3
- input_number.grill_alert_low
- input_number.grill_alert_high
- sensor.grill_alert_temp
- automation.monitor_grill_temp_alert
- automation.monitor_grill_temp_normal
- automation.probe_1_target_temp
- automation.probe_2_target_temp
- automation.probe_3_target_temp
#######configuration.yaml:
- platform: mqtt
state_topic: "bbq/grill/probe1"
name: "Probe 1"
qos: 0
unit_of_measurement: "°F"
- platform: mqtt
state_topic: "bbq/grill/probe2"
name: "Probe 2"
qos: 0
unit_of_measurement: "°F"
- platform: mqtt
state_topic: "bbq/grill/probe3"
name: "Probe 3"
qos: 0
unit_of_measurement: "°F"
- platform: mqtt
state_topic: "bbq/grill/probe4"
name: "Probe 4"
qos: 0
unit_of_measurement: "°F"
- platform: mqtt
state_topic: "bbq/grill/battery"
name: "igrill battery"
qos: 0
unit_of_measurement: "%"
- platform: template
sensors:
grill_alert_temp:
value_template:
'{% if (states.sensor.probe_4.state | int) < (states.input_number.grill_alert_low.state | int) or (states.sensor.probe_4.state | int) > (states.input_number.grill_alert_high.state | int) %}
Alert
{% else %}
Normal
{% endif %}'
friendly_name: Grill Temp Alert
- platform: template
sensors:
target_alert_temp_probe_1:
value_template:
'{% if (states.sensor.probe_1.state | int) >= (states.input_number.grill_probe_1_target.state | int) %}
Alert
{% else %}
Normal
{% endif %}'
friendly_name: Probe 1 Target Alert
- platform: template
sensors:
target_alert_temp_probe_2:
value_template:
'{% if (states.sensor.probe_2.state | int) >= (states.input_number.grill_probe_2_target.state | int) %}
Alert
{% else %}
Normal
{% endif %}'
friendly_name: Probe 2 Target Alert
- platform: template
sensors:
target_alert_temp_probe_3:
value_template:
'{% if (states.sensor.probe_3.state | int) >= (states.input_number.grill_probe_3_target.state | int) %}
Alert
{% else %}
Normal
{% endif %}'
friendly_name: Probe 3 Target Alert
input_number:
grill_alert_low:
name: Grill Low Temp
initial: 150
min: 100
max: 500
step: 5
grill_alert_high:
name: Grill High Temp
initial: 340
min: 100
max: 500
step: 5
grill_probe_1_target:
name: Probe 1 Target Temp
initial: 160
min: 60
max: 250
step: 1
grill_probe_2_target:
name: Probe 2 Target Temp
initial: 160
min: 60
max: 250
step: 1
grill_probe_3_target:
name: Probe 3 Target Temp
initial: 160
min: 60
max: 250
step: 1
##########automations.yaml
- alias: "Monitor Grill Temp Alert"
trigger:
- platform: state
entity_id: sensor.grill_alert_temp
to: 'Alert'
action:
- service: notify.ios_notify
data:
message: "Grill temp outside limits. Currently {{ states.sensor.probe_4.state }} F"
- alias: "Monitor Grill Temp Normal"
trigger:
- platform: state
entity_id: sensor.grill_alert_temp
to: 'Normal'
action:
- service: notify.ios_notify
data:
message: "Grill temp within limits. Currently {{ states.sensor.probe_4.state }} F"
- alias: "Probe 1 Target Temp"
trigger:
- platform: state
entity_id: sensor.target_alert_temp_probe_1
to: 'Alert'
action:
- service: notify.ios_notify
data:
message: "Probe 1 has reached the target temp. Currently {{ states.sensor.probe_1.state }} F"
- alias: "Probe 2 Target Temp"
trigger:
- platform: state
entity_id: sensor.target_alert_temp_probe_2
to: 'Alert'
action:
- service: notify.ios_notify
data:
message: "Probe 2 has reached the target temp. Currently {{ states.sensor.probe_2.state }} F"
- alias: "Probe 3 Target Temp"
trigger:
- platform: state
entity_id: sensor.target_alert_temp_probe_3
to: 'Alert'
action:
- service: notify.ios_notify
data:
message: "Probe 3 has reached the target temp. Currently {{ states.sensor.probe_3.state }} F"
#######ui-lovelace.yaml
- icon: mdi:pig
title: iGrill
cards:
- type: vertical-stack
cards:
- type: weather-forecast
entity: weather.openweathermap
- type: entities
show_header_toggle: true
title: Weber iGrill
entities:
- entity: sensor.probe_1
secondary_info: last-changed
- entity: sensor.probe_2
secondary_info: last-changed
- entity: sensor.probe_3
secondary_info: last-changed
- entity: sensor.probe_4
secondary_info: last-changed
- entity: sensor.igrill_battery
secondary_info: last-changed
- type: horizontal-stack
cards:
- type: custom:gauge-card
title: Probe 1
entity: sensor.probe_1
min: 0
max: 350
severity:
red: 190
green: 65
amber: 0
- type: custom:gauge-card
title: Probe 2
entity: sensor.probe_2
min: 0
max: 350
severity:
red: 190
green: 65
amber: 0
- type: horizontal-stack
cards:
- type: custom:gauge-card
title: Probe 3
entity: sensor.probe_3
min: 0
max: 350
severity:
red: 190
green: 65
amber: 0
- type: custom:gauge-card
title: Probe 4 (Ambient)
entity: sensor.probe_4
min: 0
max: 425
severity:
red: 300
green: 90
amber: 0
- type: history-graph
title: 'History'
entities:
- sensor.probe_1
- sensor.probe_2
- sensor.probe_3
- sensor.probe_4
- type: entities
title: iGrill info
entities:
- input_number.grill_alert_low
- input_number.grill_alert_high
- sensor.grill_alert_temp
- input_number.grill_probe_1_target
- sensor.target_alert_temp_probe_1
- input_number.grill_probe_2_target
- sensor.target_alert_temp_probe_2
- input_number.grill_probe_3_target
- sensor.target_alert_temp_probe_3
- automation.monitor_grill_temp_alert
- automation.monitor_grill_temp_normal
- automation.probe_1_target_temp
- automation.probe_2_target_temp
- automation.probe_3_target_temp