-
Notifications
You must be signed in to change notification settings - Fork 0
/
frangipool_salt_booster_wo_redox.yaml
327 lines (287 loc) · 6.91 KB
/
frangipool_salt_booster_wo_redox.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
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
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
substitutions:
name: frangipool
friendly_name: FrangiPool
local_temp_address: '0xC40416C23220FF28'
temp_address: '0x160121a14aac6f28'
wifi:
ap:
ssid: $friendly_name Fallback Hostspot
password: "12345678"
esphome:
name: ${name}
name_add_mac_suffix: false
friendly_name: ${friendly_name}
project:
name: frangipool.salt_booster_wo_redox
version: "0.1.0"
dashboard_import:
package_import_url: github://frangipool/esphome-config/frangipool_salt_booster_wo_redox.yaml
esp32:
board: nodemcu-32s
logger:
level: INFO
api:
ota:
improv_serial:
esp32_improv:
authorizer: none
captive_portal:
time:
- platform: homeassistant
timezone: Europe/Paris
id: esptime
dallas:
- pin: GPIO23
update_interval: 10s
i2c:
sda: 21
scl: 22
scan: true
id: bus_a
ads1115:
- address: 0x48
globals:
- id: pump_last_turn_on
type: int
restore_value: True
- id: store_pool_temp
type: float
restore_value: True
- id: store_pool_ph
type: float
restore_value: True
- id: ph_offset
type: float
restore_value: True
interval:
- interval: 1min
then:
- if:
condition:
and:
- switch.is_on: pump
- lambda: |-
if (id(pump_uptime).state >= id(pump_uptime_delay).state){
return true;
} else {
return false;
}
then:
- globals.set:
id: store_pool_temp
value: !lambda "return id(pipe_temp).state;"
- globals.set:
id: store_pool_ph
value: !lambda "return id(realtime_ph).state;"
select:
- platform: template
name: Mode Filtration
optimistic: True
options:
- Auto
- On 24h
- "Off"
- Hiver
restore_value: True
initial_option: Auto
entity_category: config
icon: mdi:engine
- platform: template
name: Mode Surpresseur
optimistic: True
options:
- "Off"
- Auto
- Forcé
restore_value: True
initial_option: "Off"
entity_category: config
icon: mdi:robot-mower
number:
- platform: template
name: Consigne Antigel
id: max_antifreeze_temp
optimistic: True
unit_of_measurement: °C
device_class: temperature
step: 0.2
min_value: -2.0
max_value: 2.0
restore_value: True
initial_value: 0.0
entity_category: config
- platform: template
name: Délais Filtration
id: pump_uptime_delay
optimistic: True
unit_of_measurement: min
step: 5
min_value: 5
max_value: 30
restore_value: True
initial_value: 10
entity_category: config
sensor:
# Sondes de températures
- platform: dallas
address: $local_temp_address
name: Température Local
id: local_temp
accuracy_decimals: 1
filters:
- sliding_window_moving_average:
window_size: 18
send_every: 6
send_first_at: 6
- platform: dallas
address: $temp_address
name: Température Canalisation
accuracy_decimals: 1
id: pipe_temp
filters:
- sliding_window_moving_average:
window_size: 18
send_every: 6
send_first_at: 6
on_value_range:
- below: !lambda return id(min_antifreeze_temp).state;
then:
- binary_sensor.template.publish:
id: antifreeze
state: ON
- switch.turn_on: pump
- homeassistant.service:
service: persistent_notification.create
data:
title: Message from ${friendly_name}
data_template:
message: Mode hors-gel actif
- above: !lambda return id(max_antifreeze_temp).state;
then:
- binary_sensor.template.publish:
id: antifreeze
state: OFF
- switch.turn_off: pump
- homeassistant.service:
service: persistent_notification.create
data:
title: Message from ${friendly_name}
data_template:
message: Fin du mode hors-gel
- platform: template
name: Température Piscine
unit_of_measurement: "°C"
device_class: "temperature"
state_class: "measurement"
id: pool_temp
accuracy_decimals: 1
lambda: |-
return id(store_pool_temp);
- platform: template
name: Pump Uptime
id: pump_uptime
internal: True
lambda: |-
if (id(pump).state){
return id(esptime).now().timestamp - id(pump_last_turn_on);
} else {
return 0.0;
}
- platform: ads1115
id: ads1115_a1
internal: true
multiplexer: 'A1_GND'
gain: 6.144
update_interval: 10s
- platform: template
name: pH Temps Réel
state_class: "measurement"
icon: mdi:ph
entity_category: diagnostic
id: realtime_ph
accuracy_decimals: 1
update_interval: 10s
lambda: return 3.56 * id(ads1115_a1).state - 1.889 + id(ph_offset);
filters:
- sliding_window_moving_average:
window_size: 18
send_every: 6
send_first_at: 6
- platform: template
name: pH
state_class: "measurement"
icon: mdi:ph
id: pool_ph
accuracy_decimals: 1
lambda: return id(store_pool_ph);
- platform: template
name: pH Offset
entity_category: diagnostic
id: ph_offset_sensor
lambda: return id(ph_offset);
- platform: template
internal: True
id: min_antifreeze_temp
lambda: return id(max_antifreeze_temp).state - 1;
- platform: uptime
name: Uptime
unit_of_measurement: s
entity_category: diagnostic
- platform: wifi_signal
name: RSSI
update_interval: 60s
entity_category: diagnostic
binary_sensor:
- platform: template
name: Antigel
device_class: cold
id: antifreeze
icon: mdi:snowflake-alert
- platform: status
name: Status
entity_category: diagnostic
switch:
- platform: gpio
pin: GPIO25
name: Filtration
id: pump
restore_mode: RESTORE_DEFAULT_OFF
icon: mdi:engine
on_turn_on:
then:
- globals.set:
id: pump_last_turn_on
value: !lambda "return id(esptime).now().timestamp;"
- platform: gpio
pin:
number: GPIO26
inverted: true
name: Surpresseur
id: booster
restore_mode: RESTORE_DEFAULT_OFF
icon: mdi:robot-mower
- platform: gpio
pin:
number: GPIO27
inverted: false
name: Electrolyseur
id: electrolyser
restore_mode: RESTORE_DEFAULT_ON
icon: mdi:chemical-weapon
button:
- platform: template
name: pH Calibration 7.00
entity_category: config
on_press:
then:
- globals.set:
id: ph_offset
value: !lambda "return 7.0 - 3.56 * id(ads1115_a1).state - 1.889;"
- component.update: ph_offset_sensor
- component.update: realtime_ph
- platform: restart
name: Reboot
status_led:
pin:
number: GPIO2
inverted: yes